From 0f2270a08adbc78a202d9dffbb026a5d12deddc9 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 29 Jul 2025 18:07:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D0=B0=D1=88=D0=B5=20=D1=81=D0=BE=D0=BE?= =?UTF-8?q?=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BC?= =?UTF-8?q?=D0=B8=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app.js | 4 +- .../ReentrancyGuard.dbg.json | 4 + .../ReentrancyGuard.sol/ReentrancyGuard.json | 16 + .../6575c8c945d0e94a5880cf71f96c424f.json | 1 - .../e497981aa6f6963ae97f832d3d617a54.json | 1 + .../f60ede94c341608b6f6d2f67c953fa04.json | 1 + .../artifacts/contracts/DLE.sol/DLE.dbg.json | 2 +- backend/artifacts/contracts/DLE.sol/DLE.json | 2855 ++++------------- backend/cache/solidity-files-cache.json | 51 +- .../dles/test2-1747217093052.json | 14 - backend/contracts/DLE.sol | 839 ++--- .../db/data/jurisdiction_codes_analysis.md | 12 + backend/routes/dle.js | 187 -- backend/scripts/deploy/create-dle-manual.js | 216 -- backend/services/dleService.js | 281 -- backend/temp/dle-params-1747214293808.json | 17 - backend/temp/dle-params-1747215258506.json | 19 - backend/temp/dle-params-1747215269647.json | 19 - backend/temp/dle-params-1747215331173.json | 19 - backend/temp/dle-params-1747216992334.json | 19 - backend/temp/dle-params-1750855845711.json | 23 - backend/temp/dle-params-1750856045300.json | 23 - backend/temp/dle-params-1750856967915.json | 23 - backend/temp/dle-params-1750856980105.json | 23 - backend/temp/dle-params-1750857312941.json | 23 - backend/temp/dle-params-1750858829101.json | 23 - backend/temp/dle-params-1750859039869.json | 23 - backend/temp/dle-params-1750859153836.json | 23 - backend/temp/dle-params-1750859377570.json | 23 - backend/temp/dle-params-1750859556677.json | 23 - backend/test/DLE.test.js | 482 +++ docs/DLE_CONSOLIDATED_ANALYSIS.md | 977 ++++++ docs/DLE_MANAGEMENT_TASKS.md | 12 + docs/ENCRYPTION_GUIDE.md | 12 + docs/MIGRATION_GUIDE.md | 12 + docs/SMART_CONTRACTS.md | 188 +- docs/TECHNICAL_SPECIFICATION.md | 429 --- docs/ai-queue-system.md | 12 + frontend/nginx.conf | 15 +- frontend/src/components/AIQueueMonitor.vue | 12 + frontend/src/components/DleManagement.vue | 841 ----- frontend/src/router/index.js | 22 +- frontend/src/services/dleService.js | 104 - frontend/src/services/websocketService.js | 12 + frontend/src/views/CrmView.vue | 32 +- frontend/src/views/DleManagementView.vue | 70 - frontend/src/views/ManagementView.vue | 2 +- .../src/views/settings/DleDeployFormView.vue | 102 + .../src/views/settings/SettingsIndexView.vue | 7 +- .../smartcontracts/DleManagementView.vue | 499 --- .../views/smartcontracts/DleModulesView.vue | 815 +++++ .../views/smartcontracts/DleMultisigView.vue | 711 ++++ .../views/smartcontracts/DleProposalsView.vue | 844 +++++ nginx-ssl.conf | 94 - scripts/security-monitor.sh | 49 - security-monitor.sh | 57 +- start-security-monitor.sh | 31 + systemd-service.sh | 48 - 58 files changed, 5367 insertions(+), 5931 deletions(-) create mode 100644 backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.dbg.json create mode 100644 backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.json delete mode 100644 backend/artifacts/build-info/6575c8c945d0e94a5880cf71f96c424f.json create mode 100644 backend/artifacts/build-info/e497981aa6f6963ae97f832d3d617a54.json create mode 100644 backend/artifacts/build-info/f60ede94c341608b6f6d2f67c953fa04.json delete mode 100644 backend/contracts-data/dles/test2-1747217093052.json delete mode 100644 backend/routes/dle.js delete mode 100644 backend/scripts/deploy/create-dle-manual.js delete mode 100644 backend/services/dleService.js delete mode 100644 backend/temp/dle-params-1747214293808.json delete mode 100644 backend/temp/dle-params-1747215258506.json delete mode 100644 backend/temp/dle-params-1747215269647.json delete mode 100644 backend/temp/dle-params-1747215331173.json delete mode 100644 backend/temp/dle-params-1747216992334.json delete mode 100644 backend/temp/dle-params-1750855845711.json delete mode 100644 backend/temp/dle-params-1750856045300.json delete mode 100644 backend/temp/dle-params-1750856967915.json delete mode 100644 backend/temp/dle-params-1750856980105.json delete mode 100644 backend/temp/dle-params-1750857312941.json delete mode 100644 backend/temp/dle-params-1750858829101.json delete mode 100644 backend/temp/dle-params-1750859039869.json delete mode 100644 backend/temp/dle-params-1750859153836.json delete mode 100644 backend/temp/dle-params-1750859377570.json delete mode 100644 backend/temp/dle-params-1750859556677.json create mode 100644 backend/test/DLE.test.js create mode 100644 docs/DLE_CONSOLIDATED_ANALYSIS.md delete mode 100644 docs/TECHNICAL_SPECIFICATION.md delete mode 100644 frontend/src/components/DleManagement.vue delete mode 100644 frontend/src/services/dleService.js delete mode 100644 frontend/src/views/DleManagementView.vue delete mode 100644 frontend/src/views/smartcontracts/DleManagementView.vue create mode 100644 frontend/src/views/smartcontracts/DleModulesView.vue create mode 100644 frontend/src/views/smartcontracts/DleMultisigView.vue create mode 100644 frontend/src/views/smartcontracts/DleProposalsView.vue delete mode 100644 nginx-ssl.conf delete mode 100755 scripts/security-monitor.sh create mode 100755 start-security-monitor.sh delete mode 100755 systemd-service.sh diff --git a/backend/app.js b/backend/app.js index a576956..e0e10e5 100644 --- a/backend/app.js +++ b/backend/app.js @@ -77,7 +77,7 @@ const tokensRouter = require('./routes/tokens'); const isicRoutes = require('./routes/isic'); // Добавленный импорт const kppRoutes = require('./routes/kpp'); // Добавленный импорт КПП кодов const geocodingRoutes = require('./routes/geocoding'); // Добавленный импорт -const dleRoutes = require('./routes/dle'); // Добавляем импорт DLE маршрутов + const dleV2Routes = require('./routes/dleV2'); // Добавляем импорт DLE v2 маршрутов const settingsRoutes = require('./routes/settings'); // Добавляем импорт маршрутов настроек const tablesRoutes = require('./routes/tables'); // Добавляем импорт таблиц @@ -200,7 +200,7 @@ app.use('/api/tokens', tokensRouter); app.use('/api/isic', isicRoutes); // Добавленное использование роута app.use('/api/kpp', kppRoutes); // Добавленное использование роута КПП кодов app.use('/api/geocoding', geocodingRoutes); // Добавленное использование роута -app.use('/api/dle', dleRoutes); // Добавляем маршрут DLE + app.use('/api/dle-v2', dleV2Routes); // Добавляем маршрут DLE v2 app.use('/api/settings', settingsRoutes); // Добавляем маршрут настроек app.use('/api/countries', countriesRoutes); // Добавляем маршрут стран diff --git a/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.dbg.json new file mode 100644 index 0000000..fd6607c --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/e497981aa6f6963ae97f832d3d617a54.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.json b/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.json new file mode 100644 index 0000000..135fb0f --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/ReentrancyGuard.sol/ReentrancyGuard.json @@ -0,0 +1,16 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ReentrancyGuard", + "sourceName": "@openzeppelin/contracts/utils/ReentrancyGuard.sol", + "abi": [ + { + "inputs": [], + "name": "ReentrancyGuardReentrantCall", + "type": "error" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/build-info/6575c8c945d0e94a5880cf71f96c424f.json b/backend/artifacts/build-info/6575c8c945d0e94a5880cf71f96c424f.json deleted file mode 100644 index 7647a3b..0000000 --- a/backend/artifacts/build-info/6575c8c945d0e94a5880cf71f96c424f.json +++ /dev/null @@ -1 +0,0 @@ -{"id":"6575c8c945d0e94a5880cf71f96c424f","_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.0.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` to `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.1.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 signaling 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/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.1.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 cancellers 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.0.0) (governance/extensions/GovernorVotesQuorumFraction.sol)\n\npragma solidity ^0.8.20;\n\nimport {GovernorVotes} from \"./GovernorVotes.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 uint256 length = _quorumNumeratorHistory._checkpoints.length;\n\n // Optimistic search, check the latest checkpoint\n Checkpoints.Checkpoint208 storage latest = _quorumNumeratorHistory._checkpoints[length - 1];\n uint48 latestKey = latest._key;\n uint208 latestValue = latest._value;\n if (latestKey <= timepoint) {\n return latestValue;\n }\n\n // Otherwise, do the binary search\n return _quorumNumeratorHistory.upperLookupRecent(SafeCast.toUint48(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 (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"},"@openzeppelin/contracts/governance/Governor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.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 {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote}\n * - A voting module must implement {_getVotes}\n * - Additionally, {votingPeriod} 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(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-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 = hashProposal(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 = hashProposal(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 = hashProposal(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} or {_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 `hashProposal` duplication has a cost that is limited, and that we accept.\n uint256 proposalId = hashProposal(targets, values, calldatas, descriptionHash);\n\n // public cancel restrictions (on top of existing _cancel restrictions).\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Pending));\n if (_msgSender() != proposalProposer(proposalId)) {\n revert GovernorOnlyProposer(_msgSender());\n }\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 = hashProposal(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 * @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.1.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 a proposer.\n */\n error GovernorOnlyProposer(address account);\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 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 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 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.0.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 {}\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.1.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 _data\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.2.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 * All two of these values are immutable: they can only be set once during\n * 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/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/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.1.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 string private _nameFallback;\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 * @dev See {IERC-5267}.\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.1.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://eth.wiki/json-rpc/API#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://eth.wiki/json-rpc/API#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 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.1.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 Returns the addition of two unsigned integers, with an 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 if (c < a) return (false, 0);\n return (true, c);\n }\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).\n */\n function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n if (b > a) return (false, 0);\n return (true, a - b);\n }\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).\n */\n function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n // benefit is lost if 'b' is also tested.\n // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n if (a == 0) return (true, 0);\n uint256 c = a * b;\n if (c / a != b) return (false, 0);\n return (true, c);\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 if (b == 0) return (false, 0);\n return (true, a / b);\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 if (b == 0) return (false, 0);\n return (true, a % b);\n }\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 // 512-bit multiply [prod1 prod0] = 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 = prod1 * 2²⁵⁶ + prod0.\n uint256 prod0 = x * y; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 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 prod0 / denominator;\n }\n\n // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n if (denominator <= prod1) {\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 [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, 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 {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, 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 prod1 into prod0.\n prod0 |= prod1 * 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 prod1\n // is no longer required.\n result = prod0 * 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 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 value) internal pure returns (uint256) {\n uint256 result = 0;\n uint256 exp;\n unchecked {\n exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);\n value >>= exp;\n result += exp;\n\n exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);\n value >>= exp;\n result += exp;\n\n exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);\n value >>= exp;\n result += exp;\n\n exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);\n value >>= exp;\n result += exp;\n\n exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);\n value >>= exp;\n result += exp;\n\n exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);\n value >>= exp;\n result += exp;\n\n exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);\n value >>= exp;\n result += exp;\n\n result += SafeCast.toUint(value > 1);\n }\n return result;\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 value) internal pure returns (uint256) {\n uint256 result = 0;\n uint256 isGt;\n unchecked {\n isGt = SafeCast.toUint(value > (1 << 128) - 1);\n value >>= isGt * 128;\n result += isGt * 16;\n\n isGt = SafeCast.toUint(value > (1 << 64) - 1);\n value >>= isGt * 64;\n result += isGt * 8;\n\n isGt = SafeCast.toUint(value > (1 << 32) - 1);\n value >>= isGt * 32;\n result += isGt * 4;\n\n isGt = SafeCast.toUint(value > (1 << 16) - 1);\n value >>= isGt * 16;\n result += isGt * 2;\n\n result += SafeCast.toUint(value > (1 << 8) - 1);\n }\n return result;\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.1.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 {setWithFallback}.\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 * {setWithFallback}.\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.2.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\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} 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} 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} 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} 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} 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 guaratees 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} 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} 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} 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 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.1.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 checkpoint.\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 checkpoint.\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 checkpoint.\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/DLE.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\";\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/GovernorVotesQuorumFraction.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\";\nimport \"@openzeppelin/contracts/governance/utils/IVotes.sol\";\nimport \"@openzeppelin/contracts/utils/Nonces.sol\";\n\n/**\n * @title DLE (Digital Legal Entity)\n * @dev Основной контракт DLE с отдельным модулем TimelockController.\n */\ncontract DLE is \n ERC20Votes, \n Governor, \n GovernorSettings, \n GovernorCountingSimple, \n GovernorVotesQuorumFraction, \n GovernorTimelockControl \n{\n struct DLEInfo {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 creationTimestamp;\n bool isActive;\n }\n\n struct DLEConfig {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint48 votingDelay;\n uint32 votingPeriod;\n uint256 proposalThreshold;\n uint256 quorumPercentage;\n address[] initialPartners;\n uint256[] initialAmounts;\n }\n\n struct Proposal {\n bytes operation;\n uint256[] targetChains;\n uint256 timelock;\n uint256 governanceChain;\n address initiator;\n bytes[] signatures;\n bool executed;\n uint256 quorumRequired;\n uint256 signaturesCount;\n }\n\n struct TokenDistributionProposal {\n address[] partners;\n uint256[] amounts;\n uint256 timelock;\n address initiator;\n bytes[] signatures;\n bool executed;\n uint256 quorumRequired;\n uint256 signaturesCount;\n string description;\n }\n\n struct TreasuryProposal {\n address recipient;\n uint256 amount;\n uint256 timelock;\n address initiator;\n bytes[] signatures;\n bool executed;\n uint256 quorumRequired;\n uint256 signaturesCount;\n string description;\n }\n\n DLEInfo public dleInfo;\n mapping(uint256 => Proposal) public proposals;\n mapping(uint256 => TokenDistributionProposal) public tokenDistributionProposals;\n mapping(uint256 => TreasuryProposal) public treasuryProposals;\n uint256 public proposalCounter;\n uint256 public tokenDistributionProposalCounter;\n uint256 public treasuryProposalCounter;\n uint256 public quorumPercentage;\n bool public initialTokensDistributed = false;\n\n // Казначейские функции\n mapping(address => uint256) public lastWithdrawalBlock; // Последний блок вывода для каждого адреса\n uint256 public totalTreasuryBalance; // Общий баланс казны\n\n event DLEInitialized(\n string name,\n string symbol,\n string location,\n string coordinates,\n uint256 jurisdiction,\n uint256 oktmo,\n string[] okvedCodes,\n uint256 kpp,\n address tokenAddress,\n address timelockAddress,\n address governorAddress\n );\n event InitialTokensDistributed(address[] partners, uint256[] amounts);\n event TokensDepositedToTreasury(address depositor, uint256 amount);\n event TreasuryProposalCreated(uint256 proposalId, address initiator, address recipient, uint256 amount, string description);\n event TreasuryProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount);\n event TreasuryProposalExecuted(uint256 proposalId, address recipient, uint256 amount);\n event TokenDistributionProposalCreated(uint256 proposalId, address initiator, address[] partners, uint256[] amounts, string description);\n event TokenDistributionProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount);\n event TokenDistributionProposalExecuted(uint256 proposalId, address[] partners, uint256[] amounts);\n event ProposalCreated(uint256 proposalId, address initiator, bytes operation);\n event ProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount);\n event ModuleInstalled(string moduleName, address moduleAddress);\n\n constructor(\n DLEConfig memory config,\n address timelockAddress\n )\n ERC20(config.name, config.symbol)\n Governor(config.name)\n GovernorSettings(config.votingDelay, config.votingPeriod, config.proposalThreshold)\n GovernorVotesQuorumFraction(config.quorumPercentage)\n GovernorTimelockControl(TimelockController(payable(timelockAddress)))\n GovernorVotes(IVotes(address(this)))\n {\n dleInfo = DLEInfo({\n name: config.name,\n symbol: config.symbol,\n location: config.location,\n coordinates: config.coordinates,\n jurisdiction: config.jurisdiction,\n oktmo: config.oktmo,\n okvedCodes: config.okvedCodes,\n kpp: config.kpp,\n creationTimestamp: block.timestamp,\n isActive: true\n });\n quorumPercentage = config.quorumPercentage;\n\n // Автоматически распределяем начальные токены партнерам при деплое\n require(config.initialPartners.length == config.initialAmounts.length, \"Arrays length mismatch\");\n require(config.initialPartners.length > 0, \"No initial partners\");\n \n for (uint256 i = 0; i < config.initialPartners.length; i++) {\n require(config.initialPartners[i] != address(0), \"Zero address\");\n require(config.initialAmounts[i] > 0, \"Zero amount\");\n _mint(config.initialPartners[i], config.initialAmounts[i]);\n }\n \n initialTokensDistributed = true;\n emit InitialTokensDistributed(config.initialPartners, config.initialAmounts);\n\n emit DLEInitialized(\n config.name,\n config.symbol,\n config.location,\n config.coordinates,\n config.jurisdiction,\n config.oktmo,\n config.okvedCodes,\n config.kpp,\n address(this),\n timelockAddress,\n address(this)\n );\n }\n\n /**\n * @dev Создать предложение на распределение токенов\n * @param _partners Массив адресов партнеров\n * @param _amounts Массив сумм токенов для каждого партнера\n * @param _timelock Время исполнения (timestamp)\n * @param _description Описание предложения\n */\n function createTokenDistributionProposal(\n address[] memory _partners,\n uint256[] memory _amounts,\n uint256 _timelock,\n string memory _description\n ) external returns (uint256) {\n require(_partners.length == _amounts.length, \"Arrays length mismatch\");\n require(_partners.length > 0, \"Empty arrays\");\n require(_timelock > block.timestamp, \"Invalid timelock\");\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create proposal\");\n\n uint256 proposalId = tokenDistributionProposalCounter++;\n \n tokenDistributionProposals[proposalId] = TokenDistributionProposal({\n partners: _partners,\n amounts: _amounts,\n timelock: _timelock,\n initiator: msg.sender,\n signatures: new bytes[](0),\n executed: false,\n quorumRequired: (totalSupply() * quorumPercentage) / 100,\n signaturesCount: 0,\n description: _description\n });\n\n emit TokenDistributionProposalCreated(proposalId, msg.sender, _partners, _amounts, _description);\n return proposalId;\n }\n\n /**\n * @dev Подписать предложение на распределение токенов\n * @param _proposalId ID предложения\n */\n function signTokenDistributionProposal(uint256 _proposalId) external {\n TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp < proposal.timelock, \"Proposal expired\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n\n // Проверяем, что пользователь еще не подписал\n for (uint256 i = 0; i < proposal.signatures.length; i++) {\n require(\n proposal.signatures[i].length == 0 || \n abi.decode(proposal.signatures[i], (address)) != msg.sender,\n \"Already signed\"\n );\n }\n\n proposal.signatures.push(abi.encodePacked(msg.sender));\n proposal.signaturesCount++;\n\n emit TokenDistributionProposalSigned(_proposalId, msg.sender, proposal.signaturesCount);\n\n // Проверяем, достигнут ли кворум\n if (proposal.signaturesCount >= proposal.quorumRequired) {\n proposal.executed = true;\n _executeTokenDistribution(_proposalId);\n }\n }\n\n /**\n * @dev Выполнить распределение токенов после достижения кворума\n * @param _proposalId ID предложения\n */\n function _executeTokenDistribution(uint256 _proposalId) internal {\n TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId];\n require(proposal.executed, \"Proposal not executed\");\n require(proposal.signaturesCount >= proposal.quorumRequired, \"Insufficient quorum\");\n\n for (uint256 i = 0; i < proposal.partners.length; i++) {\n require(proposal.partners[i] != address(0), \"Zero address\");\n require(proposal.amounts[i] > 0, \"Zero amount\");\n _mint(proposal.partners[i], proposal.amounts[i]);\n }\n\n emit TokenDistributionProposalExecuted(_proposalId, proposal.partners, proposal.amounts);\n }\n\n /**\n * @dev Выполнить предложение на распределение токенов после истечения таймлока\n * @param _proposalId ID предложения\n */\n function executeTokenDistributionProposal(uint256 _proposalId) external {\n TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp >= proposal.timelock, \"Timelock not expired\");\n require(proposal.signaturesCount >= proposal.quorumRequired, \"Insufficient quorum\");\n\n proposal.executed = true;\n _executeTokenDistribution(_proposalId);\n }\n\n function createProposal(\n bytes memory _operation,\n uint256[] memory _targetChains,\n uint256 _timelock,\n uint256 _governanceChain\n ) external returns (uint256) {\n require(_operation.length > 0, \"Empty operation\");\n require(_targetChains.length > 0, \"Empty target chains\");\n require(_timelock > block.timestamp, \"Invalid timelock\");\n uint256 proposalId = proposalCounter++;\n proposals[proposalId] = Proposal({\n operation: _operation,\n targetChains: _targetChains,\n timelock: _timelock,\n governanceChain: _governanceChain,\n initiator: msg.sender,\n signatures: new bytes[](0),\n executed: false,\n quorumRequired: (totalSupply() * quorumPercentage) / 100,\n signaturesCount: 0\n });\n emit ProposalCreated(proposalId, msg.sender, _operation);\n return proposalId;\n }\n\n function signProposal(uint256 _proposalId) external {\n Proposal storage proposal = proposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp < proposal.timelock, \"Proposal expired\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n proposal.signatures.push(abi.encodePacked(msg.sender));\n proposal.signaturesCount++;\n emit ProposalSigned(_proposalId, msg.sender, proposal.signaturesCount);\n if (proposal.signaturesCount >= proposal.quorumRequired) {\n proposal.executed = true;\n emit IGovernor.ProposalExecuted(_proposalId);\n }\n }\n\n function installModule(string memory _moduleName, address _moduleAddress) external {\n emit ModuleInstalled(_moduleName, _moduleAddress);\n }\n\n /**\n * @dev Внести токены в казну DLE\n * @param _amount Количество токенов для внесения\n */\n function depositToTreasury(uint256 _amount) external {\n require(_amount > 0, \"Amount must be greater than 0\");\n require(balanceOf(msg.sender) >= _amount, \"Insufficient balance\");\n \n _transfer(msg.sender, address(this), _amount);\n totalTreasuryBalance += _amount;\n \n emit TokensDepositedToTreasury(msg.sender, _amount);\n }\n\n /**\n * @dev Создать предложение на вывод средств из казны\n * @param _recipient Адрес получателя\n * @param _amount Количество токенов для вывода\n * @param _timelock Время исполнения (timestamp)\n * @param _description Описание предложения\n */\n function createTreasuryProposal(\n address _recipient,\n uint256 _amount,\n uint256 _timelock,\n string memory _description\n ) external returns (uint256) {\n require(_recipient != address(0), \"Zero address\");\n require(_amount > 0, \"Amount must be greater than 0\");\n require(_amount <= totalTreasuryBalance, \"Insufficient treasury balance\");\n require(_timelock > block.timestamp, \"Invalid timelock\");\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create proposal\");\n\n uint256 proposalId = treasuryProposalCounter++;\n \n treasuryProposals[proposalId] = TreasuryProposal({\n recipient: _recipient,\n amount: _amount,\n timelock: _timelock,\n initiator: msg.sender,\n signatures: new bytes[](0),\n executed: false,\n quorumRequired: (totalSupply() * quorumPercentage) / 100,\n signaturesCount: 0,\n description: _description\n });\n\n emit TreasuryProposalCreated(proposalId, msg.sender, _recipient, _amount, _description);\n return proposalId;\n }\n\n /**\n * @dev Подписать предложение на вывод средств из казны\n * @param _proposalId ID предложения\n */\n function signTreasuryProposal(uint256 _proposalId) external {\n TreasuryProposal storage proposal = treasuryProposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp < proposal.timelock, \"Proposal expired\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n\n // Проверяем, что пользователь еще не подписал\n for (uint256 i = 0; i < proposal.signatures.length; i++) {\n require(\n proposal.signatures[i].length == 0 || \n abi.decode(proposal.signatures[i], (address)) != msg.sender,\n \"Already signed\"\n );\n }\n\n proposal.signatures.push(abi.encodePacked(msg.sender));\n proposal.signaturesCount++;\n\n emit TreasuryProposalSigned(_proposalId, msg.sender, proposal.signaturesCount);\n\n // Проверяем, достигнут ли кворум\n if (proposal.signaturesCount >= proposal.quorumRequired) {\n proposal.executed = true;\n _executeTreasuryProposal(_proposalId);\n }\n }\n\n /**\n * @dev Выполнить предложение на вывод средств из казны\n * @param _proposalId ID предложения\n */\n function _executeTreasuryProposal(uint256 _proposalId) internal {\n TreasuryProposal storage proposal = treasuryProposals[_proposalId];\n require(proposal.executed, \"Proposal not executed\");\n require(proposal.signaturesCount >= proposal.quorumRequired, \"Insufficient quorum\");\n require(proposal.amount <= totalTreasuryBalance, \"Insufficient treasury balance\");\n\n totalTreasuryBalance -= proposal.amount;\n _transfer(address(this), proposal.recipient, proposal.amount);\n\n emit TreasuryProposalExecuted(_proposalId, proposal.recipient, proposal.amount);\n }\n\n /**\n * @dev Выполнить предложение на вывод средств после истечения таймлока\n * @param _proposalId ID предложения\n */\n function executeTreasuryProposal(uint256 _proposalId) external {\n TreasuryProposal storage proposal = treasuryProposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp >= proposal.timelock, \"Timelock not expired\");\n require(proposal.signaturesCount >= proposal.quorumRequired, \"Insufficient quorum\");\n\n proposal.executed = true;\n _executeTreasuryProposal(_proposalId);\n }\n\n\n\n /**\n * @dev Получить доступную для вывода сумму для адреса (пропорционально доле)\n * @param _address Адрес для проверки\n * @return Доступная сумма для вывода\n */\n function getAvailableWithdrawal(address _address) public view returns (uint256) {\n uint256 userBalance = balanceOf(_address);\n if (userBalance == 0 || totalTreasuryBalance == 0) {\n return 0;\n }\n \n // Пропорционально доле в общем количестве токенов\n uint256 userShare = (userBalance * totalTreasuryBalance) / totalSupply();\n return userShare;\n }\n\n\n\n // Переопределения для совместимости с ERC-6372\n function CLOCK_MODE() public pure override(Governor, GovernorVotes, Votes) returns (string memory) {\n return \"mode=blocknumber&from=default\";\n }\n function clock() public view override(Governor, GovernorVotes, Votes) returns (uint48) {\n return uint48(block.number);\n }\n function _update(address from, address to, uint256 amount) internal override(ERC20Votes) {\n super._update(from, to, amount);\n }\n function nonces(address owner) public view override(Nonces) returns (uint256) {\n return super.nonces(owner);\n }\n function name() public view override(ERC20, Governor) returns (string memory) {\n return super.name();\n }\n function votingDelay() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.votingDelay();\n }\n function votingPeriod() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.votingPeriod();\n }\n function quorum(uint256 blockNumber) public view override(Governor, GovernorVotesQuorumFraction) returns (uint256) {\n return super.quorum(blockNumber);\n }\n function state(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (ProposalState) {\n return super.state(proposalId);\n }\n function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.proposalThreshold();\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 function _executor() internal view override(Governor, GovernorTimelockControl) returns (address) {\n return super._executor();\n }\n function supportsInterface(bytes4 interfaceId) public view override(Governor) returns (bool) {\n return super.supportsInterface(interfaceId);\n }\n function proposalNeedsQueuing(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (bool) {\n return super.proposalNeedsQueuing(proposalId);\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 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":{"errors":[{"component":"general","errorCode":"5574","formattedMessage":"Warning: Contract code size is 27913 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.\n --> contracts/DLE.sol:17:1:\n |\n17 | contract DLE is \n | ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"Contract code size is 27913 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.","severity":"warning","sourceLocation":{"end":21596,"file":"contracts/DLE.sol","start":782},"type":"Warning"}],"sources":{"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[295],"Context":[6718],"ERC165":[9182],"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":6719,"src":"187:45:0","symbolAliases":[{"foreign":{"id":4,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"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":9183,"src":"233:57:0","symbolAliases":[{"foreign":{"id":6,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"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":6718,"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":9182,"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,9182,9194,378,6718],"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":[9181],"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":-27,"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":-25,"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":9181,"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":6700,"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":6700,"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":6700,"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":"6814:233:0","statements":[{"condition":{"arguments":[{"id":267,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6836:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":268,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6842: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":"6828: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":"6828:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":291,"nodeType":"Block","src":"7004:37:0","statements":[{"expression":{"hexValue":"66616c7365","id":289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7025:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":265,"id":290,"nodeType":"Return","src":"7018:12:0"}]},"id":292,"nodeType":"IfStatement","src":"6824:217:0","trueBody":{"id":288,"nodeType":"Block","src":"6852: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":"6866: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":"6873:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6866: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":"6879:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"6866: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":"6887:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6866: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":"6898:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6866:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":278,"nodeType":"ExpressionStatement","src":"6866:37:0"},{"eventCall":{"arguments":[{"id":280,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6934:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":281,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6940:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":282,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"6949: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":"6949: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":"6922: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":"6922:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"EmitStatement","src":"6917:45:0"},{"expression":{"hexValue":"74727565","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6983:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":265,"id":287,"nodeType":"Return","src":"6976:11:0"}]}}]},"documentation":{"id":257,"nodeType":"StructuredDocumentation","src":"6501:224:0","text":" @dev Attempts to revoke `role` to `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":"6739:11:0","nodeType":"FunctionDefinition","parameters":{"id":262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"role","nameLocation":"6759:4:0","nodeType":"VariableDeclaration","scope":294,"src":"6751:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":258,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6751:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":261,"mutability":"mutable","name":"account","nameLocation":"6773:7:0","nodeType":"VariableDeclaration","scope":294,"src":"6765:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":260,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6750:31:0"},"returnParameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":294,"src":"6808:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":263,"name":"bool","nodeType":"ElementaryTypeName","src":"6808:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6807:6:0"},"scope":295,"src":"6730:317:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":296,"src":"1953:5096:0","usedErrors":[305,308],"usedEvents":[317,326,335]}],"src":"108:6942: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 signaling 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/governance/Governor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","exportedSymbols":{"Address":[6688],"Context":[6718],"DoubleEndedQueue":[14645],"EIP712":[8976],"ERC165":[9182],"Governor":[2134],"IERC1155Receiver":[5551],"IERC165":[9194],"IERC6372":[5372],"IERC721Receiver":[6401],"IGovernor":[2588],"Nonces":[6808],"SafeCast":[12565],"SignatureChecker":[9158],"Strings":[8401]},"id":2135,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":380,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:2"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../token/ERC721/IERC721Receiver.sol","id":382,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6402,"src":"133:68:2","symbolAliases":[{"foreign":{"id":381,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6401,"src":"141:15:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../token/ERC1155/IERC1155Receiver.sol","id":384,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":5552,"src":"202:71:2","symbolAliases":[{"foreign":{"id":383,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"210:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../utils/cryptography/EIP712.sol","id":386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":8977,"src":"274:56:2","symbolAliases":[{"foreign":{"id":385,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8976,"src":"282:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","file":"../utils/cryptography/SignatureChecker.sol","id":388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":9159,"src":"331:76:2","symbolAliases":[{"foreign":{"id":387,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"339:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":391,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":9183,"src":"408:66:2","symbolAliases":[{"foreign":{"id":389,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"416:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":390,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"src":"425:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../utils/math/SafeCast.sol","id":393,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":12566,"src":"475:52:2","symbolAliases":[{"foreign":{"id":392,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"483:8:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","file":"../utils/structs/DoubleEndedQueue.sol","id":395,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":14646,"src":"528:71:2","symbolAliases":[{"foreign":{"id":394,"name":"DoubleEndedQueue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14645,"src":"536:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":397,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6689,"src":"600:45:2","symbolAliases":[{"foreign":{"id":396,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"608:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":399,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6719,"src":"646:45:2","symbolAliases":[{"foreign":{"id":398,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"654:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../utils/Nonces.sol","id":401,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6809,"src":"692:43:2","symbolAliases":[{"foreign":{"id":400,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6808,"src":"700:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../utils/Strings.sol","id":403,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":8402,"src":"736:45:2","symbolAliases":[{"foreign":{"id":402,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"744:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","file":"./IGovernor.sol","id":406,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":2589,"src":"782:52:2","symbolAliases":[{"foreign":{"id":404,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"790:9:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":405,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"801:8:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":408,"name":"Context","nameLocations":["1273:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1273:7:2"},"id":409,"nodeType":"InheritanceSpecifier","src":"1273:7:2"},{"baseName":{"id":410,"name":"ERC165","nameLocations":["1282:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"1282:6:2"},"id":411,"nodeType":"InheritanceSpecifier","src":"1282:6:2"},{"baseName":{"id":412,"name":"EIP712","nameLocations":["1290:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"1290:6:2"},"id":413,"nodeType":"InheritanceSpecifier","src":"1290:6:2"},{"baseName":{"id":414,"name":"Nonces","nameLocations":["1298:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"1298:6:2"},"id":415,"nodeType":"InheritanceSpecifier","src":"1298:6:2"},{"baseName":{"id":416,"name":"IGovernor","nameLocations":["1306:9:2"],"nodeType":"IdentifierPath","referencedDeclaration":2588,"src":"1306:9:2"},"id":417,"nodeType":"InheritanceSpecifier","src":"1306:9:2"},{"baseName":{"id":418,"name":"IERC721Receiver","nameLocations":["1317:15:2"],"nodeType":"IdentifierPath","referencedDeclaration":6401,"src":"1317:15:2"},"id":419,"nodeType":"InheritanceSpecifier","src":"1317:15:2"},{"baseName":{"id":420,"name":"IERC1155Receiver","nameLocations":["1334:16:2"],"nodeType":"IdentifierPath","referencedDeclaration":5551,"src":"1334:16:2"},"id":421,"nodeType":"InheritanceSpecifier","src":"1334:16:2"}],"canonicalName":"Governor","contractDependencies":[],"contractKind":"contract","documentation":{"id":407,"nodeType":"StructuredDocumentation","src":"836:406:2","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 {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote}\n - A voting module must implement {_getVotes}\n - Additionally, {votingPeriod} must also be implemented"},"fullyImplemented":false,"id":2134,"linearizedBaseContracts":[2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"Governor","nameLocation":"1261:8:2","nodeType":"ContractDefinition","nodes":[{"global":false,"id":425,"libraryName":{"id":422,"name":"DoubleEndedQueue","nameLocations":["1363:16:2"],"nodeType":"IdentifierPath","referencedDeclaration":14645,"src":"1363:16:2"},"nodeType":"UsingForDirective","src":"1357:57:2","typeName":{"id":424,"nodeType":"UserDefinedTypeName","pathNode":{"id":423,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["1384:16:2","1401:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"1384:29:2"},"referencedDeclaration":14305,"src":"1384:29:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}}},{"constant":true,"functionSelector":"deaaa7cc","id":430,"mutability":"constant","name":"BALLOT_TYPEHASH","nameLocation":"1444:15:2","nodeType":"VariableDeclaration","scope":2134,"src":"1420:131:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1420:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"42616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e636529","id":428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1480:70:2","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":427,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1470:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1470:81:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"2fe3e261","id":435,"mutability":"constant","name":"EXTENDED_BALLOT_TYPEHASH","nameLocation":"1581:24:2","nodeType":"VariableDeclaration","scope":2134,"src":"1557:197:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":431,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1557:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"457874656e64656442616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e63652c737472696e6720726561736f6e2c627974657320706172616d7329","id":433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1639:105:2","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":432,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1616:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1616:138:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"canonicalName":"Governor.ProposalCore","id":448,"members":[{"constant":false,"id":437,"mutability":"mutable","name":"proposer","nameLocation":"1799:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1791:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":436,"name":"address","nodeType":"ElementaryTypeName","src":"1791:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":439,"mutability":"mutable","name":"voteStart","nameLocation":"1824:9:2","nodeType":"VariableDeclaration","scope":448,"src":"1817:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":438,"name":"uint48","nodeType":"ElementaryTypeName","src":"1817:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":441,"mutability":"mutable","name":"voteDuration","nameLocation":"1850:12:2","nodeType":"VariableDeclaration","scope":448,"src":"1843:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":440,"name":"uint32","nodeType":"ElementaryTypeName","src":"1843:6:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":443,"mutability":"mutable","name":"executed","nameLocation":"1877:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1872:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":442,"name":"bool","nodeType":"ElementaryTypeName","src":"1872:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":445,"mutability":"mutable","name":"canceled","nameLocation":"1900:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1895:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":444,"name":"bool","nodeType":"ElementaryTypeName","src":"1895:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":447,"mutability":"mutable","name":"etaSeconds","nameLocation":"1925:10:2","nodeType":"VariableDeclaration","scope":448,"src":"1918:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":446,"name":"uint48","nodeType":"ElementaryTypeName","src":"1918:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ProposalCore","nameLocation":"1768:12:2","nodeType":"StructDefinition","scope":2134,"src":"1761:181:2","visibility":"public"},{"constant":true,"id":468,"mutability":"constant","name":"ALL_PROPOSAL_STATES_BITMAP","nameLocation":"1973:26:2","nodeType":"VariableDeclaration","scope":2134,"src":"1948:110:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":449,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1948:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2011:1:2","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":461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"arguments":[{"id":456,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2028:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}],"id":455,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2023:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2023:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_enum$_ProposalState_$2154","typeString":"type(enum IGovernor.ProposalState)"}},"id":458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2043:3:2","memberName":"max","nodeType":"MemberAccess","src":"2023:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2017:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":453,"name":"uint8","nodeType":"ElementaryTypeName","src":"2017:5:2","typeDescriptions":{}}},"id":459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2017:30:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2050:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2017:34:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":462,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2016:36:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2011:41:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":464,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2010:43:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2056:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2010:47:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2002:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":450,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2002:7:2","typeDescriptions":{}}},"id":467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2002:56:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":470,"mutability":"mutable","name":"_name","nameLocation":"2079:5:2","nodeType":"VariableDeclaration","scope":2134,"src":"2064:20:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":469,"name":"string","nodeType":"ElementaryTypeName","src":"2064:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":475,"mutability":"mutable","name":"_proposals","nameLocation":"2143:10:2","nodeType":"VariableDeclaration","scope":2134,"src":"2091:62:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"typeName":{"id":474,"keyName":"proposalId","keyNameLocation":"2107:10:2","keyType":{"id":471,"name":"uint256","nodeType":"ElementaryTypeName","src":"2099:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2091:43:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":473,"nodeType":"UserDefinedTypeName","pathNode":{"id":472,"name":"ProposalCore","nameLocations":["2121:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"2121:12:2"},"referencedDeclaration":448,"src":"2121:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}}},"visibility":"private"},{"constant":false,"id":478,"mutability":"mutable","name":"_governanceCall","nameLocation":"2641:15:2","nodeType":"VariableDeclaration","scope":2134,"src":"2603:53:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":477,"nodeType":"UserDefinedTypeName","pathNode":{"id":476,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["2603:16:2","2620:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2603:29:2"},"referencedDeclaration":14305,"src":"2603:29:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"private"},{"body":{"id":485,"nodeType":"Block","src":"3427:46:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":481,"name":"_checkGovernance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":829,"src":"3437:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3437:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":483,"nodeType":"ExpressionStatement","src":"3437:18:2"},{"id":484,"nodeType":"PlaceholderStatement","src":"3465:1:2"}]},"documentation":{"id":479,"nodeType":"StructuredDocumentation","src":"2663:733:2","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":486,"name":"onlyGovernance","nameLocation":"3410:14:2","nodeType":"ModifierDefinition","parameters":{"id":480,"nodeType":"ParameterList","parameters":[],"src":"3424:2:2"},"src":"3401:72:2","virtual":false,"visibility":"internal"},{"body":{"id":501,"nodeType":"Block","src":"3605:30:2","statements":[{"expression":{"id":499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":497,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"3615:5:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":498,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":489,"src":"3623:5:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3615:13:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":500,"nodeType":"ExpressionStatement","src":"3615:13:2"}]},"documentation":{"id":487,"nodeType":"StructuredDocumentation","src":"3479:63:2","text":" @dev Sets the value for {name} and {version}"},"id":502,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":492,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":489,"src":"3587:5:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":493,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":568,"src":"3594:7:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3594:9:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":495,"kind":"baseConstructorSpecifier","modifierName":{"id":491,"name":"EIP712","nameLocations":["3580:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"3580:6:2"},"nodeType":"ModifierInvocation","src":"3580:24:2"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":489,"mutability":"mutable","name":"name_","nameLocation":"3573:5:2","nodeType":"VariableDeclaration","scope":502,"src":"3559:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":488,"name":"string","nodeType":"ElementaryTypeName","src":"3559:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3558:21:2"},"returnParameters":{"id":496,"nodeType":"ParameterList","parameters":[],"src":"3605:0:2"},"scope":2134,"src":"3547:88:2","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":518,"nodeType":"Block","src":"3814:107:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":506,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"3828:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3828:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":510,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3851:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3843:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":508,"name":"address","nodeType":"ElementaryTypeName","src":"3843:7:2","typeDescriptions":{}}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3843:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3828:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":517,"nodeType":"IfStatement","src":"3824:91:2","trueBody":{"id":516,"nodeType":"Block","src":"3858:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":513,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"3879:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3879:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":515,"nodeType":"RevertStatement","src":"3872:32:2"}]}}]},"documentation":{"id":503,"nodeType":"StructuredDocumentation","src":"3641:133:2","text":" @dev Function to receive ETH that will be handled by the governor (disabled if executor is a third party contract)"},"id":519,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":504,"nodeType":"ParameterList","parameters":[],"src":"3786:2:2"},"returnParameters":{"id":505,"nodeType":"ParameterList","parameters":[],"src":"3814:0:2"},"scope":2134,"src":"3779:142:2","stateMutability":"payable","virtual":true,"visibility":"external"},{"baseFunctions":[9181,9193],"body":{"id":549,"nodeType":"Block","src":"4096:195:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":530,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4125:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":532,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"4145:9:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}],"id":531,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4140:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IGovernor_$2588","typeString":"type(contract IGovernor)"}},"id":534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4156:11:2","memberName":"interfaceId","nodeType":"MemberAccess","src":"4140:27:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4125:42:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":536,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4183:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":538,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"4203:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}],"id":537,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4198:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4198:22:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5551","typeString":"type(contract IERC1155Receiver)"}},"id":540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4221:11:2","memberName":"interfaceId","nodeType":"MemberAccess","src":"4198:34:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4183:49:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4125:107:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":545,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4272:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":543,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4248:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Governor_$2134_$","typeString":"type(contract super Governor)"}},"id":544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4254:17:2","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9181,"src":"4248:23:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4248:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4125:159:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":529,"id":548,"nodeType":"Return","src":"4106:178:2"}]},"documentation":{"id":520,"nodeType":"StructuredDocumentation","src":"3927:56:2","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":550,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"3997:17:2","nodeType":"FunctionDefinition","overrides":{"id":526,"nodeType":"OverrideSpecifier","overrides":[{"id":524,"name":"IERC165","nameLocations":["4064:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"4064:7:2"},{"id":525,"name":"ERC165","nameLocations":["4073:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"4073:6:2"}],"src":"4055:25:2"},"parameters":{"id":523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":522,"mutability":"mutable","name":"interfaceId","nameLocation":"4022:11:2","nodeType":"VariableDeclaration","scope":550,"src":"4015:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":521,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4015:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4014:20:2"},"returnParameters":{"id":529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":550,"src":"4090:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":527,"name":"bool","nodeType":"ElementaryTypeName","src":"4090:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4089:6:2"},"scope":2134,"src":"3988:303:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2315],"body":{"id":558,"nodeType":"Block","src":"4407:29:2","statements":[{"expression":{"id":556,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"4424:5:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":555,"id":557,"nodeType":"Return","src":"4417:12:2"}]},"documentation":{"id":551,"nodeType":"StructuredDocumentation","src":"4297:45:2","text":" @dev See {IGovernor-name}."},"functionSelector":"06fdde03","id":559,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"4356:4:2","nodeType":"FunctionDefinition","parameters":{"id":552,"nodeType":"ParameterList","parameters":[],"src":"4360:2:2"},"returnParameters":{"id":555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":554,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":559,"src":"4392:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":553,"name":"string","nodeType":"ElementaryTypeName","src":"4392:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4391:15:2"},"scope":2134,"src":"4347:89:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2321],"body":{"id":567,"nodeType":"Block","src":"4558:27:2","statements":[{"expression":{"hexValue":"31","id":565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4575:3:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"},"functionReturnParameters":564,"id":566,"nodeType":"Return","src":"4568:10:2"}]},"documentation":{"id":560,"nodeType":"StructuredDocumentation","src":"4442:48:2","text":" @dev See {IGovernor-version}."},"functionSelector":"54fd4d50","id":568,"implemented":true,"kind":"function","modifiers":[],"name":"version","nameLocation":"4504:7:2","nodeType":"FunctionDefinition","parameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"4511:2:2"},"returnParameters":{"id":564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":568,"src":"4543:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":562,"name":"string","nodeType":"ElementaryTypeName","src":"4543:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4542:15:2"},"scope":2134,"src":"4495:90:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2344],"body":{"id":598,"nodeType":"Block","src":"5730:99:2","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":590,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":572,"src":"5776:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":591,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":575,"src":"5785:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":592,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":578,"src":"5793:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":593,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":580,"src":"5804:15:2","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":588,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5765:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5769:6:2","memberName":"encode","nodeType":"MemberAccess","src":"5765:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5765:55:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":587,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5755:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5755:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5747:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"5747:7:2","typeDescriptions":{}}},"id":596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5747:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":584,"id":597,"nodeType":"Return","src":"5740:82:2"}]},"documentation":{"id":569,"nodeType":"StructuredDocumentation","src":"4591:934:2","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":599,"implemented":true,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"5539:12:2","nodeType":"FunctionDefinition","parameters":{"id":581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":572,"mutability":"mutable","name":"targets","nameLocation":"5578:7:2","nodeType":"VariableDeclaration","scope":599,"src":"5561:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":570,"name":"address","nodeType":"ElementaryTypeName","src":"5561:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":571,"nodeType":"ArrayTypeName","src":"5561:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":575,"mutability":"mutable","name":"values","nameLocation":"5612:6:2","nodeType":"VariableDeclaration","scope":599,"src":"5595:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":573,"name":"uint256","nodeType":"ElementaryTypeName","src":"5595:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":574,"nodeType":"ArrayTypeName","src":"5595:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":578,"mutability":"mutable","name":"calldatas","nameLocation":"5643:9:2","nodeType":"VariableDeclaration","scope":599,"src":"5628:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":576,"name":"bytes","nodeType":"ElementaryTypeName","src":"5628:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":577,"nodeType":"ArrayTypeName","src":"5628:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":580,"mutability":"mutable","name":"descriptionHash","nameLocation":"5670:15:2","nodeType":"VariableDeclaration","scope":599,"src":"5662:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":579,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5662:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5551:140:2"},"returnParameters":{"id":584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":583,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":599,"src":"5721:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":582,"name":"uint256","nodeType":"ElementaryTypeName","src":"5721:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5720:9:2"},"scope":2134,"src":"5530:299:2","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2353],"body":{"id":707,"nodeType":"Block","src":"5965:1169:2","statements":[{"assignments":[610],"declarations":[{"constant":false,"id":610,"mutability":"mutable","name":"proposal","nameLocation":"6089:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6068:29:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":609,"nodeType":"UserDefinedTypeName","pathNode":{"id":608,"name":"ProposalCore","nameLocations":["6068:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"6068:12:2"},"referencedDeclaration":448,"src":"6068:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":614,"initialValue":{"baseExpression":{"id":611,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"6100:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":613,"indexExpression":{"id":612,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6111:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6100:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6068:54:2"},{"assignments":[616],"declarations":[{"constant":false,"id":616,"mutability":"mutable","name":"proposalExecuted","nameLocation":"6137:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6132:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":615,"name":"bool","nodeType":"ElementaryTypeName","src":"6132:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":619,"initialValue":{"expression":{"id":617,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":610,"src":"6156:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":618,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6165:8:2","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":443,"src":"6156:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6132:41:2"},{"assignments":[621],"declarations":[{"constant":false,"id":621,"mutability":"mutable","name":"proposalCanceled","nameLocation":"6188:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6183:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":620,"name":"bool","nodeType":"ElementaryTypeName","src":"6183:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":624,"initialValue":{"expression":{"id":622,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":610,"src":"6207:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6216:8:2","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":445,"src":"6207:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6183:41:2"},{"condition":{"id":625,"name":"proposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"6239:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":630,"nodeType":"IfStatement","src":"6235:76:2","trueBody":{"id":629,"nodeType":"Block","src":"6257:54:2","statements":[{"expression":{"expression":{"id":626,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6278:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6292:8:2","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"6278:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":628,"nodeType":"Return","src":"6271:29:2"}]}},{"condition":{"id":631,"name":"proposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":621,"src":"6325:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":636,"nodeType":"IfStatement","src":"6321:76:2","trueBody":{"id":635,"nodeType":"Block","src":"6343:54:2","statements":[{"expression":{"expression":{"id":632,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6364:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:8:2","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"6364:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":634,"nodeType":"Return","src":"6357:29:2"}]}},{"assignments":[638],"declarations":[{"constant":false,"id":638,"mutability":"mutable","name":"snapshot","nameLocation":"6415:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6407:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":637,"name":"uint256","nodeType":"ElementaryTypeName","src":"6407:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":642,"initialValue":{"arguments":[{"id":640,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6443:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":639,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"6426:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6426:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6407:47:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":643,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"6469:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6481:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6469:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":651,"nodeType":"IfStatement","src":"6465:90:2","trueBody":{"id":650,"nodeType":"Block","src":"6484:71:2","statements":[{"errorCall":{"arguments":[{"id":647,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6533:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":646,"name":"GovernorNonexistentProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"6505:27:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6505:39:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":649,"nodeType":"RevertStatement","src":"6498:46:2"}]}},{"assignments":[653],"declarations":[{"constant":false,"id":653,"mutability":"mutable","name":"currentTimepoint","nameLocation":"6573:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6565:24:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"6565:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":656,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":654,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"6592:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6592:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"6565:34:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":657,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"6614:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":658,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"6626:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6614:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":664,"nodeType":"IfStatement","src":"6610:87:2","trueBody":{"id":663,"nodeType":"Block","src":"6644:53:2","statements":[{"expression":{"expression":{"id":660,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6665:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6679:7:2","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2146,"src":"6665:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":662,"nodeType":"Return","src":"6658:28:2"}]}},{"assignments":[666],"declarations":[{"constant":false,"id":666,"mutability":"mutable","name":"deadline","nameLocation":"6715:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6707:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":665,"name":"uint256","nodeType":"ElementaryTypeName","src":"6707:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":670,"initialValue":{"arguments":[{"id":668,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6743:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":667,"name":"proposalDeadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":750,"src":"6726:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6726:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6707:47:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":671,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":666,"src":"6769:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":672,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"6781:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6769:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6861:27:2","subExpression":{"arguments":[{"id":679,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6877:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":678,"name":"_quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":837,"src":"6862:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6862:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6892:27:2","subExpression":{"arguments":[{"id":683,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6908:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":682,"name":"_voteSucceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"6893:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6893:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6861:58:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":692,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6997:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":691,"name":"proposalEta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":778,"src":"6985:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6985:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7012:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6985:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":703,"nodeType":"Block","src":"7076:52:2","statements":[{"expression":{"expression":{"id":700,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"7097:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7111:6:2","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"7097:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":702,"nodeType":"Return","src":"7090:27:2"}]},"id":704,"nodeType":"IfStatement","src":"6981:147:2","trueBody":{"id":699,"nodeType":"Block","src":"7015:55:2","statements":[{"expression":{"expression":{"id":696,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"7036:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7050:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"7036:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":698,"nodeType":"Return","src":"7029:30:2"}]}},"id":705,"nodeType":"IfStatement","src":"6857:271:2","trueBody":{"id":690,"nodeType":"Block","src":"6921:54:2","statements":[{"expression":{"expression":{"id":687,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6942:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6956:8:2","memberName":"Defeated","nodeType":"MemberAccess","referencedDeclaration":2149,"src":"6942:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":689,"nodeType":"Return","src":"6935:29:2"}]}},"id":706,"nodeType":"IfStatement","src":"6765:363:2","trueBody":{"id":677,"nodeType":"Block","src":"6799:52:2","statements":[{"expression":{"expression":{"id":674,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6820:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6834:6:2","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2147,"src":"6820:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":676,"nodeType":"Return","src":"6813:27:2"}]}}]},"documentation":{"id":600,"nodeType":"StructuredDocumentation","src":"5835:46:2","text":" @dev See {IGovernor-state}."},"functionSelector":"3e4f49e6","id":708,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"5895:5:2","nodeType":"FunctionDefinition","parameters":{"id":603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":602,"mutability":"mutable","name":"proposalId","nameLocation":"5909:10:2","nodeType":"VariableDeclaration","scope":708,"src":"5901:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":601,"name":"uint256","nodeType":"ElementaryTypeName","src":"5901:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5900:20:2"},"returnParameters":{"id":607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":606,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":708,"src":"5950:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":605,"nodeType":"UserDefinedTypeName","pathNode":{"id":604,"name":"ProposalState","nameLocations":["5950:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"5950:13:2"},"referencedDeclaration":2154,"src":"5950:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"5949:15:2"},"scope":2134,"src":"5886:1248:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2359],"body":{"id":716,"nodeType":"Block","src":"7270:25:2","statements":[{"expression":{"hexValue":"30","id":714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7287:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":713,"id":715,"nodeType":"Return","src":"7280:8:2"}]},"documentation":{"id":709,"nodeType":"StructuredDocumentation","src":"7140:58:2","text":" @dev See {IGovernor-proposalThreshold}."},"functionSelector":"b58131b0","id":717,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7212:17:2","nodeType":"FunctionDefinition","parameters":{"id":710,"nodeType":"ParameterList","parameters":[],"src":"7229:2:2"},"returnParameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":717,"src":"7261:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":711,"name":"uint256","nodeType":"ElementaryTypeName","src":"7261:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7260:9:2"},"scope":2134,"src":"7203:92:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2367],"body":{"id":730,"nodeType":"Block","src":"7447:56:2","statements":[{"expression":{"expression":{"baseExpression":{"id":725,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7464:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":727,"indexExpression":{"id":726,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"7475:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7464:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":728,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7487:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"7464:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":724,"id":729,"nodeType":"Return","src":"7457:39:2"}]},"documentation":{"id":718,"nodeType":"StructuredDocumentation","src":"7301:57:2","text":" @dev See {IGovernor-proposalSnapshot}."},"functionSelector":"2d63f693","id":731,"implemented":true,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"7372:16:2","nodeType":"FunctionDefinition","parameters":{"id":721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":720,"mutability":"mutable","name":"proposalId","nameLocation":"7397:10:2","nodeType":"VariableDeclaration","scope":731,"src":"7389:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":719,"name":"uint256","nodeType":"ElementaryTypeName","src":"7389:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7388:20:2"},"returnParameters":{"id":724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":723,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":731,"src":"7438:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":722,"name":"uint256","nodeType":"ElementaryTypeName","src":"7438:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7437:9:2"},"scope":2134,"src":"7363:140:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2375],"body":{"id":749,"nodeType":"Block","src":"7655:94:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":739,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7672:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":741,"indexExpression":{"id":740,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":734,"src":"7683:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7672:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":742,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7695:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"7672:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":743,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7707:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":745,"indexExpression":{"id":744,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":734,"src":"7718:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7707:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":746,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7730:12:2","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":441,"src":"7707:35:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7672:70:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":738,"id":748,"nodeType":"Return","src":"7665:77:2"}]},"documentation":{"id":732,"nodeType":"StructuredDocumentation","src":"7509:57:2","text":" @dev See {IGovernor-proposalDeadline}."},"functionSelector":"c01f9e37","id":750,"implemented":true,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"7580:16:2","nodeType":"FunctionDefinition","parameters":{"id":735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":734,"mutability":"mutable","name":"proposalId","nameLocation":"7605:10:2","nodeType":"VariableDeclaration","scope":750,"src":"7597:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":733,"name":"uint256","nodeType":"ElementaryTypeName","src":"7597:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7596:20:2"},"returnParameters":{"id":738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":750,"src":"7646:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":736,"name":"uint256","nodeType":"ElementaryTypeName","src":"7646:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7645:9:2"},"scope":2134,"src":"7571:178:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2383],"body":{"id":763,"nodeType":"Block","src":"7901:55:2","statements":[{"expression":{"expression":{"baseExpression":{"id":758,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7918:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":760,"indexExpression":{"id":759,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":753,"src":"7929:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7918:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":761,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7941:8:2","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":437,"src":"7918:31:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":757,"id":762,"nodeType":"Return","src":"7911:38:2"}]},"documentation":{"id":751,"nodeType":"StructuredDocumentation","src":"7755:57:2","text":" @dev See {IGovernor-proposalProposer}."},"functionSelector":"143489d0","id":764,"implemented":true,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"7826:16:2","nodeType":"FunctionDefinition","parameters":{"id":754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":753,"mutability":"mutable","name":"proposalId","nameLocation":"7851:10:2","nodeType":"VariableDeclaration","scope":764,"src":"7843:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":752,"name":"uint256","nodeType":"ElementaryTypeName","src":"7843:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7842:20:2"},"returnParameters":{"id":757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":764,"src":"7892:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7892:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7891:9:2"},"scope":2134,"src":"7817:139:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2391],"body":{"id":777,"nodeType":"Block","src":"8098:57:2","statements":[{"expression":{"expression":{"baseExpression":{"id":772,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"8115:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":774,"indexExpression":{"id":773,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"8126:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8115:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":775,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8138:10:2","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":447,"src":"8115:33:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":771,"id":776,"nodeType":"Return","src":"8108:40:2"}]},"documentation":{"id":765,"nodeType":"StructuredDocumentation","src":"7962:52:2","text":" @dev See {IGovernor-proposalEta}."},"functionSelector":"ab58fb8e","id":778,"implemented":true,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"8028:11:2","nodeType":"FunctionDefinition","parameters":{"id":768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":767,"mutability":"mutable","name":"proposalId","nameLocation":"8048:10:2","nodeType":"VariableDeclaration","scope":778,"src":"8040:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":766,"name":"uint256","nodeType":"ElementaryTypeName","src":"8040:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8039:20:2"},"returnParameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":778,"src":"8089:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":769,"name":"uint256","nodeType":"ElementaryTypeName","src":"8089:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8088:9:2"},"scope":2134,"src":"8019:136:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2399],"body":{"id":788,"nodeType":"Block","src":"8301:29:2","statements":[{"expression":{"hexValue":"66616c7365","id":786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8318:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":785,"id":787,"nodeType":"Return","src":"8311:12:2"}]},"documentation":{"id":779,"nodeType":"StructuredDocumentation","src":"8161:61:2","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":789,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8236:20:2","nodeType":"FunctionDefinition","parameters":{"id":782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":781,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":789,"src":"8257:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":780,"name":"uint256","nodeType":"ElementaryTypeName","src":"8257:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8256:9:2"},"returnParameters":{"id":785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":784,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":789,"src":"8295:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":783,"name":"bool","nodeType":"ElementaryTypeName","src":"8295:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8294:6:2"},"scope":2134,"src":"8227:103:2","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":828,"nodeType":"Block","src":"8637:401:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":793,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"8651:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8651:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":795,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"8666:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8666:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8651:27:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":804,"nodeType":"IfStatement","src":"8647:99:2","trueBody":{"id":803,"nodeType":"Block","src":"8680:66:2","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":799,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"8722:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8722:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":798,"name":"GovernorOnlyExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2181,"src":"8701:20:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8701:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":802,"nodeType":"RevertStatement","src":"8694:41:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":805,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"8759:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8759:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":809,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8782:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":808,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8774:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":807,"name":"address","nodeType":"ElementaryTypeName","src":"8774:7:2","typeDescriptions":{}}},"id":810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8774:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8759:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":827,"nodeType":"IfStatement","src":"8755:277:2","trueBody":{"id":826,"nodeType":"Block","src":"8789:243:2","statements":[{"assignments":[813],"declarations":[{"constant":false,"id":813,"mutability":"mutable","name":"msgDataHash","nameLocation":"8811:11:2","nodeType":"VariableDeclaration","scope":826,"src":"8803:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":812,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8803:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":818,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":815,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6709,"src":"8835:8:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8835:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":814,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8825:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8825:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"8803:43:2"},{"body":{"id":824,"nodeType":"Block","src":"9020:2:2","statements":[]},"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":819,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"8977:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":820,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8993:8:2","memberName":"popFront","nodeType":"MemberAccess","referencedDeclaration":14494,"src":"8977:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) returns (bytes32)"}},"id":821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8977:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":822,"name":"msgDataHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":813,"src":"9007:11:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8977:41:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":825,"nodeType":"WhileStatement","src":"8970:52:2"}]}}]},"documentation":{"id":790,"nodeType":"StructuredDocumentation","src":"8336:251:2","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":829,"implemented":true,"kind":"function","modifiers":[],"name":"_checkGovernance","nameLocation":"8601:16:2","nodeType":"FunctionDefinition","parameters":{"id":791,"nodeType":"ParameterList","parameters":[],"src":"8617:2:2"},"returnParameters":{"id":792,"nodeType":"ParameterList","parameters":[],"src":"8637:0:2"},"scope":2134,"src":"8592:446:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":830,"nodeType":"StructuredDocumentation","src":"9044:80:2","text":" @dev Amount of votes already cast passes the threshold limit."},"id":837,"implemented":false,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"9138:14:2","nodeType":"FunctionDefinition","parameters":{"id":833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":832,"mutability":"mutable","name":"proposalId","nameLocation":"9161:10:2","nodeType":"VariableDeclaration","scope":837,"src":"9153:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":831,"name":"uint256","nodeType":"ElementaryTypeName","src":"9153:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9152:20:2"},"returnParameters":{"id":836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":835,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":837,"src":"9204:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":834,"name":"bool","nodeType":"ElementaryTypeName","src":"9204:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9203:6:2"},"scope":2134,"src":"9129:81:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":838,"nodeType":"StructuredDocumentation","src":"9216:58:2","text":" @dev Is the proposal successful or not."},"id":845,"implemented":false,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"9288:14:2","nodeType":"FunctionDefinition","parameters":{"id":841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":840,"mutability":"mutable","name":"proposalId","nameLocation":"9311:10:2","nodeType":"VariableDeclaration","scope":845,"src":"9303:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":839,"name":"uint256","nodeType":"ElementaryTypeName","src":"9303:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9302:20:2"},"returnParameters":{"id":844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":843,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"9354:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":842,"name":"bool","nodeType":"ElementaryTypeName","src":"9354:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9353:6:2"},"scope":2134,"src":"9279:81:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":846,"nodeType":"StructuredDocumentation","src":"9366:122:2","text":" @dev Get the voting weight of `account` at a specific `timepoint`, for a vote as described by `params`."},"id":857,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"9502:9:2","nodeType":"FunctionDefinition","parameters":{"id":853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":848,"mutability":"mutable","name":"account","nameLocation":"9520:7:2","nodeType":"VariableDeclaration","scope":857,"src":"9512:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":847,"name":"address","nodeType":"ElementaryTypeName","src":"9512:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":850,"mutability":"mutable","name":"timepoint","nameLocation":"9537:9:2","nodeType":"VariableDeclaration","scope":857,"src":"9529:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":849,"name":"uint256","nodeType":"ElementaryTypeName","src":"9529:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":852,"mutability":"mutable","name":"params","nameLocation":"9561:6:2","nodeType":"VariableDeclaration","scope":857,"src":"9548:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":851,"name":"bytes","nodeType":"ElementaryTypeName","src":"9548:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9511:57:2"},"returnParameters":{"id":856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":857,"src":"9600:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":854,"name":"uint256","nodeType":"ElementaryTypeName","src":"9600:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9599:9:2"},"scope":2134,"src":"9493:116:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":858,"nodeType":"StructuredDocumentation","src":"9615:239:2","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":873,"implemented":false,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"9868:10:2","nodeType":"FunctionDefinition","parameters":{"id":869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":860,"mutability":"mutable","name":"proposalId","nameLocation":"9896:10:2","nodeType":"VariableDeclaration","scope":873,"src":"9888:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":859,"name":"uint256","nodeType":"ElementaryTypeName","src":"9888:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":862,"mutability":"mutable","name":"account","nameLocation":"9924:7:2","nodeType":"VariableDeclaration","scope":873,"src":"9916:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":861,"name":"address","nodeType":"ElementaryTypeName","src":"9916:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":864,"mutability":"mutable","name":"support","nameLocation":"9947:7:2","nodeType":"VariableDeclaration","scope":873,"src":"9941:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":863,"name":"uint8","nodeType":"ElementaryTypeName","src":"9941:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":866,"mutability":"mutable","name":"totalWeight","nameLocation":"9972:11:2","nodeType":"VariableDeclaration","scope":873,"src":"9964:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":865,"name":"uint256","nodeType":"ElementaryTypeName","src":"9964:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":868,"mutability":"mutable","name":"params","nameLocation":"10006:6:2","nodeType":"VariableDeclaration","scope":873,"src":"9993:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":867,"name":"bytes","nodeType":"ElementaryTypeName","src":"9993:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9878:140:2"},"returnParameters":{"id":872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":871,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":873,"src":"10045:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":870,"name":"uint256","nodeType":"ElementaryTypeName","src":"10045:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10044:9:2"},"scope":2134,"src":"9859:195:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":879,"nodeType":"Block","src":"10330:2:2","statements":[]},"documentation":{"id":874,"nodeType":"StructuredDocumentation","src":"10060:205:2","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":880,"implemented":true,"kind":"function","modifiers":[],"name":"_tallyUpdated","nameLocation":"10279:13:2","nodeType":"FunctionDefinition","parameters":{"id":877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":876,"mutability":"mutable","name":"proposalId","nameLocation":"10301:10:2","nodeType":"VariableDeclaration","scope":880,"src":"10293:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":875,"name":"uint256","nodeType":"ElementaryTypeName","src":"10293:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10292:20:2"},"returnParameters":{"id":878,"nodeType":"ParameterList","parameters":[],"src":"10330:0:2"},"scope":2134,"src":"10270:62:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":888,"nodeType":"Block","src":"10705:26:2","statements":[{"expression":{"hexValue":"","id":886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10722:2:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":885,"id":887,"nodeType":"Return","src":"10715:9:2"}]},"documentation":{"id":881,"nodeType":"StructuredDocumentation","src":"10338:291:2","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":889,"implemented":true,"kind":"function","modifiers":[],"name":"_defaultParams","nameLocation":"10643:14:2","nodeType":"FunctionDefinition","parameters":{"id":882,"nodeType":"ParameterList","parameters":[],"src":"10657:2:2"},"returnParameters":{"id":885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":884,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":889,"src":"10691:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":883,"name":"bytes","nodeType":"ElementaryTypeName","src":"10691:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10690:14:2"},"scope":2134,"src":"10634:97:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[2468],"body":{"id":961,"nodeType":"Block","src":"11079:671:2","statements":[{"assignments":[907],"declarations":[{"constant":false,"id":907,"mutability":"mutable","name":"proposer","nameLocation":"11097:8:2","nodeType":"VariableDeclaration","scope":961,"src":"11089:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":906,"name":"address","nodeType":"ElementaryTypeName","src":"11089:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":910,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":908,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"11108:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11108:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11089:31:2"},{"condition":{"id":915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11176:54:2","subExpression":{"arguments":[{"id":912,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11208:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":913,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"11218:11:2","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":911,"name":"_isValidDescriptionForProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2089,"src":"11177:30:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_string_memory_ptr_$returns$_t_bool_$","typeString":"function (address,string memory) view returns (bool)"}},"id":914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11177:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":921,"nodeType":"IfStatement","src":"11172:128:2","trueBody":{"id":920,"nodeType":"Block","src":"11232:68:2","statements":[{"errorCall":{"arguments":[{"id":917,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11280:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":916,"name":"GovernorRestrictedProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2215,"src":"11253:26:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11253:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":919,"nodeType":"RevertStatement","src":"11246:43:2"}]}},{"assignments":[923],"declarations":[{"constant":false,"id":923,"mutability":"mutable","name":"votesThreshold","nameLocation":"11354:14:2","nodeType":"VariableDeclaration","scope":961,"src":"11346:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":922,"name":"uint256","nodeType":"ElementaryTypeName","src":"11346:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":926,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":924,"name":"proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":717,"src":"11371:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11371:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11346:44:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":927,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11404:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11421:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11404:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":952,"nodeType":"IfStatement","src":"11400:267:2","trueBody":{"id":951,"nodeType":"Block","src":"11424:243:2","statements":[{"assignments":[931],"declarations":[{"constant":false,"id":931,"mutability":"mutable","name":"proposerVotes","nameLocation":"11446:13:2","nodeType":"VariableDeclaration","scope":951,"src":"11438:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":930,"name":"uint256","nodeType":"ElementaryTypeName","src":"11438:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":939,"initialValue":{"arguments":[{"id":933,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11471:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":934,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"11481:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11481:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11491:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11481:11:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":932,"name":"getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1505,"src":"11462:8:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11438:55:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":940,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":931,"src":"11511:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":941,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11527:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11511:30:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":950,"nodeType":"IfStatement","src":"11507:150:2","trueBody":{"id":949,"nodeType":"Block","src":"11543:114:2","statements":[{"errorCall":{"arguments":[{"id":944,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11602:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":945,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":931,"src":"11612:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":946,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11627:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":943,"name":"GovernorInsufficientProposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"11568:33:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11568:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":948,"nodeType":"RevertStatement","src":"11561:81:2"}]}}]}},{"expression":{"arguments":[{"id":954,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"11693:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":955,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"11702:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":956,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":899,"src":"11710:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":957,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"11721:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":958,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11734:8:2","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":953,"name":"_propose","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1105,"src":"11684:8:2","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":959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11684:59:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":905,"id":960,"nodeType":"Return","src":"11677:66:2"}]},"documentation":{"id":890,"nodeType":"StructuredDocumentation","src":"10737:145:2","text":" @dev See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}."},"functionSelector":"7d5e81e2","id":962,"implemented":true,"kind":"function","modifiers":[],"name":"propose","nameLocation":"10896:7:2","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":893,"mutability":"mutable","name":"targets","nameLocation":"10930:7:2","nodeType":"VariableDeclaration","scope":962,"src":"10913:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":891,"name":"address","nodeType":"ElementaryTypeName","src":"10913:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":892,"nodeType":"ArrayTypeName","src":"10913:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":896,"mutability":"mutable","name":"values","nameLocation":"10964:6:2","nodeType":"VariableDeclaration","scope":962,"src":"10947:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":894,"name":"uint256","nodeType":"ElementaryTypeName","src":"10947:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":895,"nodeType":"ArrayTypeName","src":"10947:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":899,"mutability":"mutable","name":"calldatas","nameLocation":"10995:9:2","nodeType":"VariableDeclaration","scope":962,"src":"10980:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":897,"name":"bytes","nodeType":"ElementaryTypeName","src":"10980:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":898,"nodeType":"ArrayTypeName","src":"10980:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":901,"mutability":"mutable","name":"description","nameLocation":"11028:11:2","nodeType":"VariableDeclaration","scope":962,"src":"11014:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":900,"name":"string","nodeType":"ElementaryTypeName","src":"11014:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10903:142:2"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":962,"src":"11070:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"11070:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11069:9:2"},"scope":2134,"src":"10887:863:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1104,"nodeType":"Block","src":"12159:1141:2","statements":[{"expression":{"id":993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":981,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12169:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":983,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12195:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":984,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12204:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":985,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12212:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"arguments":[{"arguments":[{"id":989,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"12239:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12233:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":987,"name":"bytes","nodeType":"ElementaryTypeName","src":"12233:5:2","typeDescriptions":{}}},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12233:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":986,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"12223:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12223:29:2","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":982,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"12182:12:2","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":992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12182:71:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12169:84:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":994,"nodeType":"ExpressionStatement","src":"12169:84:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":995,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12268:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12276:6:2","memberName":"length","nodeType":"MemberAccess","src":"12268:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":997,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12286:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12293:6:2","memberName":"length","nodeType":"MemberAccess","src":"12286:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12268:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1000,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12303:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12311:6:2","memberName":"length","nodeType":"MemberAccess","src":"12303:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":1002,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12321:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12331:6:2","memberName":"length","nodeType":"MemberAccess","src":"12321:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12303:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12268:69:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1006,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12341:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12349:6:2","memberName":"length","nodeType":"MemberAccess","src":"12341:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12359:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12341:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12268:92:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1021,"nodeType":"IfStatement","src":"12264:208:2","trueBody":{"id":1020,"nodeType":"Block","src":"12362:110:2","statements":[{"errorCall":{"arguments":[{"expression":{"id":1012,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12413:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12421:6:2","memberName":"length","nodeType":"MemberAccess","src":"12413:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1014,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12429:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12439:6:2","memberName":"length","nodeType":"MemberAccess","src":"12429:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1016,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12447:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12454:6:2","memberName":"length","nodeType":"MemberAccess","src":"12447:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1011,"name":"GovernorInvalidProposalLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2163,"src":"12383:29:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":1018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12383:78:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1019,"nodeType":"RevertStatement","src":"12376:85:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1022,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"12485:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1024,"indexExpression":{"id":1023,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12496:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12485:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12508:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"12485:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12521:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12485:37:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1040,"nodeType":"IfStatement","src":"12481:149:2","trueBody":{"id":1039,"nodeType":"Block","src":"12524:106:2","statements":[{"errorCall":{"arguments":[{"id":1029,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12577:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1031,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12595:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1030,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"12589:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":1032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12589:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},{"arguments":[{"hexValue":"30","id":1035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12616: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":1034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12608:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12608:7:2","typeDescriptions":{}}},"id":1036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12608:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1028,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"12545:31:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2154_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":1037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12545:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1038,"nodeType":"RevertStatement","src":"12538:81:2"}]}},{"assignments":[1042],"declarations":[{"constant":false,"id":1042,"mutability":"mutable","name":"snapshot","nameLocation":"12648:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12640:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1041,"name":"uint256","nodeType":"ElementaryTypeName","src":"12640:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1048,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1043,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"12659:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12659:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1045,"name":"votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2107,"src":"12669:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12669:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12659:23:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12640:42:2"},{"assignments":[1050],"declarations":[{"constant":false,"id":1050,"mutability":"mutable","name":"duration","nameLocation":"12700:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12692:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"12692:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1053,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1051,"name":"votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2113,"src":"12711:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12711:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12692:33:2"},{"assignments":[1056],"declarations":[{"constant":false,"id":1056,"mutability":"mutable","name":"proposal","nameLocation":"12757:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12736:29:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":1055,"nodeType":"UserDefinedTypeName","pathNode":{"id":1054,"name":"ProposalCore","nameLocations":["12736:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"12736:12:2"},"referencedDeclaration":448,"src":"12736:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":1060,"initialValue":{"baseExpression":{"id":1057,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"12768:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1059,"indexExpression":{"id":1058,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12779:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12768:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12736:54:2"},{"expression":{"id":1065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1061,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12800:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12809:8:2","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":437,"src":"12800:17:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1064,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"12820:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12800:28:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1066,"nodeType":"ExpressionStatement","src":"12800:28:2"},{"expression":{"id":1074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1067,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12838:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1069,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12847:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"12838:18:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1072,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"12877:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1070,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"12859:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":1071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12868:8:2","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"12859:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12859:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12838:48:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1075,"nodeType":"ExpressionStatement","src":"12838:48:2"},{"expression":{"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1076,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12896:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1078,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12905:12:2","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":441,"src":"12896:21:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1081,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"12938:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1079,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"12920:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":1080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12929:8:2","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":11611,"src":"12920:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":1082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12920:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"12896:51:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":1084,"nodeType":"ExpressionStatement","src":"12896:51:2"},{"eventCall":{"arguments":[{"id":1086,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12992:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1087,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"13016:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1088,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"13038:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1089,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"13059:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"arguments":[{"expression":{"id":1093,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"13092:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13100:6:2","memberName":"length","nodeType":"MemberAccess","src":"13092:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"13079:12:2","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":1090,"name":"string","nodeType":"ElementaryTypeName","src":"13083:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":1091,"nodeType":"ArrayTypeName","src":"13083:8:2","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":1095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13079:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"id":1096,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"13121:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1097,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"13144:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1098,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"13166:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1099,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"13177:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13166:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1101,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"13199:11:2","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":1085,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"12963:15:2","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":1102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12963:257:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1103,"nodeType":"EmitStatement","src":"12958:262:2"}]},"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"11756:166:2","text":" @dev Internal propose mechanism. Can be overridden to add more logic on proposal creation.\n Emits a {IGovernor-ProposalCreated} event."},"id":1105,"implemented":true,"kind":"function","modifiers":[],"name":"_propose","nameLocation":"11936:8:2","nodeType":"FunctionDefinition","parameters":{"id":977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":966,"mutability":"mutable","name":"targets","nameLocation":"11971:7:2","nodeType":"VariableDeclaration","scope":1105,"src":"11954:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":964,"name":"address","nodeType":"ElementaryTypeName","src":"11954:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":965,"nodeType":"ArrayTypeName","src":"11954:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":969,"mutability":"mutable","name":"values","nameLocation":"12005:6:2","nodeType":"VariableDeclaration","scope":1105,"src":"11988:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":967,"name":"uint256","nodeType":"ElementaryTypeName","src":"11988:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":968,"nodeType":"ArrayTypeName","src":"11988:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":972,"mutability":"mutable","name":"calldatas","nameLocation":"12036:9:2","nodeType":"VariableDeclaration","scope":1105,"src":"12021:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":970,"name":"bytes","nodeType":"ElementaryTypeName","src":"12021:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":971,"nodeType":"ArrayTypeName","src":"12021:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":974,"mutability":"mutable","name":"description","nameLocation":"12069:11:2","nodeType":"VariableDeclaration","scope":1105,"src":"12055:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":973,"name":"string","nodeType":"ElementaryTypeName","src":"12055:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":976,"mutability":"mutable","name":"proposer","nameLocation":"12098:8:2","nodeType":"VariableDeclaration","scope":1105,"src":"12090:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"12090:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11944:168:2"},"returnParameters":{"id":980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":979,"mutability":"mutable","name":"proposalId","nameLocation":"12147:10:2","nodeType":"VariableDeclaration","scope":1105,"src":"12139:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":978,"name":"uint256","nodeType":"ElementaryTypeName","src":"12139:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12138:20:2"},"scope":2134,"src":"11927:1373:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2485],"body":{"id":1172,"nodeType":"Block","src":"13545:541:2","statements":[{"assignments":[1123],"declarations":[{"constant":false,"id":1123,"mutability":"mutable","name":"proposalId","nameLocation":"13563:10:2","nodeType":"VariableDeclaration","scope":1172,"src":"13555:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1122,"name":"uint256","nodeType":"ElementaryTypeName","src":"13555:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1130,"initialValue":{"arguments":[{"id":1125,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1109,"src":"13589:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1126,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1112,"src":"13598:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1127,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"13606:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1128,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1117,"src":"13617:15:2","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":1124,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"13576:12:2","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":1129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13576:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13555:78:2"},{"expression":{"arguments":[{"id":1132,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13665:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1134,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"13696:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13710:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"13696:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1133,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"13677:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13677:43:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1131,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"13644:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13644:77:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1138,"nodeType":"ExpressionStatement","src":"13644:77:2"},{"assignments":[1140],"declarations":[{"constant":false,"id":1140,"mutability":"mutable","name":"etaSeconds","nameLocation":"13739:10:2","nodeType":"VariableDeclaration","scope":1172,"src":"13732:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1139,"name":"uint48","nodeType":"ElementaryTypeName","src":"13732:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":1148,"initialValue":{"arguments":[{"id":1142,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13769:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1143,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1109,"src":"13781:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1144,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1112,"src":"13790:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1145,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"13798:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1146,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1117,"src":"13809:15:2","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":1141,"name":"_queueOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1195,"src":"13752:16:2","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":1147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13752:73:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"13732:93:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1149,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13840:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13854:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13840:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1168,"nodeType":"Block","src":"13991:61:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1165,"name":"GovernorQueueNotImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"14012:27:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14012:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1167,"nodeType":"RevertStatement","src":"14005:36:2"}]},"id":1169,"nodeType":"IfStatement","src":"13836:216:2","trueBody":{"id":1164,"nodeType":"Block","src":"13857:128:2","statements":[{"expression":{"id":1157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1152,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"13871:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1154,"indexExpression":{"id":1153,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13882:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13871:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13894:10:2","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":447,"src":"13871:33:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1156,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13907:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13871:46:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1158,"nodeType":"ExpressionStatement","src":"13871:46:2"},{"eventCall":{"arguments":[{"id":1160,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13951:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1161,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13963:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":1159,"name":"ProposalQueued","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2271,"src":"13936:14:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13936:38:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"EmitStatement","src":"13931:43:2"}]}},{"expression":{"id":1170,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"14069:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1121,"id":1171,"nodeType":"Return","src":"14062:17:2"}]},"documentation":{"id":1106,"nodeType":"StructuredDocumentation","src":"13306:46:2","text":" @dev See {IGovernor-queue}."},"functionSelector":"160cbed7","id":1173,"implemented":true,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13366:5:2","nodeType":"FunctionDefinition","parameters":{"id":1118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1109,"mutability":"mutable","name":"targets","nameLocation":"13398:7:2","nodeType":"VariableDeclaration","scope":1173,"src":"13381:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1107,"name":"address","nodeType":"ElementaryTypeName","src":"13381:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1108,"nodeType":"ArrayTypeName","src":"13381:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1112,"mutability":"mutable","name":"values","nameLocation":"13432:6:2","nodeType":"VariableDeclaration","scope":1173,"src":"13415:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1110,"name":"uint256","nodeType":"ElementaryTypeName","src":"13415:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1111,"nodeType":"ArrayTypeName","src":"13415:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1115,"mutability":"mutable","name":"calldatas","nameLocation":"13463:9:2","nodeType":"VariableDeclaration","scope":1173,"src":"13448:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1113,"name":"bytes","nodeType":"ElementaryTypeName","src":"13448:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1114,"nodeType":"ArrayTypeName","src":"13448:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1117,"mutability":"mutable","name":"descriptionHash","nameLocation":"13490:15:2","nodeType":"VariableDeclaration","scope":1173,"src":"13482:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13482:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13371:140:2"},"returnParameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1173,"src":"13536:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1119,"name":"uint256","nodeType":"ElementaryTypeName","src":"13536:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13535:9:2"},"scope":2134,"src":"13357:729:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1194,"nodeType":"Block","src":"15060:25:2","statements":[{"expression":{"hexValue":"30","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15077:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1191,"id":1193,"nodeType":"Return","src":"15070:8:2"}]},"documentation":{"id":1174,"nodeType":"StructuredDocumentation","src":"14092:715:2","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":1195,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"14821:16:2","nodeType":"FunctionDefinition","parameters":{"id":1188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14847:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1175,"name":"uint256","nodeType":"ElementaryTypeName","src":"14847:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1179,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14879:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1177,"name":"address","nodeType":"ElementaryTypeName","src":"14879:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1178,"nodeType":"ArrayTypeName","src":"14879:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14917:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1180,"name":"uint256","nodeType":"ElementaryTypeName","src":"14917:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1181,"nodeType":"ArrayTypeName","src":"14917:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14954:14:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1183,"name":"bytes","nodeType":"ElementaryTypeName","src":"14954:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1184,"nodeType":"ArrayTypeName","src":"14954:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14992:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1186,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14992:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14837:188:2"},"returnParameters":{"id":1191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"15052:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1189,"name":"uint48","nodeType":"ElementaryTypeName","src":"15052:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"15051:8:2"},"scope":2134,"src":"14812:273:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2502],"body":{"id":1316,"nodeType":"Block","src":"15342:1035:2","statements":[{"assignments":[1213],"declarations":[{"constant":false,"id":1213,"mutability":"mutable","name":"proposalId","nameLocation":"15360:10:2","nodeType":"VariableDeclaration","scope":1316,"src":"15352:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1212,"name":"uint256","nodeType":"ElementaryTypeName","src":"15352:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1220,"initialValue":{"arguments":[{"id":1215,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15386:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1216,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"15395:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1217,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"15403:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1218,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"15414:15:2","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":1214,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"15373:12:2","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":1219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15373:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15352:78:2"},{"expression":{"arguments":[{"id":1222,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"15475:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1224,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"15518:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15532:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"15518:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1223,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"15499:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15499:43:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":1228,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"15564:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15578:6:2","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"15564:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1227,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"15545:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15545:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"15499:86:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1221,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"15441:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15441:154:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1233,"nodeType":"ExpressionStatement","src":"15441:154:2"},{"expression":{"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1234,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"15667:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1236,"indexExpression":{"id":1235,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"15678:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15667:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15690:8:2","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":443,"src":"15667:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15701:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"15667:38:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1240,"nodeType":"ExpressionStatement","src":"15667:38:2"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1241,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"15782:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15782:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1245,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15805:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15797:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1243,"name":"address","nodeType":"ElementaryTypeName","src":"15797:7:2","typeDescriptions":{}}},"id":1246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15797:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15782:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1282,"nodeType":"IfStatement","src":"15778:258:2","trueBody":{"id":1281,"nodeType":"Block","src":"15812:224:2","statements":[{"body":{"id":1279,"nodeType":"Block","src":"15871:155:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1259,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15893:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1261,"indexExpression":{"id":1260,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15901:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15893:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":1264,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15915:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15907:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1262,"name":"address","nodeType":"ElementaryTypeName","src":"15907:7:2","typeDescriptions":{}}},"id":1265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15907:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15893:27:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1278,"nodeType":"IfStatement","src":"15889:123:2","trueBody":{"id":1277,"nodeType":"Block","src":"15922:90:2","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"id":1271,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"15979:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1273,"indexExpression":{"id":1272,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15989:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15979:12:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1270,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"15969:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15969:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1267,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"15944:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1269,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15960:8:2","memberName":"pushBack","nodeType":"MemberAccess","referencedDeclaration":14351,"src":"15944:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$_t_bytes32_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer,bytes32)"}},"id":1275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15944:49:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1276,"nodeType":"ExpressionStatement","src":"15944:49:2"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1252,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15846:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1253,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15850:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15858:6:2","memberName":"length","nodeType":"MemberAccess","src":"15850:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15846:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1280,"initializationExpression":{"assignments":[1249],"declarations":[{"constant":false,"id":1249,"mutability":"mutable","name":"i","nameLocation":"15839:1:2","nodeType":"VariableDeclaration","scope":1280,"src":"15831:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1248,"name":"uint256","nodeType":"ElementaryTypeName","src":"15831:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1251,"initialValue":{"hexValue":"30","id":1250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15843:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15831:13:2"},"loopExpression":{"expression":{"id":1257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15866:3:2","subExpression":{"id":1256,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15868:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1258,"nodeType":"ExpressionStatement","src":"15866:3:2"},"nodeType":"ForStatement","src":"15826:200:2"}]}},{"expression":{"arguments":[{"id":1284,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16065:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1285,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"16077:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1286,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"16086:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1287,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"16094:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1288,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"16105:15:2","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":1283,"name":"_executeOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1372,"src":"16046:18:2","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":1289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16046:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1290,"nodeType":"ExpressionStatement","src":"16046:75:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1291,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"16193:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16193:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1295,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"16216:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1294,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16208:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1293,"name":"address","nodeType":"ElementaryTypeName","src":"16208:7:2","typeDescriptions":{}}},"id":1296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16208:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16193:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":1301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16225:24:2","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1298,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"16226:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1299,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16242:5:2","memberName":"empty","nodeType":"MemberAccess","referencedDeclaration":14644,"src":"16226:21:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":1300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16226:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16193:56:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1309,"nodeType":"IfStatement","src":"16189:110:2","trueBody":{"id":1308,"nodeType":"Block","src":"16251:48:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1303,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"16265:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1305,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16281:5:2","memberName":"clear","nodeType":"MemberAccess","referencedDeclaration":14608,"src":"16265:21:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer)"}},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16265:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1307,"nodeType":"ExpressionStatement","src":"16265:23:2"}]}},{"eventCall":{"arguments":[{"id":1311,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16331:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1310,"name":"ProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"16314:16:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16314:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1313,"nodeType":"EmitStatement","src":"16309:33:2"},{"expression":{"id":1314,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16360:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1211,"id":1315,"nodeType":"Return","src":"16353:17:2"}]},"documentation":{"id":1196,"nodeType":"StructuredDocumentation","src":"15091:48:2","text":" @dev See {IGovernor-execute}."},"functionSelector":"2656227d","id":1317,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"15153:7:2","nodeType":"FunctionDefinition","parameters":{"id":1208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1199,"mutability":"mutable","name":"targets","nameLocation":"15187:7:2","nodeType":"VariableDeclaration","scope":1317,"src":"15170:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1197,"name":"address","nodeType":"ElementaryTypeName","src":"15170:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1198,"nodeType":"ArrayTypeName","src":"15170:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1202,"mutability":"mutable","name":"values","nameLocation":"15221:6:2","nodeType":"VariableDeclaration","scope":1317,"src":"15204:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1200,"name":"uint256","nodeType":"ElementaryTypeName","src":"15204:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1201,"nodeType":"ArrayTypeName","src":"15204:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1205,"mutability":"mutable","name":"calldatas","nameLocation":"15252:9:2","nodeType":"VariableDeclaration","scope":1317,"src":"15237:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1203,"name":"bytes","nodeType":"ElementaryTypeName","src":"15237:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1204,"nodeType":"ArrayTypeName","src":"15237:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1207,"mutability":"mutable","name":"descriptionHash","nameLocation":"15279:15:2","nodeType":"VariableDeclaration","scope":1317,"src":"15271:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1206,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15271:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15160:140:2"},"returnParameters":{"id":1211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1317,"src":"15333:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1209,"name":"uint256","nodeType":"ElementaryTypeName","src":"15333:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15332:9:2"},"scope":2134,"src":"15144:1233:2","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":1371,"nodeType":"Block","src":"17035:234:2","statements":[{"body":{"id":1369,"nodeType":"Block","src":"17090:173:2","statements":[{"assignments":[1346,1348],"declarations":[{"constant":false,"id":1346,"mutability":"mutable","name":"success","nameLocation":"17110:7:2","nodeType":"VariableDeclaration","scope":1369,"src":"17105:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1345,"name":"bool","nodeType":"ElementaryTypeName","src":"17105:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1348,"mutability":"mutable","name":"returndata","nameLocation":"17132:10:2","nodeType":"VariableDeclaration","scope":1369,"src":"17119:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1347,"name":"bytes","nodeType":"ElementaryTypeName","src":"17119:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1361,"initialValue":{"arguments":[{"baseExpression":{"id":1357,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"17180:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1359,"indexExpression":{"id":1358,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17190:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17180:12:2","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":1349,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1323,"src":"17146:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1351,"indexExpression":{"id":1350,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17154:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17146:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17157:4:2","memberName":"call","nodeType":"MemberAccess","src":"17146:15:2","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":1356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"baseExpression":{"id":1353,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"17169:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1355,"indexExpression":{"id":1354,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17176:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17169:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"17146:33:2","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":1360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17146:47:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"17104:89:2"},{"expression":{"arguments":[{"id":1365,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1346,"src":"17232:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1366,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"17241:10:2","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":1362,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"17207:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":1364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17215:16:2","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"17207:24:2","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":1367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17207:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1368,"nodeType":"ExpressionStatement","src":"17207:45:2"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1338,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17065:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1339,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1323,"src":"17069:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17077:6:2","memberName":"length","nodeType":"MemberAccess","src":"17069:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17065:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1370,"initializationExpression":{"assignments":[1335],"declarations":[{"constant":false,"id":1335,"mutability":"mutable","name":"i","nameLocation":"17058:1:2","nodeType":"VariableDeclaration","scope":1370,"src":"17050:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1334,"name":"uint256","nodeType":"ElementaryTypeName","src":"17050:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1337,"initialValue":{"hexValue":"30","id":1336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17062:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17050:13:2"},"loopExpression":{"expression":{"id":1343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17085:3:2","subExpression":{"id":1342,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17087:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1344,"nodeType":"ExpressionStatement","src":"17085:3:2"},"nodeType":"ForStatement","src":"17045:218:2"}]},"documentation":{"id":1318,"nodeType":"StructuredDocumentation","src":"16383:424:2","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} or {_execute}."},"id":1372,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"16821:18:2","nodeType":"FunctionDefinition","parameters":{"id":1332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1372,"src":"16849:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1319,"name":"uint256","nodeType":"ElementaryTypeName","src":"16849:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1323,"mutability":"mutable","name":"targets","nameLocation":"16900:7:2","nodeType":"VariableDeclaration","scope":1372,"src":"16883:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1321,"name":"address","nodeType":"ElementaryTypeName","src":"16883:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1322,"nodeType":"ArrayTypeName","src":"16883:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1326,"mutability":"mutable","name":"values","nameLocation":"16934:6:2","nodeType":"VariableDeclaration","scope":1372,"src":"16917:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1324,"name":"uint256","nodeType":"ElementaryTypeName","src":"16917:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1325,"nodeType":"ArrayTypeName","src":"16917:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1329,"mutability":"mutable","name":"calldatas","nameLocation":"16965:9:2","nodeType":"VariableDeclaration","scope":1372,"src":"16950:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1327,"name":"bytes","nodeType":"ElementaryTypeName","src":"16950:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1328,"nodeType":"ArrayTypeName","src":"16950:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1331,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1372,"src":"16984:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1330,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16984:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16839:178:2"},"returnParameters":{"id":1333,"nodeType":"ParameterList","parameters":[],"src":"17035:0:2"},"scope":2134,"src":"16812:457:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2519],"body":{"id":1426,"nodeType":"Block","src":"17516:788:2","statements":[{"assignments":[1390],"declarations":[{"constant":false,"id":1390,"mutability":"mutable","name":"proposalId","nameLocation":"17865:10:2","nodeType":"VariableDeclaration","scope":1426,"src":"17857:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1389,"name":"uint256","nodeType":"ElementaryTypeName","src":"17857:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1397,"initialValue":{"arguments":[{"id":1392,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1376,"src":"17891:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1393,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1379,"src":"17900:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1394,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1382,"src":"17908:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1395,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"17919:15:2","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":1391,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"17878:12:2","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":1396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17878:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17857:78:2"},{"expression":{"arguments":[{"id":1399,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18048:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1401,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"18079:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18093:7:2","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2146,"src":"18079:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1400,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"18060:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18060:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1398,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"18027:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18027:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1405,"nodeType":"ExpressionStatement","src":"18027:75:2"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1406,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"18116:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18116:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1409,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18149:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1408,"name":"proposalProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"18132:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":1410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18132:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18116:44:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1418,"nodeType":"IfStatement","src":"18112:116:2","trueBody":{"id":1417,"nodeType":"Block","src":"18162:66:2","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":1413,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"18204:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18204:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1412,"name":"GovernorOnlyProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"18183:20:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18183:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1416,"nodeType":"RevertStatement","src":"18176:41:2"}]}},{"expression":{"arguments":[{"id":1420,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1376,"src":"18253:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1421,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1379,"src":"18262:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1422,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1382,"src":"18270:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1423,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"18281:15:2","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":1419,"name":"_cancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18245:7:2","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":1424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18245:52:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1388,"id":1425,"nodeType":"Return","src":"18238:59:2"}]},"documentation":{"id":1373,"nodeType":"StructuredDocumentation","src":"17275:47:2","text":" @dev See {IGovernor-cancel}."},"functionSelector":"452115d6","id":1427,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"17336:6:2","nodeType":"FunctionDefinition","parameters":{"id":1385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1376,"mutability":"mutable","name":"targets","nameLocation":"17369:7:2","nodeType":"VariableDeclaration","scope":1427,"src":"17352:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1374,"name":"address","nodeType":"ElementaryTypeName","src":"17352:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1375,"nodeType":"ArrayTypeName","src":"17352:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1379,"mutability":"mutable","name":"values","nameLocation":"17403:6:2","nodeType":"VariableDeclaration","scope":1427,"src":"17386:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1377,"name":"uint256","nodeType":"ElementaryTypeName","src":"17386:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1378,"nodeType":"ArrayTypeName","src":"17386:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1382,"mutability":"mutable","name":"calldatas","nameLocation":"17434:9:2","nodeType":"VariableDeclaration","scope":1427,"src":"17419:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1380,"name":"bytes","nodeType":"ElementaryTypeName","src":"17419:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1381,"nodeType":"ArrayTypeName","src":"17419:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1384,"mutability":"mutable","name":"descriptionHash","nameLocation":"17461:15:2","nodeType":"VariableDeclaration","scope":1427,"src":"17453:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1383,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17453:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17342:140:2"},"returnParameters":{"id":1388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1387,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1427,"src":"17507:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1386,"name":"uint256","nodeType":"ElementaryTypeName","src":"17507:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17506:9:2"},"scope":2134,"src":"17327:977:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1486,"nodeType":"Block","src":"18781:502:2","statements":[{"assignments":[1445],"declarations":[{"constant":false,"id":1445,"mutability":"mutable","name":"proposalId","nameLocation":"18799:10:2","nodeType":"VariableDeclaration","scope":1486,"src":"18791:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1444,"name":"uint256","nodeType":"ElementaryTypeName","src":"18791:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1452,"initialValue":{"arguments":[{"id":1447,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1431,"src":"18825:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1448,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1434,"src":"18834:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1449,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1437,"src":"18842:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1450,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1439,"src":"18853:15:2","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":1446,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"18812:12:2","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":1451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18812:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18791:78:2"},{"expression":{"arguments":[{"id":1454,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"18914:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1455,"name":"ALL_PROPOSAL_STATES_BITMAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":468,"src":"18938:26:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1457,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19002:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19016:8:2","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"19002:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1456,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"18983:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18983:42:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:87:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1462,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19063:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19077:7:2","memberName":"Expired","nodeType":"MemberAccess","referencedDeclaration":2152,"src":"19063:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1461,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"19044:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19044:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:147:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1467,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19123:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19137:8:2","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"19123:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1466,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"19104:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19104:42:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:208:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1453,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"18880:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18880:276:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1472,"nodeType":"ExpressionStatement","src":"18880:276:2"},{"expression":{"id":1478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1473,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"19167:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1475,"indexExpression":{"id":1474,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19178:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19167:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19190:8:2","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":445,"src":"19167:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19201:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"19167:38:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"ExpressionStatement","src":"19167:38:2"},{"eventCall":{"arguments":[{"id":1481,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19237:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1480,"name":"ProposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"19220:16:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19220:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1483,"nodeType":"EmitStatement","src":"19215:33:2"},{"expression":{"id":1484,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19266:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1443,"id":1485,"nodeType":"Return","src":"19259:17:2"}]},"documentation":{"id":1428,"nodeType":"StructuredDocumentation","src":"18310:274:2","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":1487,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"18598:7:2","nodeType":"FunctionDefinition","parameters":{"id":1440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1431,"mutability":"mutable","name":"targets","nameLocation":"18632:7:2","nodeType":"VariableDeclaration","scope":1487,"src":"18615:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1429,"name":"address","nodeType":"ElementaryTypeName","src":"18615:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1430,"nodeType":"ArrayTypeName","src":"18615:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1434,"mutability":"mutable","name":"values","nameLocation":"18666:6:2","nodeType":"VariableDeclaration","scope":1487,"src":"18649:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1432,"name":"uint256","nodeType":"ElementaryTypeName","src":"18649:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1433,"nodeType":"ArrayTypeName","src":"18649:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1437,"mutability":"mutable","name":"calldatas","nameLocation":"18697:9:2","nodeType":"VariableDeclaration","scope":1487,"src":"18682:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1435,"name":"bytes","nodeType":"ElementaryTypeName","src":"18682:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1436,"nodeType":"ArrayTypeName","src":"18682:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1439,"mutability":"mutable","name":"descriptionHash","nameLocation":"18724:15:2","nodeType":"VariableDeclaration","scope":1487,"src":"18716:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1438,"name":"bytes32","nodeType":"ElementaryTypeName","src":"18716:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"18605:140:2"},"returnParameters":{"id":1443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1487,"src":"18772:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1441,"name":"uint256","nodeType":"ElementaryTypeName","src":"18772:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18771:9:2"},"scope":2134,"src":"18589:694:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2429],"body":{"id":1504,"nodeType":"Block","src":"19435:71:2","statements":[{"expression":{"arguments":[{"id":1498,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1490,"src":"19462:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1499,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"19471:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1500,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":889,"src":"19482:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19482:16:2","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":1497,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"19452:9:2","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":1502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19452:47:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1496,"id":1503,"nodeType":"Return","src":"19445:54:2"}]},"documentation":{"id":1488,"nodeType":"StructuredDocumentation","src":"19289:49:2","text":" @dev See {IGovernor-getVotes}."},"functionSelector":"eb9019d4","id":1505,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"19352:8:2","nodeType":"FunctionDefinition","parameters":{"id":1493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1490,"mutability":"mutable","name":"account","nameLocation":"19369:7:2","nodeType":"VariableDeclaration","scope":1505,"src":"19361:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1489,"name":"address","nodeType":"ElementaryTypeName","src":"19361:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1492,"mutability":"mutable","name":"timepoint","nameLocation":"19386:9:2","nodeType":"VariableDeclaration","scope":1505,"src":"19378:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1491,"name":"uint256","nodeType":"ElementaryTypeName","src":"19378:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19360:36:2"},"returnParameters":{"id":1496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1505,"src":"19426:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1494,"name":"uint256","nodeType":"ElementaryTypeName","src":"19426:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19425:9:2"},"scope":2134,"src":"19343:163:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2441],"body":{"id":1523,"nodeType":"Block","src":"19729:61:2","statements":[{"expression":{"arguments":[{"id":1518,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1508,"src":"19756:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1519,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"19765:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1520,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"19776:6:2","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":1517,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"19746:9:2","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":1521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19746:37:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1516,"id":1522,"nodeType":"Return","src":"19739:44:2"}]},"documentation":{"id":1506,"nodeType":"StructuredDocumentation","src":"19512:59:2","text":" @dev See {IGovernor-getVotesWithParams}."},"functionSelector":"9a802a6d","id":1524,"implemented":true,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"19585:18:2","nodeType":"FunctionDefinition","parameters":{"id":1513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1508,"mutability":"mutable","name":"account","nameLocation":"19621:7:2","nodeType":"VariableDeclaration","scope":1524,"src":"19613:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1507,"name":"address","nodeType":"ElementaryTypeName","src":"19613:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1510,"mutability":"mutable","name":"timepoint","nameLocation":"19646:9:2","nodeType":"VariableDeclaration","scope":1524,"src":"19638:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1509,"name":"uint256","nodeType":"ElementaryTypeName","src":"19638:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1512,"mutability":"mutable","name":"params","nameLocation":"19678:6:2","nodeType":"VariableDeclaration","scope":1524,"src":"19665:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1511,"name":"bytes","nodeType":"ElementaryTypeName","src":"19665:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19603:87:2"},"returnParameters":{"id":1516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1515,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1524,"src":"19720:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1514,"name":"uint256","nodeType":"ElementaryTypeName","src":"19720:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19719:9:2"},"scope":2134,"src":"19576:214:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2529],"body":{"id":1546,"nodeType":"Block","src":"19936:103:2","statements":[{"assignments":[1535],"declarations":[{"constant":false,"id":1535,"mutability":"mutable","name":"voter","nameLocation":"19954:5:2","nodeType":"VariableDeclaration","scope":1546,"src":"19946:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1534,"name":"address","nodeType":"ElementaryTypeName","src":"19946:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1538,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1536,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"19962:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19962:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19946:28:2"},{"expression":{"arguments":[{"id":1540,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1527,"src":"20001:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1541,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"20013:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1542,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1529,"src":"20020:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20029:2:2","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":1539,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"19991:9:2","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":1544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19991:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1533,"id":1545,"nodeType":"Return","src":"19984:48:2"}]},"documentation":{"id":1525,"nodeType":"StructuredDocumentation","src":"19796:49:2","text":" @dev See {IGovernor-castVote}."},"functionSelector":"56781388","id":1547,"implemented":true,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"19859:8:2","nodeType":"FunctionDefinition","parameters":{"id":1530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1527,"mutability":"mutable","name":"proposalId","nameLocation":"19876:10:2","nodeType":"VariableDeclaration","scope":1547,"src":"19868:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1526,"name":"uint256","nodeType":"ElementaryTypeName","src":"19868:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1529,"mutability":"mutable","name":"support","nameLocation":"19894:7:2","nodeType":"VariableDeclaration","scope":1547,"src":"19888:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1528,"name":"uint8","nodeType":"ElementaryTypeName","src":"19888:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19867:35:2"},"returnParameters":{"id":1533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1532,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1547,"src":"19927:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1531,"name":"uint256","nodeType":"ElementaryTypeName","src":"19927:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19926:9:2"},"scope":2134,"src":"19850:189:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2541],"body":{"id":1571,"nodeType":"Block","src":"20259:107:2","statements":[{"assignments":[1560],"declarations":[{"constant":false,"id":1560,"mutability":"mutable","name":"voter","nameLocation":"20277:5:2","nodeType":"VariableDeclaration","scope":1571,"src":"20269:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1559,"name":"address","nodeType":"ElementaryTypeName","src":"20269:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1563,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1561,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"20285:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20285:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20269:28:2"},{"expression":{"arguments":[{"id":1565,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1550,"src":"20324:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1566,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1560,"src":"20336:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1567,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1552,"src":"20343:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1568,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1554,"src":"20352:6:2","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":1564,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"20314:9:2","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":1569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20314:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1558,"id":1570,"nodeType":"Return","src":"20307:52:2"}]},"documentation":{"id":1548,"nodeType":"StructuredDocumentation","src":"20045:59:2","text":" @dev See {IGovernor-castVoteWithReason}."},"functionSelector":"7b3c71d3","id":1572,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"20118:18:2","nodeType":"FunctionDefinition","parameters":{"id":1555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1550,"mutability":"mutable","name":"proposalId","nameLocation":"20154:10:2","nodeType":"VariableDeclaration","scope":1572,"src":"20146:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1549,"name":"uint256","nodeType":"ElementaryTypeName","src":"20146:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1552,"mutability":"mutable","name":"support","nameLocation":"20180:7:2","nodeType":"VariableDeclaration","scope":1572,"src":"20174:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1551,"name":"uint8","nodeType":"ElementaryTypeName","src":"20174:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1554,"mutability":"mutable","name":"reason","nameLocation":"20213:6:2","nodeType":"VariableDeclaration","scope":1572,"src":"20197:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1553,"name":"string","nodeType":"ElementaryTypeName","src":"20197:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"20136:89:2"},"returnParameters":{"id":1558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1572,"src":"20250:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1556,"name":"uint256","nodeType":"ElementaryTypeName","src":"20250:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20249:9:2"},"scope":2134,"src":"20109:257:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2555],"body":{"id":1599,"nodeType":"Block","src":"20633:115:2","statements":[{"assignments":[1587],"declarations":[{"constant":false,"id":1587,"mutability":"mutable","name":"voter","nameLocation":"20651:5:2","nodeType":"VariableDeclaration","scope":1599,"src":"20643:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1586,"name":"address","nodeType":"ElementaryTypeName","src":"20643:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1590,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1588,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"20659:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20659:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20643:28:2"},{"expression":{"arguments":[{"id":1592,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1575,"src":"20698:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1593,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"20710:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1594,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"20717:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1595,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1579,"src":"20726:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1596,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"20734:6:2","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":1591,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"20688:9:2","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":1597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20688:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1585,"id":1598,"nodeType":"Return","src":"20681:60:2"}]},"documentation":{"id":1573,"nodeType":"StructuredDocumentation","src":"20372:68:2","text":" @dev See {IGovernor-castVoteWithReasonAndParams}."},"functionSelector":"5f398a14","id":1600,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"20454:27:2","nodeType":"FunctionDefinition","parameters":{"id":1582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1575,"mutability":"mutable","name":"proposalId","nameLocation":"20499:10:2","nodeType":"VariableDeclaration","scope":1600,"src":"20491:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1574,"name":"uint256","nodeType":"ElementaryTypeName","src":"20491:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1577,"mutability":"mutable","name":"support","nameLocation":"20525:7:2","nodeType":"VariableDeclaration","scope":1600,"src":"20519:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1576,"name":"uint8","nodeType":"ElementaryTypeName","src":"20519:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1579,"mutability":"mutable","name":"reason","nameLocation":"20558:6:2","nodeType":"VariableDeclaration","scope":1600,"src":"20542:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1578,"name":"string","nodeType":"ElementaryTypeName","src":"20542:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1581,"mutability":"mutable","name":"params","nameLocation":"20587:6:2","nodeType":"VariableDeclaration","scope":1600,"src":"20574:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1580,"name":"bytes","nodeType":"ElementaryTypeName","src":"20574:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20481:118:2"},"returnParameters":{"id":1585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1600,"src":"20624:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1583,"name":"uint256","nodeType":"ElementaryTypeName","src":"20624:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20623:9:2"},"scope":2134,"src":"20445:303:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2569],"body":{"id":1651,"nodeType":"Block","src":"20981:378:2","statements":[{"assignments":[1615],"declarations":[{"constant":false,"id":1615,"mutability":"mutable","name":"valid","nameLocation":"20996:5:2","nodeType":"VariableDeclaration","scope":1651,"src":"20991:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1614,"name":"bool","nodeType":"ElementaryTypeName","src":"20991:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1635,"initialValue":{"arguments":[{"id":1618,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21054:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1623,"name":"BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"21111:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1624,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"21128:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1625,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"21140:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1626,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21149:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1628,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21166:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1627,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"21156:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21156:16:2","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":1621,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21100:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21104:6:2","memberName":"encode","nodeType":"MemberAccess","src":"21100:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21100:73:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1620,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21090:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21090:84:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1619,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"21073:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21073:102:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1633,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1609,"src":"21189:9:2","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":1616,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"21004:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9158_$","typeString":"type(library SignatureChecker)"}},"id":1617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21021:19:2","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9105,"src":"21004:36:2","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":1634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21004:204:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"20991:217:2"},{"condition":{"id":1637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21223:6:2","subExpression":{"id":1636,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1615,"src":"21224:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1643,"nodeType":"IfStatement","src":"21219:75:2","trueBody":{"id":1642,"nodeType":"Block","src":"21231:63:2","statements":[{"errorCall":{"arguments":[{"id":1639,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21277:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1638,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"21252:24:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21252:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1641,"nodeType":"RevertStatement","src":"21245:38:2"}]}},{"expression":{"arguments":[{"id":1645,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"21321:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1646,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21333:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1647,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"21340:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21349:2:2","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":1644,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"21311:9:2","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":1649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21311:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1613,"id":1650,"nodeType":"Return","src":"21304:48:2"}]},"documentation":{"id":1601,"nodeType":"StructuredDocumentation","src":"20754:54:2","text":" @dev See {IGovernor-castVoteBySig}."},"functionSelector":"8ff262e3","id":1652,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"20822:13:2","nodeType":"FunctionDefinition","parameters":{"id":1610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1603,"mutability":"mutable","name":"proposalId","nameLocation":"20853:10:2","nodeType":"VariableDeclaration","scope":1652,"src":"20845:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1602,"name":"uint256","nodeType":"ElementaryTypeName","src":"20845:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1605,"mutability":"mutable","name":"support","nameLocation":"20879:7:2","nodeType":"VariableDeclaration","scope":1652,"src":"20873:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1604,"name":"uint8","nodeType":"ElementaryTypeName","src":"20873:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1607,"mutability":"mutable","name":"voter","nameLocation":"20904:5:2","nodeType":"VariableDeclaration","scope":1652,"src":"20896:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1606,"name":"address","nodeType":"ElementaryTypeName","src":"20896:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1609,"mutability":"mutable","name":"signature","nameLocation":"20932:9:2","nodeType":"VariableDeclaration","scope":1652,"src":"20919:22:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1608,"name":"bytes","nodeType":"ElementaryTypeName","src":"20919:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20835:112:2"},"returnParameters":{"id":1613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1652,"src":"20972:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1611,"name":"uint256","nodeType":"ElementaryTypeName","src":"20972:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20971:9:2"},"scope":2134,"src":"20813:546:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2587],"body":{"id":1717,"nodeType":"Block","src":"21691:702:2","statements":[{"assignments":[1671],"declarations":[{"constant":false,"id":1671,"mutability":"mutable","name":"valid","nameLocation":"21706:5:2","nodeType":"VariableDeclaration","scope":1717,"src":"21701:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1670,"name":"bool","nodeType":"ElementaryTypeName","src":"21701:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1700,"initialValue":{"arguments":[{"id":1674,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"21764:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1679,"name":"EXTENDED_BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":435,"src":"21884:24:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1680,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"21934:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1681,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"21970:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1682,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22003:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1684,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22044:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1683,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"22034:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22034:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":1689,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1661,"src":"22092:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22086:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1687,"name":"bytes","nodeType":"ElementaryTypeName","src":"22086:5:2","typeDescriptions":{}}},"id":1690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22086:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1686,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"22076:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22076:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":1693,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"22136:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1692,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"22126:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22126:17:2","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":1677,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21848:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21852:6:2","memberName":"encode","nodeType":"MemberAccess","src":"21848:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21848:317:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1676,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21817:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21817:366:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1675,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"21783:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21783:414:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1698,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1665,"src":"22211:9:2","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":1672,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"21714:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9158_$","typeString":"type(library SignatureChecker)"}},"id":1673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21731:19:2","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9105,"src":"21714:36:2","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":1699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21714:516:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"21701:529:2"},{"condition":{"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22245:6:2","subExpression":{"id":1701,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1671,"src":"22246:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1708,"nodeType":"IfStatement","src":"22241:75:2","trueBody":{"id":1707,"nodeType":"Block","src":"22253:63:2","statements":[{"errorCall":{"arguments":[{"id":1704,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22299:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1703,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"22274:24:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22274:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1706,"nodeType":"RevertStatement","src":"22267:38:2"}]}},{"expression":{"arguments":[{"id":1710,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"22343:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1711,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22355:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1712,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"22362:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1713,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1661,"src":"22371:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1714,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"22379:6:2","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":1709,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"22333:9:2","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":1715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22333:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1669,"id":1716,"nodeType":"Return","src":"22326:60:2"}]},"documentation":{"id":1653,"nodeType":"StructuredDocumentation","src":"21365:73:2","text":" @dev See {IGovernor-castVoteWithReasonAndParamsBySig}."},"functionSelector":"5b8d0e0d","id":1718,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"21452:32:2","nodeType":"FunctionDefinition","parameters":{"id":1666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1655,"mutability":"mutable","name":"proposalId","nameLocation":"21502:10:2","nodeType":"VariableDeclaration","scope":1718,"src":"21494:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1654,"name":"uint256","nodeType":"ElementaryTypeName","src":"21494:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1657,"mutability":"mutable","name":"support","nameLocation":"21528:7:2","nodeType":"VariableDeclaration","scope":1718,"src":"21522:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1656,"name":"uint8","nodeType":"ElementaryTypeName","src":"21522:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1659,"mutability":"mutable","name":"voter","nameLocation":"21553:5:2","nodeType":"VariableDeclaration","scope":1718,"src":"21545:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1658,"name":"address","nodeType":"ElementaryTypeName","src":"21545:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1661,"mutability":"mutable","name":"reason","nameLocation":"21584:6:2","nodeType":"VariableDeclaration","scope":1718,"src":"21568:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1660,"name":"string","nodeType":"ElementaryTypeName","src":"21568:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1663,"mutability":"mutable","name":"params","nameLocation":"21613:6:2","nodeType":"VariableDeclaration","scope":1718,"src":"21600:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1662,"name":"bytes","nodeType":"ElementaryTypeName","src":"21600:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1665,"mutability":"mutable","name":"signature","nameLocation":"21642:9:2","nodeType":"VariableDeclaration","scope":1718,"src":"21629:22:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1664,"name":"bytes","nodeType":"ElementaryTypeName","src":"21629:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21484:173:2"},"returnParameters":{"id":1669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1718,"src":"21682:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1667,"name":"uint256","nodeType":"ElementaryTypeName","src":"21682:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21681:9:2"},"scope":2134,"src":"21443:950:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1741,"nodeType":"Block","src":"22868:89:2","statements":[{"expression":{"arguments":[{"id":1733,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1721,"src":"22895:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1734,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1723,"src":"22907:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1735,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1725,"src":"22916:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1736,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1727,"src":"22925:6:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1737,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":889,"src":"22933:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22933:16:2","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":1732,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"22885:9:2","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":1739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22885:65:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1731,"id":1740,"nodeType":"Return","src":"22878:72:2"}]},"documentation":{"id":1719,"nodeType":"StructuredDocumentation","src":"22399:298:2","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":1742,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"22711:9:2","nodeType":"FunctionDefinition","parameters":{"id":1728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1721,"mutability":"mutable","name":"proposalId","nameLocation":"22738:10:2","nodeType":"VariableDeclaration","scope":1742,"src":"22730:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1720,"name":"uint256","nodeType":"ElementaryTypeName","src":"22730:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1723,"mutability":"mutable","name":"account","nameLocation":"22766:7:2","nodeType":"VariableDeclaration","scope":1742,"src":"22758:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1722,"name":"address","nodeType":"ElementaryTypeName","src":"22758:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1725,"mutability":"mutable","name":"support","nameLocation":"22789:7:2","nodeType":"VariableDeclaration","scope":1742,"src":"22783:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1724,"name":"uint8","nodeType":"ElementaryTypeName","src":"22783:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1727,"mutability":"mutable","name":"reason","nameLocation":"22820:6:2","nodeType":"VariableDeclaration","scope":1742,"src":"22806:20:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1726,"name":"string","nodeType":"ElementaryTypeName","src":"22806:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"22720:112:2"},"returnParameters":{"id":1731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1730,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1742,"src":"22859:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1729,"name":"uint256","nodeType":"ElementaryTypeName","src":"22859:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22858:9:2"},"scope":2134,"src":"22702:255:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1816,"nodeType":"Block","src":"23434:574:2","statements":[{"expression":{"arguments":[{"id":1759,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23465:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1761,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"23496:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1762,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23510:6:2","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2147,"src":"23496:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1760,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"23477:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23477:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1758,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"23444:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23444:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1765,"nodeType":"ExpressionStatement","src":"23444:74:2"},{"assignments":[1767],"declarations":[{"constant":false,"id":1767,"mutability":"mutable","name":"totalWeight","nameLocation":"23537:11:2","nodeType":"VariableDeclaration","scope":1816,"src":"23529:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1766,"name":"uint256","nodeType":"ElementaryTypeName","src":"23529:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1775,"initialValue":{"arguments":[{"id":1769,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23561:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1771,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23587:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1770,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"23570:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":1772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23570:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1773,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23600:6:2","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":1768,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"23551:9:2","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":1774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23551:56:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23529:78:2"},{"assignments":[1777],"declarations":[{"constant":false,"id":1777,"mutability":"mutable","name":"votedWeight","nameLocation":"23625:11:2","nodeType":"VariableDeclaration","scope":1816,"src":"23617:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1776,"name":"uint256","nodeType":"ElementaryTypeName","src":"23617:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1785,"initialValue":{"arguments":[{"id":1779,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23650:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1780,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23662:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1781,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23671:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1782,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"23680:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1783,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23693:6:2","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":1778,"name":"_countVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"23639:10:2","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":1784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23639:61:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23617:83:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1786,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23715:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23722:6:2","memberName":"length","nodeType":"MemberAccess","src":"23715:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23732:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23715:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1808,"nodeType":"Block","src":"23830:107:2","statements":[{"eventCall":{"arguments":[{"id":1800,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23868:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1801,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23877:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1802,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23889:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1803,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23898:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1804,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1751,"src":"23911:6:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1805,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23919:6:2","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":1799,"name":"VoteCastWithParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"23849:18:2","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":1806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23849:77:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1807,"nodeType":"EmitStatement","src":"23844:82:2"}]},"id":1809,"nodeType":"IfStatement","src":"23711:226:2","trueBody":{"id":1798,"nodeType":"Block","src":"23735:89:2","statements":[{"eventCall":{"arguments":[{"id":1791,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23763:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1792,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23772:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1793,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23784:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1794,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23793:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1795,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1751,"src":"23806:6:2","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":1790,"name":"VoteCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2294,"src":"23754:8:2","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":1796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23754:59:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1797,"nodeType":"EmitStatement","src":"23749:64:2"}]}},{"expression":{"arguments":[{"id":1811,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23961:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1810,"name":"_tallyUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":880,"src":"23947:13:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23947:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1813,"nodeType":"ExpressionStatement","src":"23947:25:2"},{"expression":{"id":1814,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23990:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1757,"id":1815,"nodeType":"Return","src":"23983:18:2"}]},"documentation":{"id":1743,"nodeType":"StructuredDocumentation","src":"22963:271:2","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":1817,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"23248:9:2","nodeType":"FunctionDefinition","parameters":{"id":1754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1745,"mutability":"mutable","name":"proposalId","nameLocation":"23275:10:2","nodeType":"VariableDeclaration","scope":1817,"src":"23267:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1744,"name":"uint256","nodeType":"ElementaryTypeName","src":"23267:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1747,"mutability":"mutable","name":"account","nameLocation":"23303:7:2","nodeType":"VariableDeclaration","scope":1817,"src":"23295:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1746,"name":"address","nodeType":"ElementaryTypeName","src":"23295:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1749,"mutability":"mutable","name":"support","nameLocation":"23326:7:2","nodeType":"VariableDeclaration","scope":1817,"src":"23320:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1748,"name":"uint8","nodeType":"ElementaryTypeName","src":"23320:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1751,"mutability":"mutable","name":"reason","nameLocation":"23357:6:2","nodeType":"VariableDeclaration","scope":1817,"src":"23343:20:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1750,"name":"string","nodeType":"ElementaryTypeName","src":"23343:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1753,"mutability":"mutable","name":"params","nameLocation":"23386:6:2","nodeType":"VariableDeclaration","scope":1817,"src":"23373:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1752,"name":"bytes","nodeType":"ElementaryTypeName","src":"23373:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23257:141:2"},"returnParameters":{"id":1757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1817,"src":"23425:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1755,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:2"},"scope":2134,"src":"23239:769:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1847,"nodeType":"Block","src":"24566:145:2","statements":[{"assignments":[1830,1832],"declarations":[{"constant":false,"id":1830,"mutability":"mutable","name":"success","nameLocation":"24582:7:2","nodeType":"VariableDeclaration","scope":1847,"src":"24577:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1829,"name":"bool","nodeType":"ElementaryTypeName","src":"24577:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1832,"mutability":"mutable","name":"returndata","nameLocation":"24604:10:2","nodeType":"VariableDeclaration","scope":1847,"src":"24591:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1831,"name":"bytes","nodeType":"ElementaryTypeName","src":"24591:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1839,"initialValue":{"arguments":[{"id":1837,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1824,"src":"24644:4:2","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":1833,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"24618:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24625:4:2","memberName":"call","nodeType":"MemberAccess","src":"24618:11:2","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":1836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1835,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1822,"src":"24637:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"24618:25:2","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":1838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24618:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"24576:73:2"},{"expression":{"arguments":[{"id":1843,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"24684:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1844,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1832,"src":"24693:10:2","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":1840,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"24659:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24667:16:2","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"24659:24:2","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":1845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24659:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1846,"nodeType":"ExpressionStatement","src":"24659:45:2"}]},"documentation":{"id":1818,"nodeType":"StructuredDocumentation","src":"24014:440:2","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":1848,"implemented":true,"kind":"function","modifiers":[{"id":1827,"kind":"modifierInvocation","modifierName":{"id":1826,"name":"onlyGovernance","nameLocations":["24551:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"24551:14:2"},"nodeType":"ModifierInvocation","src":"24551:14:2"}],"name":"relay","nameLocation":"24468:5:2","nodeType":"FunctionDefinition","parameters":{"id":1825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1820,"mutability":"mutable","name":"target","nameLocation":"24482:6:2","nodeType":"VariableDeclaration","scope":1848,"src":"24474:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1819,"name":"address","nodeType":"ElementaryTypeName","src":"24474:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1822,"mutability":"mutable","name":"value","nameLocation":"24498:5:2","nodeType":"VariableDeclaration","scope":1848,"src":"24490:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1821,"name":"uint256","nodeType":"ElementaryTypeName","src":"24490:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1824,"mutability":"mutable","name":"data","nameLocation":"24520:4:2","nodeType":"VariableDeclaration","scope":1848,"src":"24505:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1823,"name":"bytes","nodeType":"ElementaryTypeName","src":"24505:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"24473:52:2"},"returnParameters":{"id":1828,"nodeType":"ParameterList","parameters":[],"src":"24566:0:2"},"scope":2134,"src":"24459:252:2","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":1859,"nodeType":"Block","src":"24960:37:2","statements":[{"expression":{"arguments":[{"id":1856,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24985:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24977:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1854,"name":"address","nodeType":"ElementaryTypeName","src":"24977:7:2","typeDescriptions":{}}},"id":1857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24977:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1853,"id":1858,"nodeType":"Return","src":"24970:20:2"}]},"documentation":{"id":1849,"nodeType":"StructuredDocumentation","src":"24717:177:2","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":1860,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"24908:9:2","nodeType":"FunctionDefinition","parameters":{"id":1850,"nodeType":"ParameterList","parameters":[],"src":"24917:2:2"},"returnParameters":{"id":1853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1860,"src":"24951:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1851,"name":"address","nodeType":"ElementaryTypeName","src":"24951:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24950:9:2"},"scope":2134,"src":"24899:98:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6400],"body":{"id":1890,"nodeType":"Block","src":"25301:154:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1874,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"25315:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25315:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1878,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25338:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1877,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25330:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1876,"name":"address","nodeType":"ElementaryTypeName","src":"25330:7:2","typeDescriptions":{}}},"id":1879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25330:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25315:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1885,"nodeType":"IfStatement","src":"25311:91:2","trueBody":{"id":1884,"nodeType":"Block","src":"25345:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1881,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"25366:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25366:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1883,"nodeType":"RevertStatement","src":"25359:32:2"}]}},{"expression":{"expression":{"expression":{"id":1886,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25418:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25423:16:2","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":1891,"src":"25418:21:2","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":1888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25440:8:2","memberName":"selector","nodeType":"MemberAccess","src":"25418:30:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1873,"id":1889,"nodeType":"Return","src":"25411:37:2"}]},"documentation":{"id":1861,"nodeType":"StructuredDocumentation","src":"25003:194:2","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":1891,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"25211:16:2","nodeType":"FunctionDefinition","parameters":{"id":1870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1863,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25228:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1862,"name":"address","nodeType":"ElementaryTypeName","src":"25228:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1865,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25237:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1864,"name":"address","nodeType":"ElementaryTypeName","src":"25237:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25246:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"25246:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1869,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25255:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1868,"name":"bytes","nodeType":"ElementaryTypeName","src":"25255:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25227:41:2"},"returnParameters":{"id":1873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1872,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25293:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1871,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25293:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"25292:8:2"},"scope":2134,"src":"25202:253:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5532],"body":{"id":1923,"nodeType":"Block","src":"25771:155:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1907,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"25785:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25785:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1911,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25808:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25800:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1909,"name":"address","nodeType":"ElementaryTypeName","src":"25800:7:2","typeDescriptions":{}}},"id":1912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25800:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25785:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1918,"nodeType":"IfStatement","src":"25781:91:2","trueBody":{"id":1917,"nodeType":"Block","src":"25815:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1914,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"25836:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25836:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1916,"nodeType":"RevertStatement","src":"25829:32:2"}]}},{"expression":{"expression":{"expression":{"id":1919,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25888:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25893:17:2","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":1924,"src":"25888:22:2","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":1921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25911:8:2","memberName":"selector","nodeType":"MemberAccess","src":"25888:31:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1906,"id":1922,"nodeType":"Return","src":"25881:38:2"}]},"documentation":{"id":1892,"nodeType":"StructuredDocumentation","src":"25461:196:2","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":1924,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"25671:17:2","nodeType":"FunctionDefinition","parameters":{"id":1903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25689:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1893,"name":"address","nodeType":"ElementaryTypeName","src":"25689:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25698:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1895,"name":"address","nodeType":"ElementaryTypeName","src":"25698:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25707:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1897,"name":"uint256","nodeType":"ElementaryTypeName","src":"25707:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25716:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1899,"name":"uint256","nodeType":"ElementaryTypeName","src":"25716:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1902,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25725:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1901,"name":"bytes","nodeType":"ElementaryTypeName","src":"25725:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25688:50:2"},"returnParameters":{"id":1906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1905,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25763:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1904,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25763:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"25762:8:2"},"scope":2134,"src":"25662:264:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5550],"body":{"id":1958,"nodeType":"Block","src":"26316:160:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1942,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"26330:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26330:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1946,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26353:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26345:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1944,"name":"address","nodeType":"ElementaryTypeName","src":"26345:7:2","typeDescriptions":{}}},"id":1947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26345:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26330:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1953,"nodeType":"IfStatement","src":"26326:91:2","trueBody":{"id":1952,"nodeType":"Block","src":"26360:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1949,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"26381:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26381:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1951,"nodeType":"RevertStatement","src":"26374:32:2"}]}},{"expression":{"expression":{"expression":{"id":1954,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26433:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26438:22:2","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":1959,"src":"26433:27:2","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":1956,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26461:8:2","memberName":"selector","nodeType":"MemberAccess","src":"26433:36:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1941,"id":1957,"nodeType":"Return","src":"26426:43:2"}]},"documentation":{"id":1925,"nodeType":"StructuredDocumentation","src":"25932:201:2","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":1959,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"26147:22:2","nodeType":"FunctionDefinition","parameters":{"id":1938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1927,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26179:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1926,"name":"address","nodeType":"ElementaryTypeName","src":"26179:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1929,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26196:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1928,"name":"address","nodeType":"ElementaryTypeName","src":"26196:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26213:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1930,"name":"uint256","nodeType":"ElementaryTypeName","src":"26213:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1931,"nodeType":"ArrayTypeName","src":"26213:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26239:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1933,"name":"uint256","nodeType":"ElementaryTypeName","src":"26239:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1934,"nodeType":"ArrayTypeName","src":"26239:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1937,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26265:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1936,"name":"bytes","nodeType":"ElementaryTypeName","src":"26265:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"26169:114:2"},"returnParameters":{"id":1941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26308:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1939,"name":"bytes4","nodeType":"ElementaryTypeName","src":"26308:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"26307:8:2"},"scope":2134,"src":"26138:338:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1978,"nodeType":"Block","src":"26975:58:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":1970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27000:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":1973,"name":"proposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"27011:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1972,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27005:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":1971,"name":"uint8","nodeType":"ElementaryTypeName","src":"27005:5:2","typeDescriptions":{}}},"id":1974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27005:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"27000:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26992:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1968,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26992:7:2","typeDescriptions":{}}},"id":1976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26992:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1967,"id":1977,"nodeType":"Return","src":"26985:41:2"}]},"documentation":{"id":1960,"nodeType":"StructuredDocumentation","src":"26482:399:2","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":1979,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"26895:18:2","nodeType":"FunctionDefinition","parameters":{"id":1964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1963,"mutability":"mutable","name":"proposalState","nameLocation":"26928:13:2","nodeType":"VariableDeclaration","scope":1979,"src":"26914:27:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1962,"nodeType":"UserDefinedTypeName","pathNode":{"id":1961,"name":"ProposalState","nameLocations":["26914:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"26914:13:2"},"referencedDeclaration":2154,"src":"26914:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"26913:29:2"},"returnParameters":{"id":1967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1979,"src":"26966:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1965,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26966:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26965:9:2"},"scope":2134,"src":"26886:147:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2017,"nodeType":"Block","src":"27449:273:2","statements":[{"assignments":[1992],"declarations":[{"constant":false,"id":1992,"mutability":"mutable","name":"currentState","nameLocation":"27473:12:2","nodeType":"VariableDeclaration","scope":2017,"src":"27459:26:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1991,"nodeType":"UserDefinedTypeName","pathNode":{"id":1990,"name":"ProposalState","nameLocations":["27459:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"27459:13:2"},"referencedDeclaration":2154,"src":"27459:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":1996,"initialValue":{"arguments":[{"id":1994,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1982,"src":"27494:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1993,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"27488:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":1995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27488:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"27459:46:2"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1998,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27538:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1997,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"27519:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27519:32:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":2000,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"27554:13:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27519:48:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27579: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":2003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27571:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2002,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27571:7:2","typeDescriptions":{}}},"id":2005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27571:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27519:62:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2014,"nodeType":"IfStatement","src":"27515:172:2","trueBody":{"id":2013,"nodeType":"Block","src":"27583:104:2","statements":[{"errorCall":{"arguments":[{"id":2008,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1982,"src":"27636:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2009,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27648:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},{"id":2010,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"27662:13:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2007,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"27604:31:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2154_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":2011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27604:72:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2012,"nodeType":"RevertStatement","src":"27597:79:2"}]}},{"expression":{"id":2015,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27703:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":1989,"id":2016,"nodeType":"Return","src":"27696:19:2"}]},"documentation":{"id":1980,"nodeType":"StructuredDocumentation","src":"27039:294:2","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":2018,"implemented":true,"kind":"function","modifiers":[],"name":"_validateStateBitmap","nameLocation":"27347:20:2","nodeType":"FunctionDefinition","parameters":{"id":1985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1982,"mutability":"mutable","name":"proposalId","nameLocation":"27376:10:2","nodeType":"VariableDeclaration","scope":2018,"src":"27368:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1981,"name":"uint256","nodeType":"ElementaryTypeName","src":"27368:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1984,"mutability":"mutable","name":"allowedStates","nameLocation":"27396:13:2","nodeType":"VariableDeclaration","scope":2018,"src":"27388:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1983,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27388:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"27367:43:2"},"returnParameters":{"id":1989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1988,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2018,"src":"27434:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1987,"nodeType":"UserDefinedTypeName","pathNode":{"id":1986,"name":"ProposalState","nameLocations":["27434:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"27434:13:2"},"referencedDeclaration":2154,"src":"27434:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"27433:15:2"},"scope":2134,"src":"27338:384:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2088,"nodeType":"Block","src":"28992:855:2","statements":[{"id":2087,"nodeType":"UncheckedBlock","src":"29002:839:2","statements":[{"assignments":[2028],"declarations":[{"constant":false,"id":2028,"mutability":"mutable","name":"length","nameLocation":"29034:6:2","nodeType":"VariableDeclaration","scope":2087,"src":"29026:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2027,"name":"uint256","nodeType":"ElementaryTypeName","src":"29026:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2034,"initialValue":{"expression":{"arguments":[{"id":2031,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29049:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29043:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2029,"name":"bytes","nodeType":"ElementaryTypeName","src":"29043:5:2","typeDescriptions":{}}},"id":2032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29043:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29062:6:2","memberName":"length","nodeType":"MemberAccess","src":"29043:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29026:42:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2035,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29157:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3532","id":2036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29166:2:2","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29157:11:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2041,"nodeType":"IfStatement","src":"29153:61:2","trueBody":{"id":2040,"nodeType":"Block","src":"29170:44:2","statements":[{"expression":{"hexValue":"74727565","id":2038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29195:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2026,"id":2039,"nodeType":"Return","src":"29188:11:2"}]}},{"assignments":[2043],"declarations":[{"constant":false,"id":2043,"mutability":"mutable","name":"marker","nameLocation":"29318:6:2","nodeType":"VariableDeclaration","scope":2087,"src":"29310:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":2042,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29310:7:2","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":2056,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":2049,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29364:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29358:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2047,"name":"bytes","nodeType":"ElementaryTypeName","src":"29358:5:2","typeDescriptions":{}}},"id":2050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29358:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2051,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29378:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3532","id":2052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29387:2:2","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29378:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2046,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"29335:22:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":2054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29335:55:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2045,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29327:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2044,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29327:7:2","typeDescriptions":{}}},"id":2055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29327:64:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"29310:81:2"},{"condition":{"commonType":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"id":2062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2057,"name":"marker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"29490:6:2","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"2370726f706f7365723d","id":2060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"29508:12:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""},"value":"#proposer="}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""}],"id":2059,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29500:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2058,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29500:7:2","typeDescriptions":{}}},"id":2061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29500:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"src":"29490:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2066,"nodeType":"IfStatement","src":"29486:81:2","trueBody":{"id":2065,"nodeType":"Block","src":"29523:44:2","statements":[{"expression":{"hexValue":"74727565","id":2063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29548:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2026,"id":2064,"nodeType":"Return","src":"29541:11:2"}]}},{"assignments":[2068,2070],"declarations":[{"constant":false,"id":2068,"mutability":"mutable","name":"success","nameLocation":"29689:7:2","nodeType":"VariableDeclaration","scope":2087,"src":"29684:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2067,"name":"bool","nodeType":"ElementaryTypeName","src":"29684:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2070,"mutability":"mutable","name":"recovered","nameLocation":"29706:9:2","nodeType":"VariableDeclaration","scope":2087,"src":"29698:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2069,"name":"address","nodeType":"ElementaryTypeName","src":"29698:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2079,"initialValue":{"arguments":[{"id":2073,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29743:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2074,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29756:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3432","id":2075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29765:2:2","typeDescriptions":{"typeIdentifier":"t_rational_42_by_1","typeString":"int_const 42"},"value":"42"},"src":"29756:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2077,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29769:6:2","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":2071,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"29719:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$8401_$","typeString":"type(library Strings)"}},"id":2072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29727:15:2","memberName":"tryParseAddress","nodeType":"MemberAccess","referencedDeclaration":8328,"src":"29719:23:2","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":2078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29719:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"29683:93:2"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"29797:8:2","subExpression":{"id":2080,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2068,"src":"29798:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2082,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2070,"src":"29809:9:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2083,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2020,"src":"29822:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"29809:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29797:33:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2026,"id":2086,"nodeType":"Return","src":"29790:40:2"}]}]},"id":2089,"implemented":true,"kind":"function","modifiers":[],"name":"_isValidDescriptionForProposer","nameLocation":"28857:30:2","nodeType":"FunctionDefinition","parameters":{"id":2023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2020,"mutability":"mutable","name":"proposer","nameLocation":"28905:8:2","nodeType":"VariableDeclaration","scope":2089,"src":"28897:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2019,"name":"address","nodeType":"ElementaryTypeName","src":"28897:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2022,"mutability":"mutable","name":"description","nameLocation":"28937:11:2","nodeType":"VariableDeclaration","scope":2089,"src":"28923:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2021,"name":"string","nodeType":"ElementaryTypeName","src":"28923:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"28887:67:2"},"returnParameters":{"id":2026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2089,"src":"28986:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2024,"name":"bool","nodeType":"ElementaryTypeName","src":"28986:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28985:6:2"},"scope":2134,"src":"28848:999:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5365],"documentation":{"id":2090,"nodeType":"StructuredDocumentation","src":"29853:39:2","text":" @inheritdoc IERC6372"},"functionSelector":"91ddadf4","id":2095,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"29906:5:2","nodeType":"FunctionDefinition","parameters":{"id":2091,"nodeType":"ParameterList","parameters":[],"src":"29911:2:2"},"returnParameters":{"id":2094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2095,"src":"29943:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2092,"name":"uint48","nodeType":"ElementaryTypeName","src":"29943:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29942:8:2"},"scope":2134,"src":"29897:54:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5371],"documentation":{"id":2096,"nodeType":"StructuredDocumentation","src":"29957:39:2","text":" @inheritdoc IERC6372"},"functionSelector":"4bf5d7e9","id":2101,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"30063:10:2","nodeType":"FunctionDefinition","parameters":{"id":2097,"nodeType":"ParameterList","parameters":[],"src":"30073:2:2"},"returnParameters":{"id":2100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2099,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2101,"src":"30105:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2098,"name":"string","nodeType":"ElementaryTypeName","src":"30105:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"30104:15:2"},"scope":2134,"src":"30054:66:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2405],"documentation":{"id":2102,"nodeType":"StructuredDocumentation","src":"30126:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"3932abb1","id":2107,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"30180:11:2","nodeType":"FunctionDefinition","parameters":{"id":2103,"nodeType":"ParameterList","parameters":[],"src":"30191:2:2"},"returnParameters":{"id":2106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2107,"src":"30223:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2104,"name":"uint256","nodeType":"ElementaryTypeName","src":"30223:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30222:9:2"},"scope":2134,"src":"30171:61:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2411],"documentation":{"id":2108,"nodeType":"StructuredDocumentation","src":"30238:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"02a251a3","id":2113,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"30292:12:2","nodeType":"FunctionDefinition","parameters":{"id":2109,"nodeType":"ParameterList","parameters":[],"src":"30304:2:2"},"returnParameters":{"id":2112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2111,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2113,"src":"30336:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2110,"name":"uint256","nodeType":"ElementaryTypeName","src":"30336:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30335:9:2"},"scope":2134,"src":"30283:62:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2419],"documentation":{"id":2114,"nodeType":"StructuredDocumentation","src":"30351:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"f8ce560a","id":2121,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"30405:6:2","nodeType":"FunctionDefinition","parameters":{"id":2117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2116,"mutability":"mutable","name":"timepoint","nameLocation":"30420:9:2","nodeType":"VariableDeclaration","scope":2121,"src":"30412:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2115,"name":"uint256","nodeType":"ElementaryTypeName","src":"30412:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30411:19:2"},"returnParameters":{"id":2120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2121,"src":"30460:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2118,"name":"uint256","nodeType":"ElementaryTypeName","src":"30460:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30459:9:2"},"scope":2134,"src":"30396:73:2","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2132,"nodeType":"Block","src":"30854:225:2","statements":[{"AST":{"nodeType":"YulBlock","src":"31003:70:2","statements":[{"nodeType":"YulAssignment","src":"31017:46:2","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"31036:6:2"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"31048:4:2","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"31054:6:2"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31044:3:2"},"nodeType":"YulFunctionCall","src":"31044:17:2"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31032:3:2"},"nodeType":"YulFunctionCall","src":"31032:30:2"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"31026:5:2"},"nodeType":"YulFunctionCall","src":"31026:37:2"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"31017:5:2"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2124,"isOffset":false,"isSlot":false,"src":"31036:6:2","valueSize":1},{"declaration":2126,"isOffset":false,"isSlot":false,"src":"31054:6:2","valueSize":1},{"declaration":2129,"isOffset":false,"isSlot":false,"src":"31017:5:2","valueSize":1}],"flags":["memory-safe"],"id":2131,"nodeType":"InlineAssembly","src":"30978:95:2"}]},"documentation":{"id":2122,"nodeType":"StructuredDocumentation","src":"30475:268:2","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":2133,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"30757:22:2","nodeType":"FunctionDefinition","parameters":{"id":2127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2124,"mutability":"mutable","name":"buffer","nameLocation":"30793:6:2","nodeType":"VariableDeclaration","scope":2133,"src":"30780:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2123,"name":"bytes","nodeType":"ElementaryTypeName","src":"30780:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2126,"mutability":"mutable","name":"offset","nameLocation":"30809:6:2","nodeType":"VariableDeclaration","scope":2133,"src":"30801:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2125,"name":"uint256","nodeType":"ElementaryTypeName","src":"30801:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30779:37:2"},"returnParameters":{"id":2130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2129,"mutability":"mutable","name":"value","nameLocation":"30847:5:2","nodeType":"VariableDeclaration","scope":2133,"src":"30839:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2128,"name":"bytes32","nodeType":"ElementaryTypeName","src":"30839:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"30838:15:2"},"scope":2134,"src":"30748:331:2","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":2135,"src":"1243:29838:2","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"107:30975:2"},"id":2},"@openzeppelin/contracts/governance/IGovernor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","exportedSymbols":{"IERC165":[9194],"IERC6372":[5372],"IGovernor":[2588]},"id":2589,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2136,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:3"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../interfaces/IERC165.sol","id":2138,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2589,"sourceUnit":5322,"src":"134:50:3","symbolAliases":[{"foreign":{"id":2137,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"142:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"../interfaces/IERC6372.sol","id":2140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2589,"sourceUnit":5373,"src":"185:52:3","symbolAliases":[{"foreign":{"id":2139,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"193:8:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2142,"name":"IERC165","nameLocations":["522:7:3"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"522:7:3"},"id":2143,"nodeType":"InheritanceSpecifier","src":"522:7:3"},{"baseName":{"id":2144,"name":"IERC6372","nameLocations":["531:8:3"],"nodeType":"IdentifierPath","referencedDeclaration":5372,"src":"531:8:3"},"id":2145,"nodeType":"InheritanceSpecifier","src":"531:8:3"}],"canonicalName":"IGovernor","contractDependencies":[],"contractKind":"interface","documentation":{"id":2141,"nodeType":"StructuredDocumentation","src":"239:259:3","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":2588,"linearizedBaseContracts":[2588,5372,9194],"name":"IGovernor","nameLocation":"509:9:3","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IGovernor.ProposalState","id":2154,"members":[{"id":2146,"name":"Pending","nameLocation":"575:7:3","nodeType":"EnumValue","src":"575:7:3"},{"id":2147,"name":"Active","nameLocation":"592:6:3","nodeType":"EnumValue","src":"592:6:3"},{"id":2148,"name":"Canceled","nameLocation":"608:8:3","nodeType":"EnumValue","src":"608:8:3"},{"id":2149,"name":"Defeated","nameLocation":"626:8:3","nodeType":"EnumValue","src":"626:8:3"},{"id":2150,"name":"Succeeded","nameLocation":"644:9:3","nodeType":"EnumValue","src":"644:9:3"},{"id":2151,"name":"Queued","nameLocation":"663:6:3","nodeType":"EnumValue","src":"663:6:3"},{"id":2152,"name":"Expired","nameLocation":"679:7:3","nodeType":"EnumValue","src":"679:7:3"},{"id":2153,"name":"Executed","nameLocation":"696:8:3","nodeType":"EnumValue","src":"696:8:3"}],"name":"ProposalState","nameLocation":"551:13:3","nodeType":"EnumDefinition","src":"546:164:3"},{"documentation":{"id":2155,"nodeType":"StructuredDocumentation","src":"716:103:3","text":" @dev Empty proposal or a mismatch between the parameters length for a proposal call."},"errorSelector":"447b05d0","id":2163,"name":"GovernorInvalidProposalLength","nameLocation":"830:29:3","nodeType":"ErrorDefinition","parameters":{"id":2162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2157,"mutability":"mutable","name":"targets","nameLocation":"868:7:3","nodeType":"VariableDeclaration","scope":2163,"src":"860:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2156,"name":"uint256","nodeType":"ElementaryTypeName","src":"860:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2159,"mutability":"mutable","name":"calldatas","nameLocation":"885:9:3","nodeType":"VariableDeclaration","scope":2163,"src":"877:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2158,"name":"uint256","nodeType":"ElementaryTypeName","src":"877:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2161,"mutability":"mutable","name":"values","nameLocation":"904:6:3","nodeType":"VariableDeclaration","scope":2163,"src":"896:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2160,"name":"uint256","nodeType":"ElementaryTypeName","src":"896:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"859:52:3"},"src":"824:88:3"},{"documentation":{"id":2164,"nodeType":"StructuredDocumentation","src":"918:50:3","text":" @dev The vote was already cast."},"errorSelector":"71c6af49","id":2168,"name":"GovernorAlreadyCastVote","nameLocation":"979:23:3","nodeType":"ErrorDefinition","parameters":{"id":2167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2166,"mutability":"mutable","name":"voter","nameLocation":"1011:5:3","nodeType":"VariableDeclaration","scope":2168,"src":"1003:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2165,"name":"address","nodeType":"ElementaryTypeName","src":"1003:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1002:15:3"},"src":"973:45:3"},{"documentation":{"id":2169,"nodeType":"StructuredDocumentation","src":"1024:69:3","text":" @dev Token deposits are disabled in this contract."},"errorSelector":"e90a651e","id":2171,"name":"GovernorDisabledDeposit","nameLocation":"1104:23:3","nodeType":"ErrorDefinition","parameters":{"id":2170,"nodeType":"ParameterList","parameters":[],"src":"1127:2:3"},"src":"1098:32:3"},{"documentation":{"id":2172,"nodeType":"StructuredDocumentation","src":"1136:56:3","text":" @dev The `account` is not a proposer."},"errorSelector":"233d98e3","id":2176,"name":"GovernorOnlyProposer","nameLocation":"1203:20:3","nodeType":"ErrorDefinition","parameters":{"id":2175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2174,"mutability":"mutable","name":"account","nameLocation":"1232:7:3","nodeType":"VariableDeclaration","scope":2176,"src":"1224:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2173,"name":"address","nodeType":"ElementaryTypeName","src":"1224:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1223:17:3"},"src":"1197:44:3"},{"documentation":{"id":2177,"nodeType":"StructuredDocumentation","src":"1247:69:3","text":" @dev The `account` is not the governance executor."},"errorSelector":"47096e47","id":2181,"name":"GovernorOnlyExecutor","nameLocation":"1327:20:3","nodeType":"ErrorDefinition","parameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"account","nameLocation":"1356:7:3","nodeType":"VariableDeclaration","scope":2181,"src":"1348:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2178,"name":"address","nodeType":"ElementaryTypeName","src":"1348:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1347:17:3"},"src":"1321:44:3"},{"documentation":{"id":2182,"nodeType":"StructuredDocumentation","src":"1371:55:3","text":" @dev The `proposalId` doesn't exist."},"errorSelector":"6ad06075","id":2186,"name":"GovernorNonexistentProposal","nameLocation":"1437:27:3","nodeType":"ErrorDefinition","parameters":{"id":2185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2184,"mutability":"mutable","name":"proposalId","nameLocation":"1473:10:3","nodeType":"VariableDeclaration","scope":2186,"src":"1465:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2183,"name":"uint256","nodeType":"ElementaryTypeName","src":"1465:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1464:20:3"},"src":"1431:54:3"},{"documentation":{"id":2187,"nodeType":"StructuredDocumentation","src":"1491:530:3","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":2196,"name":"GovernorUnexpectedProposalState","nameLocation":"2032:31:3","nodeType":"ErrorDefinition","parameters":{"id":2195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2189,"mutability":"mutable","name":"proposalId","nameLocation":"2072:10:3","nodeType":"VariableDeclaration","scope":2196,"src":"2064:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2188,"name":"uint256","nodeType":"ElementaryTypeName","src":"2064:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2192,"mutability":"mutable","name":"current","nameLocation":"2098:7:3","nodeType":"VariableDeclaration","scope":2196,"src":"2084:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2191,"nodeType":"UserDefinedTypeName","pathNode":{"id":2190,"name":"ProposalState","nameLocations":["2084:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2084:13:3"},"referencedDeclaration":2154,"src":"2084:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"},{"constant":false,"id":2194,"mutability":"mutable","name":"expectedStates","nameLocation":"2115:14:3","nodeType":"VariableDeclaration","scope":2196,"src":"2107:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2193,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2107:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2063:67:3"},"src":"2026:105:3"},{"documentation":{"id":2197,"nodeType":"StructuredDocumentation","src":"2137:68:3","text":" @dev The voting period set is not a valid period."},"errorSelector":"f1cfbf05","id":2201,"name":"GovernorInvalidVotingPeriod","nameLocation":"2216:27:3","nodeType":"ErrorDefinition","parameters":{"id":2200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2199,"mutability":"mutable","name":"votingPeriod","nameLocation":"2252:12:3","nodeType":"VariableDeclaration","scope":2201,"src":"2244:20:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2198,"name":"uint256","nodeType":"ElementaryTypeName","src":"2244:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2243:22:3"},"src":"2210:56:3"},{"documentation":{"id":2202,"nodeType":"StructuredDocumentation","src":"2272:93:3","text":" @dev The `proposer` does not have the required votes to create a proposal."},"errorSelector":"c242ee16","id":2210,"name":"GovernorInsufficientProposerVotes","nameLocation":"2376:33:3","nodeType":"ErrorDefinition","parameters":{"id":2209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2204,"mutability":"mutable","name":"proposer","nameLocation":"2418:8:3","nodeType":"VariableDeclaration","scope":2210,"src":"2410:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2203,"name":"address","nodeType":"ElementaryTypeName","src":"2410:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2206,"mutability":"mutable","name":"votes","nameLocation":"2436:5:3","nodeType":"VariableDeclaration","scope":2210,"src":"2428:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2205,"name":"uint256","nodeType":"ElementaryTypeName","src":"2428:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2208,"mutability":"mutable","name":"threshold","nameLocation":"2451:9:3","nodeType":"VariableDeclaration","scope":2210,"src":"2443:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2207,"name":"uint256","nodeType":"ElementaryTypeName","src":"2443:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2409:52:3"},"src":"2370:92:3"},{"documentation":{"id":2211,"nodeType":"StructuredDocumentation","src":"2468:75:3","text":" @dev The `proposer` is not allowed to create a proposal."},"errorSelector":"d9b39557","id":2215,"name":"GovernorRestrictedProposer","nameLocation":"2554:26:3","nodeType":"ErrorDefinition","parameters":{"id":2214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2213,"mutability":"mutable","name":"proposer","nameLocation":"2589:8:3","nodeType":"VariableDeclaration","scope":2215,"src":"2581:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2212,"name":"address","nodeType":"ElementaryTypeName","src":"2581:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2580:18:3"},"src":"2548:51:3"},{"documentation":{"id":2216,"nodeType":"StructuredDocumentation","src":"2605:94:3","text":" @dev The vote type used is not valid for the corresponding counting module."},"errorSelector":"06b337c2","id":2218,"name":"GovernorInvalidVoteType","nameLocation":"2710:23:3","nodeType":"ErrorDefinition","parameters":{"id":2217,"nodeType":"ParameterList","parameters":[],"src":"2733:2:3"},"src":"2704:32:3"},{"documentation":{"id":2219,"nodeType":"StructuredDocumentation","src":"2742:91:3","text":" @dev The provided params buffer is not supported by the counting module."},"errorSelector":"867db771","id":2221,"name":"GovernorInvalidVoteParams","nameLocation":"2844:25:3","nodeType":"ErrorDefinition","parameters":{"id":2220,"nodeType":"ParameterList","parameters":[],"src":"2869:2:3"},"src":"2838:34:3"},{"documentation":{"id":2222,"nodeType":"StructuredDocumentation","src":"2878:112:3","text":" @dev Queue operation is not implemented for this governor. Execute should be called directly."},"errorSelector":"90884a46","id":2224,"name":"GovernorQueueNotImplemented","nameLocation":"3001:27:3","nodeType":"ErrorDefinition","parameters":{"id":2223,"nodeType":"ParameterList","parameters":[],"src":"3028:2:3"},"src":"2995:36:3"},{"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"3037:60:3","text":" @dev The proposal hasn't been queued yet."},"errorSelector":"d5ddb825","id":2229,"name":"GovernorNotQueuedProposal","nameLocation":"3108:25:3","nodeType":"ErrorDefinition","parameters":{"id":2228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"proposalId","nameLocation":"3142:10:3","nodeType":"VariableDeclaration","scope":2229,"src":"3134:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2226,"name":"uint256","nodeType":"ElementaryTypeName","src":"3134:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3133:20:3"},"src":"3102:52:3"},{"documentation":{"id":2230,"nodeType":"StructuredDocumentation","src":"3160:61:3","text":" @dev The proposal has already been queued."},"errorSelector":"f20e7d37","id":2234,"name":"GovernorAlreadyQueuedProposal","nameLocation":"3232:29:3","nodeType":"ErrorDefinition","parameters":{"id":2233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2232,"mutability":"mutable","name":"proposalId","nameLocation":"3270:10:3","nodeType":"VariableDeclaration","scope":2234,"src":"3262:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2231,"name":"uint256","nodeType":"ElementaryTypeName","src":"3262:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:20:3"},"src":"3226:56:3"},{"documentation":{"id":2235,"nodeType":"StructuredDocumentation","src":"3288:184:3","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":2239,"name":"GovernorInvalidSignature","nameLocation":"3483:24:3","nodeType":"ErrorDefinition","parameters":{"id":2238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2237,"mutability":"mutable","name":"voter","nameLocation":"3516:5:3","nodeType":"VariableDeclaration","scope":2239,"src":"3508:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2236,"name":"address","nodeType":"ElementaryTypeName","src":"3508:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3507:15:3"},"src":"3477:46:3"},{"anonymous":false,"documentation":{"id":2240,"nodeType":"StructuredDocumentation","src":"3529:59:3","text":" @dev Emitted when a proposal is created."},"eventSelector":"7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0","id":2264,"name":"ProposalCreated","nameLocation":"3599:15:3","nodeType":"EventDefinition","parameters":{"id":2263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2242,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3632:10:3","nodeType":"VariableDeclaration","scope":2264,"src":"3624:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2241,"name":"uint256","nodeType":"ElementaryTypeName","src":"3624:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2244,"indexed":false,"mutability":"mutable","name":"proposer","nameLocation":"3660:8:3","nodeType":"VariableDeclaration","scope":2264,"src":"3652:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2243,"name":"address","nodeType":"ElementaryTypeName","src":"3652:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2247,"indexed":false,"mutability":"mutable","name":"targets","nameLocation":"3688:7:3","nodeType":"VariableDeclaration","scope":2264,"src":"3678:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2245,"name":"address","nodeType":"ElementaryTypeName","src":"3678:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2246,"nodeType":"ArrayTypeName","src":"3678:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2250,"indexed":false,"mutability":"mutable","name":"values","nameLocation":"3715:6:3","nodeType":"VariableDeclaration","scope":2264,"src":"3705:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2248,"name":"uint256","nodeType":"ElementaryTypeName","src":"3705:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2249,"nodeType":"ArrayTypeName","src":"3705:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2253,"indexed":false,"mutability":"mutable","name":"signatures","nameLocation":"3740:10:3","nodeType":"VariableDeclaration","scope":2264,"src":"3731:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":2251,"name":"string","nodeType":"ElementaryTypeName","src":"3731:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":2252,"nodeType":"ArrayTypeName","src":"3731:8:3","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":2256,"indexed":false,"mutability":"mutable","name":"calldatas","nameLocation":"3768:9:3","nodeType":"VariableDeclaration","scope":2264,"src":"3760:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2254,"name":"bytes","nodeType":"ElementaryTypeName","src":"3760:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2255,"nodeType":"ArrayTypeName","src":"3760:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2258,"indexed":false,"mutability":"mutable","name":"voteStart","nameLocation":"3795:9:3","nodeType":"VariableDeclaration","scope":2264,"src":"3787:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2257,"name":"uint256","nodeType":"ElementaryTypeName","src":"3787:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2260,"indexed":false,"mutability":"mutable","name":"voteEnd","nameLocation":"3822:7:3","nodeType":"VariableDeclaration","scope":2264,"src":"3814:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2259,"name":"uint256","nodeType":"ElementaryTypeName","src":"3814:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2262,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3846:11:3","nodeType":"VariableDeclaration","scope":2264,"src":"3839:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2261,"name":"string","nodeType":"ElementaryTypeName","src":"3839:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3614:249:3"},"src":"3593:271:3"},{"anonymous":false,"documentation":{"id":2265,"nodeType":"StructuredDocumentation","src":"3870:58:3","text":" @dev Emitted when a proposal is queued."},"eventSelector":"9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892","id":2271,"name":"ProposalQueued","nameLocation":"3939:14:3","nodeType":"EventDefinition","parameters":{"id":2270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2267,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3962:10:3","nodeType":"VariableDeclaration","scope":2271,"src":"3954:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2266,"name":"uint256","nodeType":"ElementaryTypeName","src":"3954:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2269,"indexed":false,"mutability":"mutable","name":"etaSeconds","nameLocation":"3982:10:3","nodeType":"VariableDeclaration","scope":2271,"src":"3974:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3974:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3953:40:3"},"src":"3933:61:3"},{"anonymous":false,"documentation":{"id":2272,"nodeType":"StructuredDocumentation","src":"4000:60:3","text":" @dev Emitted when a proposal is executed."},"eventSelector":"712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f","id":2276,"name":"ProposalExecuted","nameLocation":"4071:16:3","nodeType":"EventDefinition","parameters":{"id":2275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2274,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4096:10:3","nodeType":"VariableDeclaration","scope":2276,"src":"4088:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2273,"name":"uint256","nodeType":"ElementaryTypeName","src":"4088:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4087:20:3"},"src":"4065:43:3"},{"anonymous":false,"documentation":{"id":2277,"nodeType":"StructuredDocumentation","src":"4114:60:3","text":" @dev Emitted when a proposal is canceled."},"eventSelector":"789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c","id":2281,"name":"ProposalCanceled","nameLocation":"4185:16:3","nodeType":"EventDefinition","parameters":{"id":2280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2279,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4210:10:3","nodeType":"VariableDeclaration","scope":2281,"src":"4202:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2278,"name":"uint256","nodeType":"ElementaryTypeName","src":"4202:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4201:20:3"},"src":"4179:43:3"},{"anonymous":false,"documentation":{"id":2282,"nodeType":"StructuredDocumentation","src":"4228:187:3","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":2294,"name":"VoteCast","nameLocation":"4426:8:3","nodeType":"EventDefinition","parameters":{"id":2293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2284,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4451:5:3","nodeType":"VariableDeclaration","scope":2294,"src":"4435:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2283,"name":"address","nodeType":"ElementaryTypeName","src":"4435:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2286,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4466:10:3","nodeType":"VariableDeclaration","scope":2294,"src":"4458:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2285,"name":"uint256","nodeType":"ElementaryTypeName","src":"4458:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2288,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4484:7:3","nodeType":"VariableDeclaration","scope":2294,"src":"4478:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2287,"name":"uint8","nodeType":"ElementaryTypeName","src":"4478:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2290,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"4501:6:3","nodeType":"VariableDeclaration","scope":2294,"src":"4493:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2289,"name":"uint256","nodeType":"ElementaryTypeName","src":"4493:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2292,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"4516:6:3","nodeType":"VariableDeclaration","scope":2294,"src":"4509:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2291,"name":"string","nodeType":"ElementaryTypeName","src":"4509:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4434:89:3"},"src":"4420:104:3"},{"anonymous":false,"documentation":{"id":2295,"nodeType":"StructuredDocumentation","src":"4530:297:3","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":2309,"name":"VoteCastWithParams","nameLocation":"4838:18:3","nodeType":"EventDefinition","parameters":{"id":2308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2297,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4882:5:3","nodeType":"VariableDeclaration","scope":2309,"src":"4866:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2296,"name":"address","nodeType":"ElementaryTypeName","src":"4866:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2299,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4905:10:3","nodeType":"VariableDeclaration","scope":2309,"src":"4897:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2298,"name":"uint256","nodeType":"ElementaryTypeName","src":"4897:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2301,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4931:7:3","nodeType":"VariableDeclaration","scope":2309,"src":"4925:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2300,"name":"uint8","nodeType":"ElementaryTypeName","src":"4925:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2303,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"4956:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4948:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2302,"name":"uint256","nodeType":"ElementaryTypeName","src":"4948:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2305,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"4979:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4972:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2304,"name":"string","nodeType":"ElementaryTypeName","src":"4972:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2307,"indexed":false,"mutability":"mutable","name":"params","nameLocation":"5001:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4995:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2306,"name":"bytes","nodeType":"ElementaryTypeName","src":"4995:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4856:157:3"},"src":"4832:182:3"},{"documentation":{"id":2310,"nodeType":"StructuredDocumentation","src":"5020:129:3","text":" @notice module:core\n @dev Name of the governor instance (used in building the EIP-712 domain separator)."},"functionSelector":"06fdde03","id":2315,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"5163:4:3","nodeType":"FunctionDefinition","parameters":{"id":2311,"nodeType":"ParameterList","parameters":[],"src":"5167:2:3"},"returnParameters":{"id":2314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2313,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2315,"src":"5193:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2312,"name":"string","nodeType":"ElementaryTypeName","src":"5193:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5192:15:3"},"scope":2588,"src":"5154:54:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2316,"nodeType":"StructuredDocumentation","src":"5214:145:3","text":" @notice module:core\n @dev Version of the governor instance (used in building the EIP-712 domain separator). Default: \"1\""},"functionSelector":"54fd4d50","id":2321,"implemented":false,"kind":"function","modifiers":[],"name":"version","nameLocation":"5373:7:3","nodeType":"FunctionDefinition","parameters":{"id":2317,"nodeType":"ParameterList","parameters":[],"src":"5380:2:3"},"returnParameters":{"id":2320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2321,"src":"5406:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2318,"name":"string","nodeType":"ElementaryTypeName","src":"5406:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5405:15:3"},"scope":2588,"src":"5364:57:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2322,"nodeType":"StructuredDocumentation","src":"5427:1315:3","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":2327,"implemented":false,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"6809:13:3","nodeType":"FunctionDefinition","parameters":{"id":2323,"nodeType":"ParameterList","parameters":[],"src":"6822:2:3"},"returnParameters":{"id":2326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2325,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2327,"src":"6848:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2324,"name":"string","nodeType":"ElementaryTypeName","src":"6848:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6847:15:3"},"scope":2588,"src":"6800:63:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2328,"nodeType":"StructuredDocumentation","src":"6869:129:3","text":" @notice module:core\n @dev Hashing function used to (re)build the proposal id from the proposal details.."},"functionSelector":"c59057e4","id":2344,"implemented":false,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"7012:12:3","nodeType":"FunctionDefinition","parameters":{"id":2340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2331,"mutability":"mutable","name":"targets","nameLocation":"7051:7:3","nodeType":"VariableDeclaration","scope":2344,"src":"7034:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2329,"name":"address","nodeType":"ElementaryTypeName","src":"7034:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2330,"nodeType":"ArrayTypeName","src":"7034:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2334,"mutability":"mutable","name":"values","nameLocation":"7085:6:3","nodeType":"VariableDeclaration","scope":2344,"src":"7068:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2332,"name":"uint256","nodeType":"ElementaryTypeName","src":"7068:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2333,"nodeType":"ArrayTypeName","src":"7068:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2337,"mutability":"mutable","name":"calldatas","nameLocation":"7116:9:3","nodeType":"VariableDeclaration","scope":2344,"src":"7101:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2335,"name":"bytes","nodeType":"ElementaryTypeName","src":"7101:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2336,"nodeType":"ArrayTypeName","src":"7101:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2339,"mutability":"mutable","name":"descriptionHash","nameLocation":"7143:15:3","nodeType":"VariableDeclaration","scope":2344,"src":"7135:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2338,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7135:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7024:140:3"},"returnParameters":{"id":2343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2342,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2344,"src":"7188:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2341,"name":"uint256","nodeType":"ElementaryTypeName","src":"7188:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7187:9:3"},"scope":2588,"src":"7003:194:3","stateMutability":"pure","virtual":false,"visibility":"external"},{"documentation":{"id":2345,"nodeType":"StructuredDocumentation","src":"7203:111:3","text":" @notice module:core\n @dev Current state of a proposal, following Compound's convention"},"functionSelector":"3e4f49e6","id":2353,"implemented":false,"kind":"function","modifiers":[],"name":"state","nameLocation":"7328:5:3","nodeType":"FunctionDefinition","parameters":{"id":2348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2347,"mutability":"mutable","name":"proposalId","nameLocation":"7342:10:3","nodeType":"VariableDeclaration","scope":2353,"src":"7334:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2346,"name":"uint256","nodeType":"ElementaryTypeName","src":"7334:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7333:20:3"},"returnParameters":{"id":2352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2353,"src":"7377:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2350,"nodeType":"UserDefinedTypeName","pathNode":{"id":2349,"name":"ProposalState","nameLocations":["7377:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"7377:13:3"},"referencedDeclaration":2154,"src":"7377:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"7376:15:3"},"scope":2588,"src":"7319:73:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2354,"nodeType":"StructuredDocumentation","src":"7398:122:3","text":" @notice module:core\n @dev The number of votes required in order for a voter to become a proposer."},"functionSelector":"b58131b0","id":2359,"implemented":false,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7534:17:3","nodeType":"FunctionDefinition","parameters":{"id":2355,"nodeType":"ParameterList","parameters":[],"src":"7551:2:3"},"returnParameters":{"id":2358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2357,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2359,"src":"7577:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2356,"name":"uint256","nodeType":"ElementaryTypeName","src":"7577:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7576:9:3"},"scope":2588,"src":"7525:61:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2360,"nodeType":"StructuredDocumentation","src":"7592:296:3","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":2367,"implemented":false,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"7902:16:3","nodeType":"FunctionDefinition","parameters":{"id":2363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2362,"mutability":"mutable","name":"proposalId","nameLocation":"7927:10:3","nodeType":"VariableDeclaration","scope":2367,"src":"7919:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2361,"name":"uint256","nodeType":"ElementaryTypeName","src":"7919:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7918:20:3"},"returnParameters":{"id":2366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2367,"src":"7962:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2364,"name":"uint256","nodeType":"ElementaryTypeName","src":"7962:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7961:9:3"},"scope":2588,"src":"7893:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2368,"nodeType":"StructuredDocumentation","src":"7977:202:3","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":2375,"implemented":false,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"8193:16:3","nodeType":"FunctionDefinition","parameters":{"id":2371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2370,"mutability":"mutable","name":"proposalId","nameLocation":"8218:10:3","nodeType":"VariableDeclaration","scope":2375,"src":"8210:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2369,"name":"uint256","nodeType":"ElementaryTypeName","src":"8210:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8209:20:3"},"returnParameters":{"id":2374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2373,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2375,"src":"8253:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2372,"name":"uint256","nodeType":"ElementaryTypeName","src":"8253:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8252:9:3"},"scope":2588,"src":"8184:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2376,"nodeType":"StructuredDocumentation","src":"8268:87:3","text":" @notice module:core\n @dev The account that created a proposal."},"functionSelector":"143489d0","id":2383,"implemented":false,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"8369:16:3","nodeType":"FunctionDefinition","parameters":{"id":2379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2378,"mutability":"mutable","name":"proposalId","nameLocation":"8394:10:3","nodeType":"VariableDeclaration","scope":2383,"src":"8386:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2377,"name":"uint256","nodeType":"ElementaryTypeName","src":"8386:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8385:20:3"},"returnParameters":{"id":2382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2381,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2383,"src":"8429:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2380,"name":"address","nodeType":"ElementaryTypeName","src":"8429:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8428:9:3"},"scope":2588,"src":"8360:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2384,"nodeType":"StructuredDocumentation","src":"8444:318:3","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":2391,"implemented":false,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"8776:11:3","nodeType":"FunctionDefinition","parameters":{"id":2387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2386,"mutability":"mutable","name":"proposalId","nameLocation":"8796:10:3","nodeType":"VariableDeclaration","scope":2391,"src":"8788:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2385,"name":"uint256","nodeType":"ElementaryTypeName","src":"8788:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8787:20:3"},"returnParameters":{"id":2390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2389,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2391,"src":"8831:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2388,"name":"uint256","nodeType":"ElementaryTypeName","src":"8831:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8830:9:3"},"scope":2588,"src":"8767:73:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2392,"nodeType":"StructuredDocumentation","src":"8846:106:3","text":" @notice module:core\n @dev Whether a proposal needs to be queued before execution."},"functionSelector":"a9a95294","id":2399,"implemented":false,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8966:20:3","nodeType":"FunctionDefinition","parameters":{"id":2395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2394,"mutability":"mutable","name":"proposalId","nameLocation":"8995:10:3","nodeType":"VariableDeclaration","scope":2399,"src":"8987:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2393,"name":"uint256","nodeType":"ElementaryTypeName","src":"8987:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8986:20:3"},"returnParameters":{"id":2398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2397,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2399,"src":"9030:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2396,"name":"bool","nodeType":"ElementaryTypeName","src":"9030:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9029:6:3"},"scope":2588,"src":"8957:79:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2400,"nodeType":"StructuredDocumentation","src":"9042:599:3","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":2405,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"9655:11:3","nodeType":"FunctionDefinition","parameters":{"id":2401,"nodeType":"ParameterList","parameters":[],"src":"9666:2:3"},"returnParameters":{"id":2404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2403,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2405,"src":"9692:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2402,"name":"uint256","nodeType":"ElementaryTypeName","src":"9692:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9691:9:3"},"scope":2588,"src":"9646:55:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2406,"nodeType":"StructuredDocumentation","src":"9707:686:3","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":2411,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"10407:12:3","nodeType":"FunctionDefinition","parameters":{"id":2407,"nodeType":"ParameterList","parameters":[],"src":"10419:2:3"},"returnParameters":{"id":2410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2409,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2411,"src":"10445:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2408,"name":"uint256","nodeType":"ElementaryTypeName","src":"10445:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10444:9:3"},"scope":2588,"src":"10398:56:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2412,"nodeType":"StructuredDocumentation","src":"10460:358:3","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":2419,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"10832:6:3","nodeType":"FunctionDefinition","parameters":{"id":2415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2414,"mutability":"mutable","name":"timepoint","nameLocation":"10847:9:3","nodeType":"VariableDeclaration","scope":2419,"src":"10839:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2413,"name":"uint256","nodeType":"ElementaryTypeName","src":"10839:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10838:19:3"},"returnParameters":{"id":2418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2419,"src":"10881:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2416,"name":"uint256","nodeType":"ElementaryTypeName","src":"10881:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10880:9:3"},"scope":2588,"src":"10823:67:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2420,"nodeType":"StructuredDocumentation","src":"10896:274:3","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":2429,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"11184:8:3","nodeType":"FunctionDefinition","parameters":{"id":2425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2422,"mutability":"mutable","name":"account","nameLocation":"11201:7:3","nodeType":"VariableDeclaration","scope":2429,"src":"11193:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2421,"name":"address","nodeType":"ElementaryTypeName","src":"11193:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2424,"mutability":"mutable","name":"timepoint","nameLocation":"11218:9:3","nodeType":"VariableDeclaration","scope":2429,"src":"11210:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2423,"name":"uint256","nodeType":"ElementaryTypeName","src":"11210:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11192:36:3"},"returnParameters":{"id":2428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2427,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2429,"src":"11252:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2426,"name":"uint256","nodeType":"ElementaryTypeName","src":"11252:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11251:9:3"},"scope":2588,"src":"11175:86:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2430,"nodeType":"StructuredDocumentation","src":"11267:148:3","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `timepoint` given additional encoded parameters."},"functionSelector":"9a802a6d","id":2441,"implemented":false,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"11429:18:3","nodeType":"FunctionDefinition","parameters":{"id":2437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2432,"mutability":"mutable","name":"account","nameLocation":"11465:7:3","nodeType":"VariableDeclaration","scope":2441,"src":"11457:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2431,"name":"address","nodeType":"ElementaryTypeName","src":"11457:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2434,"mutability":"mutable","name":"timepoint","nameLocation":"11490:9:3","nodeType":"VariableDeclaration","scope":2441,"src":"11482:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2433,"name":"uint256","nodeType":"ElementaryTypeName","src":"11482:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2436,"mutability":"mutable","name":"params","nameLocation":"11522:6:3","nodeType":"VariableDeclaration","scope":2441,"src":"11509:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2435,"name":"bytes","nodeType":"ElementaryTypeName","src":"11509:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11447:87:3"},"returnParameters":{"id":2440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2439,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2441,"src":"11558:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2438,"name":"uint256","nodeType":"ElementaryTypeName","src":"11558:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11557:9:3"},"scope":2588,"src":"11420:147:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2442,"nodeType":"StructuredDocumentation","src":"11573:111:3","text":" @notice module:voting\n @dev Returns whether `account` has cast a vote on `proposalId`."},"functionSelector":"43859632","id":2451,"implemented":false,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"11698:8:3","nodeType":"FunctionDefinition","parameters":{"id":2447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2444,"mutability":"mutable","name":"proposalId","nameLocation":"11715:10:3","nodeType":"VariableDeclaration","scope":2451,"src":"11707:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2443,"name":"uint256","nodeType":"ElementaryTypeName","src":"11707:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2446,"mutability":"mutable","name":"account","nameLocation":"11735:7:3","nodeType":"VariableDeclaration","scope":2451,"src":"11727:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2445,"name":"address","nodeType":"ElementaryTypeName","src":"11727:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11706:37:3"},"returnParameters":{"id":2450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2451,"src":"11767:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2448,"name":"bool","nodeType":"ElementaryTypeName","src":"11767:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11766:6:3"},"scope":2588,"src":"11689:84:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2452,"nodeType":"StructuredDocumentation","src":"11779:746:3","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":2468,"implemented":false,"kind":"function","modifiers":[],"name":"propose","nameLocation":"12539:7:3","nodeType":"FunctionDefinition","parameters":{"id":2464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2455,"mutability":"mutable","name":"targets","nameLocation":"12573:7:3","nodeType":"VariableDeclaration","scope":2468,"src":"12556:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2453,"name":"address","nodeType":"ElementaryTypeName","src":"12556:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2454,"nodeType":"ArrayTypeName","src":"12556:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2458,"mutability":"mutable","name":"values","nameLocation":"12607:6:3","nodeType":"VariableDeclaration","scope":2468,"src":"12590:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2456,"name":"uint256","nodeType":"ElementaryTypeName","src":"12590:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2457,"nodeType":"ArrayTypeName","src":"12590:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2461,"mutability":"mutable","name":"calldatas","nameLocation":"12638:9:3","nodeType":"VariableDeclaration","scope":2468,"src":"12623:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2459,"name":"bytes","nodeType":"ElementaryTypeName","src":"12623:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2460,"nodeType":"ArrayTypeName","src":"12623:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2463,"mutability":"mutable","name":"description","nameLocation":"12671:11:3","nodeType":"VariableDeclaration","scope":2468,"src":"12657:25:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2462,"name":"string","nodeType":"ElementaryTypeName","src":"12657:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12546:142:3"},"returnParameters":{"id":2467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2466,"mutability":"mutable","name":"proposalId","nameLocation":"12715:10:3","nodeType":"VariableDeclaration","scope":2468,"src":"12707:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2465,"name":"uint256","nodeType":"ElementaryTypeName","src":"12707:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12706:20:3"},"scope":2588,"src":"12530:197:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2469,"nodeType":"StructuredDocumentation","src":"12733:347:3","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":2485,"implemented":false,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13094:5:3","nodeType":"FunctionDefinition","parameters":{"id":2481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2472,"mutability":"mutable","name":"targets","nameLocation":"13126:7:3","nodeType":"VariableDeclaration","scope":2485,"src":"13109:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2470,"name":"address","nodeType":"ElementaryTypeName","src":"13109:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2471,"nodeType":"ArrayTypeName","src":"13109:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2475,"mutability":"mutable","name":"values","nameLocation":"13160:6:3","nodeType":"VariableDeclaration","scope":2485,"src":"13143:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2473,"name":"uint256","nodeType":"ElementaryTypeName","src":"13143:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2474,"nodeType":"ArrayTypeName","src":"13143:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2478,"mutability":"mutable","name":"calldatas","nameLocation":"13191:9:3","nodeType":"VariableDeclaration","scope":2485,"src":"13176:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2476,"name":"bytes","nodeType":"ElementaryTypeName","src":"13176:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2477,"nodeType":"ArrayTypeName","src":"13176:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2480,"mutability":"mutable","name":"descriptionHash","nameLocation":"13218:15:3","nodeType":"VariableDeclaration","scope":2485,"src":"13210:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2479,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13210:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13099:140:3"},"returnParameters":{"id":2484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2483,"mutability":"mutable","name":"proposalId","nameLocation":"13266:10:3","nodeType":"VariableDeclaration","scope":2485,"src":"13258:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2482,"name":"uint256","nodeType":"ElementaryTypeName","src":"13258:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13257:20:3"},"scope":2588,"src":"13085:193:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2486,"nodeType":"StructuredDocumentation","src":"13284:446:3","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":2502,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"13744:7:3","nodeType":"FunctionDefinition","parameters":{"id":2498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2489,"mutability":"mutable","name":"targets","nameLocation":"13778:7:3","nodeType":"VariableDeclaration","scope":2502,"src":"13761:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2487,"name":"address","nodeType":"ElementaryTypeName","src":"13761:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2488,"nodeType":"ArrayTypeName","src":"13761:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2492,"mutability":"mutable","name":"values","nameLocation":"13812:6:3","nodeType":"VariableDeclaration","scope":2502,"src":"13795:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2490,"name":"uint256","nodeType":"ElementaryTypeName","src":"13795:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2491,"nodeType":"ArrayTypeName","src":"13795:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2495,"mutability":"mutable","name":"calldatas","nameLocation":"13843:9:3","nodeType":"VariableDeclaration","scope":2502,"src":"13828:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2493,"name":"bytes","nodeType":"ElementaryTypeName","src":"13828:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2494,"nodeType":"ArrayTypeName","src":"13828:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2497,"mutability":"mutable","name":"descriptionHash","nameLocation":"13870:15:3","nodeType":"VariableDeclaration","scope":2502,"src":"13862:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13862:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13751:140:3"},"returnParameters":{"id":2501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2500,"mutability":"mutable","name":"proposalId","nameLocation":"13926:10:3","nodeType":"VariableDeclaration","scope":2502,"src":"13918:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2499,"name":"uint256","nodeType":"ElementaryTypeName","src":"13918:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13917:20:3"},"scope":2588,"src":"13735:203:3","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":2503,"nodeType":"StructuredDocumentation","src":"13944:205:3","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":2519,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"14163:6:3","nodeType":"FunctionDefinition","parameters":{"id":2515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2506,"mutability":"mutable","name":"targets","nameLocation":"14196:7:3","nodeType":"VariableDeclaration","scope":2519,"src":"14179:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2504,"name":"address","nodeType":"ElementaryTypeName","src":"14179:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2505,"nodeType":"ArrayTypeName","src":"14179:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2509,"mutability":"mutable","name":"values","nameLocation":"14230:6:3","nodeType":"VariableDeclaration","scope":2519,"src":"14213:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2507,"name":"uint256","nodeType":"ElementaryTypeName","src":"14213:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2508,"nodeType":"ArrayTypeName","src":"14213:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2512,"mutability":"mutable","name":"calldatas","nameLocation":"14261:9:3","nodeType":"VariableDeclaration","scope":2519,"src":"14246:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2510,"name":"bytes","nodeType":"ElementaryTypeName","src":"14246:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2511,"nodeType":"ArrayTypeName","src":"14246:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2514,"mutability":"mutable","name":"descriptionHash","nameLocation":"14288:15:3","nodeType":"VariableDeclaration","scope":2519,"src":"14280:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2513,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14280:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14169:140:3"},"returnParameters":{"id":2518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2517,"mutability":"mutable","name":"proposalId","nameLocation":"14336:10:3","nodeType":"VariableDeclaration","scope":2519,"src":"14328:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2516,"name":"uint256","nodeType":"ElementaryTypeName","src":"14328:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14327:20:3"},"scope":2588,"src":"14154:194:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2520,"nodeType":"StructuredDocumentation","src":"14354:75:3","text":" @dev Cast a vote\n Emits a {VoteCast} event."},"functionSelector":"56781388","id":2529,"implemented":false,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"14443:8:3","nodeType":"FunctionDefinition","parameters":{"id":2525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2522,"mutability":"mutable","name":"proposalId","nameLocation":"14460:10:3","nodeType":"VariableDeclaration","scope":2529,"src":"14452:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2521,"name":"uint256","nodeType":"ElementaryTypeName","src":"14452:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2524,"mutability":"mutable","name":"support","nameLocation":"14478:7:3","nodeType":"VariableDeclaration","scope":2529,"src":"14472:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2523,"name":"uint8","nodeType":"ElementaryTypeName","src":"14472:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"14451:35:3"},"returnParameters":{"id":2528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2527,"mutability":"mutable","name":"balance","nameLocation":"14513:7:3","nodeType":"VariableDeclaration","scope":2529,"src":"14505:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2526,"name":"uint256","nodeType":"ElementaryTypeName","src":"14505:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14504:17:3"},"scope":2588,"src":"14434:88:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2530,"nodeType":"StructuredDocumentation","src":"14528:89:3","text":" @dev Cast a vote with a reason\n Emits a {VoteCast} event."},"functionSelector":"7b3c71d3","id":2541,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"14631:18:3","nodeType":"FunctionDefinition","parameters":{"id":2537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2532,"mutability":"mutable","name":"proposalId","nameLocation":"14667:10:3","nodeType":"VariableDeclaration","scope":2541,"src":"14659:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2531,"name":"uint256","nodeType":"ElementaryTypeName","src":"14659:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2534,"mutability":"mutable","name":"support","nameLocation":"14693:7:3","nodeType":"VariableDeclaration","scope":2541,"src":"14687:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2533,"name":"uint8","nodeType":"ElementaryTypeName","src":"14687:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2536,"mutability":"mutable","name":"reason","nameLocation":"14726:6:3","nodeType":"VariableDeclaration","scope":2541,"src":"14710:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2535,"name":"string","nodeType":"ElementaryTypeName","src":"14710:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14649:89:3"},"returnParameters":{"id":2540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2539,"mutability":"mutable","name":"balance","nameLocation":"14765:7:3","nodeType":"VariableDeclaration","scope":2541,"src":"14757:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2538,"name":"uint256","nodeType":"ElementaryTypeName","src":"14757:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14756:17:3"},"scope":2588,"src":"14622:152:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2542,"nodeType":"StructuredDocumentation","src":"14780:181:3","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":2555,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"14975:27:3","nodeType":"FunctionDefinition","parameters":{"id":2551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2544,"mutability":"mutable","name":"proposalId","nameLocation":"15020:10:3","nodeType":"VariableDeclaration","scope":2555,"src":"15012:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2543,"name":"uint256","nodeType":"ElementaryTypeName","src":"15012:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2546,"mutability":"mutable","name":"support","nameLocation":"15046:7:3","nodeType":"VariableDeclaration","scope":2555,"src":"15040:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2545,"name":"uint8","nodeType":"ElementaryTypeName","src":"15040:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2548,"mutability":"mutable","name":"reason","nameLocation":"15079:6:3","nodeType":"VariableDeclaration","scope":2555,"src":"15063:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2547,"name":"string","nodeType":"ElementaryTypeName","src":"15063:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2550,"mutability":"mutable","name":"params","nameLocation":"15108:6:3","nodeType":"VariableDeclaration","scope":2555,"src":"15095:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2549,"name":"bytes","nodeType":"ElementaryTypeName","src":"15095:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15002:118:3"},"returnParameters":{"id":2554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2553,"mutability":"mutable","name":"balance","nameLocation":"15147:7:3","nodeType":"VariableDeclaration","scope":2555,"src":"15139:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2552,"name":"uint256","nodeType":"ElementaryTypeName","src":"15139:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15138:17:3"},"scope":2588,"src":"14966:190:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2556,"nodeType":"StructuredDocumentation","src":"15162:142:3","text":" @dev Cast a vote using the voter's signature, including ERC-1271 signature support.\n Emits a {VoteCast} event."},"functionSelector":"8ff262e3","id":2569,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"15318:13:3","nodeType":"FunctionDefinition","parameters":{"id":2565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2558,"mutability":"mutable","name":"proposalId","nameLocation":"15349:10:3","nodeType":"VariableDeclaration","scope":2569,"src":"15341:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2557,"name":"uint256","nodeType":"ElementaryTypeName","src":"15341:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2560,"mutability":"mutable","name":"support","nameLocation":"15375:7:3","nodeType":"VariableDeclaration","scope":2569,"src":"15369:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2559,"name":"uint8","nodeType":"ElementaryTypeName","src":"15369:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2562,"mutability":"mutable","name":"voter","nameLocation":"15400:5:3","nodeType":"VariableDeclaration","scope":2569,"src":"15392:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2561,"name":"address","nodeType":"ElementaryTypeName","src":"15392:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2564,"mutability":"mutable","name":"signature","nameLocation":"15428:9:3","nodeType":"VariableDeclaration","scope":2569,"src":"15415:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2563,"name":"bytes","nodeType":"ElementaryTypeName","src":"15415:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15331:112:3"},"returnParameters":{"id":2568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2567,"mutability":"mutable","name":"balance","nameLocation":"15470:7:3","nodeType":"VariableDeclaration","scope":2569,"src":"15462:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2566,"name":"uint256","nodeType":"ElementaryTypeName","src":"15462:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15461:17:3"},"scope":2588,"src":"15309:170:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2570,"nodeType":"StructuredDocumentation","src":"15485:255:3","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":2587,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"15754:32:3","nodeType":"FunctionDefinition","parameters":{"id":2583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2572,"mutability":"mutable","name":"proposalId","nameLocation":"15804:10:3","nodeType":"VariableDeclaration","scope":2587,"src":"15796:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2571,"name":"uint256","nodeType":"ElementaryTypeName","src":"15796:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2574,"mutability":"mutable","name":"support","nameLocation":"15830:7:3","nodeType":"VariableDeclaration","scope":2587,"src":"15824:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2573,"name":"uint8","nodeType":"ElementaryTypeName","src":"15824:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2576,"mutability":"mutable","name":"voter","nameLocation":"15855:5:3","nodeType":"VariableDeclaration","scope":2587,"src":"15847:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2575,"name":"address","nodeType":"ElementaryTypeName","src":"15847:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2578,"mutability":"mutable","name":"reason","nameLocation":"15886:6:3","nodeType":"VariableDeclaration","scope":2587,"src":"15870:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2577,"name":"string","nodeType":"ElementaryTypeName","src":"15870:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2580,"mutability":"mutable","name":"params","nameLocation":"15915:6:3","nodeType":"VariableDeclaration","scope":2587,"src":"15902:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2579,"name":"bytes","nodeType":"ElementaryTypeName","src":"15902:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2582,"mutability":"mutable","name":"signature","nameLocation":"15944:9:3","nodeType":"VariableDeclaration","scope":2587,"src":"15931:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2581,"name":"bytes","nodeType":"ElementaryTypeName","src":"15931:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15786:173:3"},"returnParameters":{"id":2586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2585,"mutability":"mutable","name":"balance","nameLocation":"15986:7:3","nodeType":"VariableDeclaration","scope":2587,"src":"15978:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2584,"name":"uint256","nodeType":"ElementaryTypeName","src":"15978:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15977:17:3"},"scope":2588,"src":"15745:250:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2589,"src":"499:15498:3","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239],"usedEvents":[2264,2271,2276,2281,2294,2309]}],"src":"108:15890:3"},"id":3},"@openzeppelin/contracts/governance/TimelockController.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","exportedSymbols":{"AccessControl":[295],"Address":[6688],"ERC1155Holder":[5632],"ERC721Holder":[6428],"TimelockController":[3608]},"id":3609,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2590,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:4"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"../access/AccessControl.sol","id":2592,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":296,"src":"143:58:4","symbolAliases":[{"foreign":{"id":2591,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"151:13:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","file":"../token/ERC721/utils/ERC721Holder.sol","id":2594,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":6429,"src":"202:68:4","symbolAliases":[{"foreign":{"id":2593,"name":"ERC721Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6428,"src":"210:12:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","file":"../token/ERC1155/utils/ERC1155Holder.sol","id":2596,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":5633,"src":"271:71:4","symbolAliases":[{"foreign":{"id":2595,"name":"ERC1155Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5632,"src":"279:13:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":2598,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":6689,"src":"343:45:4","symbolAliases":[{"foreign":{"id":2597,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"351:7:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2600,"name":"AccessControl","nameLocations":["1115:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"1115:13:4"},"id":2601,"nodeType":"InheritanceSpecifier","src":"1115:13:4"},{"baseName":{"id":2602,"name":"ERC721Holder","nameLocations":["1130:12:4"],"nodeType":"IdentifierPath","referencedDeclaration":6428,"src":"1130:12:4"},"id":2603,"nodeType":"InheritanceSpecifier","src":"1130:12:4"},{"baseName":{"id":2604,"name":"ERC1155Holder","nameLocations":["1144:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":5632,"src":"1144:13:4"},"id":2605,"nodeType":"InheritanceSpecifier","src":"1144:13:4"}],"canonicalName":"TimelockController","contractDependencies":[],"contractKind":"contract","documentation":{"id":2599,"nodeType":"StructuredDocumentation","src":"390:693:4","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":3608,"linearizedBaseContracts":[3608,5632,5551,6428,6401,295,9182,9194,378,6718],"name":"TimelockController","nameLocation":"1093:18:4","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"8f61f4f5","id":2610,"mutability":"constant","name":"PROPOSER_ROLE","nameLocation":"1188:13:4","nodeType":"VariableDeclaration","scope":3608,"src":"1164:66:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2606,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1164:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"50524f504f5345525f524f4c45","id":2608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1214:15:4","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":2607,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1204:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1204:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":2615,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1260:13:4","nodeType":"VariableDeclaration","scope":3608,"src":"1236:66:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2611,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1236:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":2613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1286:15:4","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":2612,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1276:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1276:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"b08e51c0","id":2620,"mutability":"constant","name":"CANCELLER_ROLE","nameLocation":"1332:14:4","nodeType":"VariableDeclaration","scope":3608,"src":"1308:68:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1308:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"43414e43454c4c45525f524f4c45","id":2618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1359:16:4","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":2617,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1349:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1349:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"id":2626,"mutability":"constant","name":"_DONE_TIMESTAMP","nameLocation":"1408:15:4","nodeType":"VariableDeclaration","scope":3608,"src":"1382:54:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2621,"name":"uint256","nodeType":"ElementaryTypeName","src":"1382:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"arguments":[{"hexValue":"31","id":2624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1434:1:4","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":2623,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1426:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2622,"name":"uint256","nodeType":"ElementaryTypeName","src":"1426:7:4","typeDescriptions":{}}},"id":2625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1426:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2630,"mutability":"mutable","name":"_timestamps","nameLocation":"1482:11:4","nodeType":"VariableDeclaration","scope":3608,"src":"1443:50:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"typeName":{"id":2629,"keyName":"id","keyNameLocation":"1459:2:4","keyType":{"id":2627,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1451:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"1443:30:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2628,"name":"uint256","nodeType":"ElementaryTypeName","src":"1465:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":2632,"mutability":"mutable","name":"_minDelay","nameLocation":"1515:9:4","nodeType":"VariableDeclaration","scope":3608,"src":"1499:25:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2631,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"canonicalName":"TimelockController.OperationState","id":2637,"members":[{"id":2633,"name":"Unset","nameLocation":"1561:5:4","nodeType":"EnumValue","src":"1561:5:4"},{"id":2634,"name":"Waiting","nameLocation":"1576:7:4","nodeType":"EnumValue","src":"1576:7:4"},{"id":2635,"name":"Ready","nameLocation":"1593:5:4","nodeType":"EnumValue","src":"1593:5:4"},{"id":2636,"name":"Done","nameLocation":"1608:4:4","nodeType":"EnumValue","src":"1608:4:4"}],"name":"OperationState","nameLocation":"1536:14:4","nodeType":"EnumDefinition","src":"1531:87:4"},{"documentation":{"id":2638,"nodeType":"StructuredDocumentation","src":"1624:85:4","text":" @dev Mismatch between the parameters length for an operation call."},"errorSelector":"ffb03211","id":2646,"name":"TimelockInvalidOperationLength","nameLocation":"1720:30:4","nodeType":"ErrorDefinition","parameters":{"id":2645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2640,"mutability":"mutable","name":"targets","nameLocation":"1759:7:4","nodeType":"VariableDeclaration","scope":2646,"src":"1751:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2639,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2642,"mutability":"mutable","name":"payloads","nameLocation":"1776:8:4","nodeType":"VariableDeclaration","scope":2646,"src":"1768:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2641,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2644,"mutability":"mutable","name":"values","nameLocation":"1794:6:4","nodeType":"VariableDeclaration","scope":2646,"src":"1786:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2643,"name":"uint256","nodeType":"ElementaryTypeName","src":"1786:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1750:51:4"},"src":"1714:88:4"},{"documentation":{"id":2647,"nodeType":"StructuredDocumentation","src":"1808:78:4","text":" @dev The schedule operation doesn't meet the minimum delay."},"errorSelector":"54336609","id":2653,"name":"TimelockInsufficientDelay","nameLocation":"1897:25:4","nodeType":"ErrorDefinition","parameters":{"id":2652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2649,"mutability":"mutable","name":"delay","nameLocation":"1931:5:4","nodeType":"VariableDeclaration","scope":2653,"src":"1923:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2648,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2651,"mutability":"mutable","name":"minDelay","nameLocation":"1946:8:4","nodeType":"VariableDeclaration","scope":2653,"src":"1938:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2650,"name":"uint256","nodeType":"ElementaryTypeName","src":"1938:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1922:33:4"},"src":"1891:65:4"},{"documentation":{"id":2654,"nodeType":"StructuredDocumentation","src":"1962:253:4","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":2660,"name":"TimelockUnexpectedOperationState","nameLocation":"2226:32:4","nodeType":"ErrorDefinition","parameters":{"id":2659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2656,"mutability":"mutable","name":"operationId","nameLocation":"2267:11:4","nodeType":"VariableDeclaration","scope":2660,"src":"2259:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2655,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2259:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2658,"mutability":"mutable","name":"expectedStates","nameLocation":"2288:14:4","nodeType":"VariableDeclaration","scope":2660,"src":"2280:22:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2657,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2280:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2258:45:4"},"src":"2220:84:4"},{"documentation":{"id":2661,"nodeType":"StructuredDocumentation","src":"2310:69:4","text":" @dev The predecessor to an operation not yet done."},"errorSelector":"90a9a618","id":2665,"name":"TimelockUnexecutedPredecessor","nameLocation":"2390:29:4","nodeType":"ErrorDefinition","parameters":{"id":2664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2663,"mutability":"mutable","name":"predecessorId","nameLocation":"2428:13:4","nodeType":"VariableDeclaration","scope":2665,"src":"2420:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2662,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2420:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2419:23:4"},"src":"2384:59:4"},{"documentation":{"id":2666,"nodeType":"StructuredDocumentation","src":"2449:61:4","text":" @dev The caller account is not authorized."},"errorSelector":"e2850c59","id":2670,"name":"TimelockUnauthorizedCaller","nameLocation":"2521:26:4","nodeType":"ErrorDefinition","parameters":{"id":2669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2668,"mutability":"mutable","name":"caller","nameLocation":"2556:6:4","nodeType":"VariableDeclaration","scope":2670,"src":"2548:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2667,"name":"address","nodeType":"ElementaryTypeName","src":"2548:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2547:16:4"},"src":"2515:49:4"},{"anonymous":false,"documentation":{"id":2671,"nodeType":"StructuredDocumentation","src":"2570:83:4","text":" @dev Emitted when a call is scheduled as part of operation `id`."},"eventSelector":"4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca","id":2687,"name":"CallScheduled","nameLocation":"2664:13:4","nodeType":"EventDefinition","parameters":{"id":2686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2673,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2703:2:4","nodeType":"VariableDeclaration","scope":2687,"src":"2687:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2672,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2687:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2675,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"2731:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2715:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2674,"name":"uint256","nodeType":"ElementaryTypeName","src":"2715:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2677,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"2754:6:4","nodeType":"VariableDeclaration","scope":2687,"src":"2746:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2676,"name":"address","nodeType":"ElementaryTypeName","src":"2746:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2679,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"2778:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2678,"name":"uint256","nodeType":"ElementaryTypeName","src":"2770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2681,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"2799:4:4","nodeType":"VariableDeclaration","scope":2687,"src":"2793:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2680,"name":"bytes","nodeType":"ElementaryTypeName","src":"2793:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2683,"indexed":false,"mutability":"mutable","name":"predecessor","nameLocation":"2821:11:4","nodeType":"VariableDeclaration","scope":2687,"src":"2813:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2813:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2685,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2850:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2842:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2684,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2677:184:4"},"src":"2658:204:4"},{"anonymous":false,"documentation":{"id":2688,"nodeType":"StructuredDocumentation","src":"2868:83:4","text":" @dev Emitted when a call is performed as part of operation `id`."},"eventSelector":"c2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58","id":2700,"name":"CallExecuted","nameLocation":"2962:12:4","nodeType":"EventDefinition","parameters":{"id":2699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2690,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2991:2:4","nodeType":"VariableDeclaration","scope":2700,"src":"2975:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2689,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2975:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2692,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"3011:5:4","nodeType":"VariableDeclaration","scope":2700,"src":"2995:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2691,"name":"uint256","nodeType":"ElementaryTypeName","src":"2995:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2694,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"3026:6:4","nodeType":"VariableDeclaration","scope":2700,"src":"3018:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2693,"name":"address","nodeType":"ElementaryTypeName","src":"3018:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2696,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"3042:5:4","nodeType":"VariableDeclaration","scope":2700,"src":"3034:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2695,"name":"uint256","nodeType":"ElementaryTypeName","src":"3034:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2698,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"3055:4:4","nodeType":"VariableDeclaration","scope":2700,"src":"3049:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2697,"name":"bytes","nodeType":"ElementaryTypeName","src":"3049:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2974:86:4"},"src":"2956:105:4"},{"anonymous":false,"documentation":{"id":2701,"nodeType":"StructuredDocumentation","src":"3067:82:4","text":" @dev Emitted when new proposal is scheduled with non-zero salt."},"eventSelector":"20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d0387","id":2707,"name":"CallSalt","nameLocation":"3160:8:4","nodeType":"EventDefinition","parameters":{"id":2706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2703,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3185:2:4","nodeType":"VariableDeclaration","scope":2707,"src":"3169:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2702,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3169:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2705,"indexed":false,"mutability":"mutable","name":"salt","nameLocation":"3197:4:4","nodeType":"VariableDeclaration","scope":2707,"src":"3189:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3189:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3168:34:4"},"src":"3154:49:4"},{"anonymous":false,"documentation":{"id":2708,"nodeType":"StructuredDocumentation","src":"3209:65:4","text":" @dev Emitted when operation `id` is cancelled."},"eventSelector":"baa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb70","id":2712,"name":"Cancelled","nameLocation":"3285:9:4","nodeType":"EventDefinition","parameters":{"id":2711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2710,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3311:2:4","nodeType":"VariableDeclaration","scope":2712,"src":"3295:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2709,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3295:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3294:20:4"},"src":"3279:36:4"},{"anonymous":false,"documentation":{"id":2713,"nodeType":"StructuredDocumentation","src":"3321:89:4","text":" @dev Emitted when the minimum delay for future operations is modified."},"eventSelector":"11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5","id":2719,"name":"MinDelayChange","nameLocation":"3421:14:4","nodeType":"EventDefinition","parameters":{"id":2718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2715,"indexed":false,"mutability":"mutable","name":"oldDuration","nameLocation":"3444:11:4","nodeType":"VariableDeclaration","scope":2719,"src":"3436:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2714,"name":"uint256","nodeType":"ElementaryTypeName","src":"3436:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2717,"indexed":false,"mutability":"mutable","name":"newDuration","nameLocation":"3465:11:4","nodeType":"VariableDeclaration","scope":2719,"src":"3457:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2716,"name":"uint256","nodeType":"ElementaryTypeName","src":"3457:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3435:42:4"},"src":"3415:63:4"},{"body":{"id":2810,"nodeType":"Block","src":"4349:660:4","statements":[{"expression":{"arguments":[{"id":2734,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4401:18:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":2737,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4429:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":2736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4421:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2735,"name":"address","nodeType":"ElementaryTypeName","src":"4421:7:4","typeDescriptions":{}}},"id":2738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4421:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2733,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4390:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4390:45:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2740,"nodeType":"ExpressionStatement","src":"4390:45:4"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2741,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2730,"src":"4476:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4493:1:4","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":2743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4485:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2742,"name":"address","nodeType":"ElementaryTypeName","src":"4485:7:4","typeDescriptions":{}}},"id":2745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4476:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2753,"nodeType":"IfStatement","src":"4472:87:4","trueBody":{"id":2752,"nodeType":"Block","src":"4497:62:4","statements":[{"expression":{"arguments":[{"id":2748,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4522:18:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2749,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2730,"src":"4542:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2747,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4511:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4511:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2751,"nodeType":"ExpressionStatement","src":"4511:37:4"}]}},{"body":{"id":2779,"nodeType":"Block","src":"4661:118:4","statements":[{"expression":{"arguments":[{"id":2766,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"4686:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2767,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4701:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2769,"indexExpression":{"id":2768,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4711:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4701:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2765,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4675:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4675:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2771,"nodeType":"ExpressionStatement","src":"4675:39:4"},{"expression":{"arguments":[{"id":2773,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2620,"src":"4739:14:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2774,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4755:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2776,"indexExpression":{"id":2775,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4765:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4755:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2772,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4728:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4728:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2778,"nodeType":"ExpressionStatement","src":"4728:40:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2758,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4634:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2759,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4638:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4648:6:4","memberName":"length","nodeType":"MemberAccess","src":"4638:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4634:20:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2780,"initializationExpression":{"assignments":[2755],"declarations":[{"constant":false,"id":2755,"mutability":"mutable","name":"i","nameLocation":"4627:1:4","nodeType":"VariableDeclaration","scope":2780,"src":"4619:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2754,"name":"uint256","nodeType":"ElementaryTypeName","src":"4619:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2757,"initialValue":{"hexValue":"30","id":2756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4631:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4619:13:4"},"loopExpression":{"expression":{"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4656:3:4","subExpression":{"id":2762,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4658:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2764,"nodeType":"ExpressionStatement","src":"4656:3:4"},"nodeType":"ForStatement","src":"4614:165:4"},{"body":{"id":2799,"nodeType":"Block","src":"4866:64:4","statements":[{"expression":{"arguments":[{"id":2793,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"4891:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2794,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2728,"src":"4906:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2796,"indexExpression":{"id":2795,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4916:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4906:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2792,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4880:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2798,"nodeType":"ExpressionStatement","src":"4880:39:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2785,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4839:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2786,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2728,"src":"4843:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4853:6:4","memberName":"length","nodeType":"MemberAccess","src":"4843:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4839:20:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2800,"initializationExpression":{"assignments":[2782],"declarations":[{"constant":false,"id":2782,"mutability":"mutable","name":"i","nameLocation":"4832:1:4","nodeType":"VariableDeclaration","scope":2800,"src":"4824:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2781,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2784,"initialValue":{"hexValue":"30","id":2783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4836:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4824:13:4"},"loopExpression":{"expression":{"id":2790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4861:3:4","subExpression":{"id":2789,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4863:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2791,"nodeType":"ExpressionStatement","src":"4861:3:4"},"nodeType":"ForStatement","src":"4819:111:4"},{"expression":{"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2801,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"4940:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2802,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"4952:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4940:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2804,"nodeType":"ExpressionStatement","src":"4940:20:4"},{"eventCall":{"arguments":[{"hexValue":"30","id":2806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4990:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":2807,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"4993:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2805,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2719,"src":"4975:14:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":2808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4975:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2809,"nodeType":"EmitStatement","src":"4970:32:4"}]},"documentation":{"id":2720,"nodeType":"StructuredDocumentation","src":"3484:759:4","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":2811,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2722,"mutability":"mutable","name":"minDelay","nameLocation":"4268:8:4","nodeType":"VariableDeclaration","scope":2811,"src":"4260:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2721,"name":"uint256","nodeType":"ElementaryTypeName","src":"4260:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2725,"mutability":"mutable","name":"proposers","nameLocation":"4295:9:4","nodeType":"VariableDeclaration","scope":2811,"src":"4278:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2723,"name":"address","nodeType":"ElementaryTypeName","src":"4278:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2724,"nodeType":"ArrayTypeName","src":"4278:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2728,"mutability":"mutable","name":"executors","nameLocation":"4323:9:4","nodeType":"VariableDeclaration","scope":2811,"src":"4306:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2726,"name":"address","nodeType":"ElementaryTypeName","src":"4306:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2727,"nodeType":"ArrayTypeName","src":"4306:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2730,"mutability":"mutable","name":"admin","nameLocation":"4342:5:4","nodeType":"VariableDeclaration","scope":2811,"src":"4334:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2729,"name":"address","nodeType":"ElementaryTypeName","src":"4334:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4259:89:4"},"returnParameters":{"id":2732,"nodeType":"ParameterList","parameters":[],"src":"4349:0:4"},"scope":3608,"src":"4248:761:4","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2833,"nodeType":"Block","src":"5333:114:4","statements":[{"condition":{"id":2823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5347:26:4","subExpression":{"arguments":[{"id":2817,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5356:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":2820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5370:1:4","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":2819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2818,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:4","typeDescriptions":{}}},"id":2821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2816,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"5348:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":2822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5348:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2831,"nodeType":"IfStatement","src":"5343:87:4","trueBody":{"id":2830,"nodeType":"Block","src":"5375:55:4","statements":[{"expression":{"arguments":[{"id":2825,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5400:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":2826,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"5406:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5406:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2824,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":114,"src":"5389:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":2828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:30:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2829,"nodeType":"ExpressionStatement","src":"5389:30:4"}]}},{"id":2832,"nodeType":"PlaceholderStatement","src":"5439:1:4"}]},"documentation":{"id":2812,"nodeType":"StructuredDocumentation","src":"5015:271:4","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":2834,"name":"onlyRoleOrOpenRole","nameLocation":"5300:18:4","nodeType":"ModifierDefinition","parameters":{"id":2815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2814,"mutability":"mutable","name":"role","nameLocation":"5327:4:4","nodeType":"VariableDeclaration","scope":2834,"src":"5319:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2813,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5318:14:4"},"src":"5291:156:4","virtual":false,"visibility":"internal"},{"body":{"id":2838,"nodeType":"Block","src":"5576:2:4","statements":[]},"documentation":{"id":2835,"nodeType":"StructuredDocumentation","src":"5453:91:4","text":" @dev Contract might receive/hold ETH as part of the maintenance process."},"id":2839,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2836,"nodeType":"ParameterList","parameters":[],"src":"5556:2:4"},"returnParameters":{"id":2837,"nodeType":"ParameterList","parameters":[],"src":"5576:0:4"},"scope":3608,"src":"5549:29:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"baseFunctions":[62,5587],"body":{"id":2855,"nodeType":"Block","src":"5780:60:4","statements":[{"expression":{"arguments":[{"id":2852,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2842,"src":"5821:11:4","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":2850,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5797:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TimelockController_$3608_$","typeString":"type(contract super TimelockController)"}},"id":2851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5803:17:4","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":5587,"src":"5797:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":2853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5797:36:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2849,"id":2854,"nodeType":"Return","src":"5790:43:4"}]},"documentation":{"id":2840,"nodeType":"StructuredDocumentation","src":"5584:56:4","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":2856,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"5654:17:4","nodeType":"FunctionDefinition","overrides":{"id":2846,"nodeType":"OverrideSpecifier","overrides":[{"id":2844,"name":"AccessControl","nameLocations":["5735:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"5735:13:4"},{"id":2845,"name":"ERC1155Holder","nameLocations":["5750:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":5632,"src":"5750:13:4"}],"src":"5726:38:4"},"parameters":{"id":2843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2842,"mutability":"mutable","name":"interfaceId","nameLocation":"5688:11:4","nodeType":"VariableDeclaration","scope":2856,"src":"5681:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2841,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5681:6:4","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5671:34:4"},"returnParameters":{"id":2849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2848,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2856,"src":"5774:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2847,"name":"bool","nodeType":"ElementaryTypeName","src":"5774:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5773:6:4"},"scope":3608,"src":"5645:195:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2871,"nodeType":"Block","src":"6058:69:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2865,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2859,"src":"6093:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2864,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6075:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6075:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":2867,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6100:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6115:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"6100:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6075:45:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2863,"id":2870,"nodeType":"Return","src":"6068:52:4"}]},"documentation":{"id":2857,"nodeType":"StructuredDocumentation","src":"5846:147:4","text":" @dev Returns whether an id corresponds to a registered operation. This\n includes both Waiting, Ready, and Done operations."},"functionSelector":"31d50750","id":2872,"implemented":true,"kind":"function","modifiers":[],"name":"isOperation","nameLocation":"6007:11:4","nodeType":"FunctionDefinition","parameters":{"id":2860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2859,"mutability":"mutable","name":"id","nameLocation":"6027:2:4","nodeType":"VariableDeclaration","scope":2872,"src":"6019:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2858,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6019:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6018:12:4"},"returnParameters":{"id":2863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2872,"src":"6052:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2861,"name":"bool","nodeType":"ElementaryTypeName","src":"6052:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6051:6:4"},"scope":3608,"src":"5998:129:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2897,"nodeType":"Block","src":"6329:142:4","statements":[{"assignments":[2882],"declarations":[{"constant":false,"id":2882,"mutability":"mutable","name":"state","nameLocation":"6354:5:4","nodeType":"VariableDeclaration","scope":2897,"src":"6339:20:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":2881,"nodeType":"UserDefinedTypeName","pathNode":{"id":2880,"name":"OperationState","nameLocations":["6339:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"6339:14:4"},"referencedDeclaration":2637,"src":"6339:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"id":2886,"initialValue":{"arguments":[{"id":2884,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2875,"src":"6380:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2883,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6362:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6362:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"VariableDeclarationStatement","src":"6339:44:4"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2887,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2882,"src":"6400:5:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2888,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6409:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6424:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"6409:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6400:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2891,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2882,"src":"6435:5:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2892,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6444:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6459:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"6444:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6435:29:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6400:64:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2879,"id":2896,"nodeType":"Return","src":"6393:71:4"}]},"documentation":{"id":2873,"nodeType":"StructuredDocumentation","src":"6133:124:4","text":" @dev Returns whether an operation is pending or not. Note that a \"pending\" operation may also be \"ready\"."},"functionSelector":"584b153e","id":2898,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationPending","nameLocation":"6271:18:4","nodeType":"FunctionDefinition","parameters":{"id":2876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2875,"mutability":"mutable","name":"id","nameLocation":"6298:2:4","nodeType":"VariableDeclaration","scope":2898,"src":"6290:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6290:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6289:12:4"},"returnParameters":{"id":2879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2878,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2898,"src":"6323:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2877,"name":"bool","nodeType":"ElementaryTypeName","src":"6323:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6322:6:4"},"scope":3608,"src":"6262:209:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2913,"nodeType":"Block","src":"6672:69:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2907,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2901,"src":"6707:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2906,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6689:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6689:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2909,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6714:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6729:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"6714:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6689:45:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2905,"id":2912,"nodeType":"Return","src":"6682:52:4"}]},"documentation":{"id":2899,"nodeType":"StructuredDocumentation","src":"6477:125:4","text":" @dev Returns whether an operation is ready for execution. Note that a \"ready\" operation is also \"pending\"."},"functionSelector":"13bc9f20","id":2914,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationReady","nameLocation":"6616:16:4","nodeType":"FunctionDefinition","parameters":{"id":2902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2901,"mutability":"mutable","name":"id","nameLocation":"6641:2:4","nodeType":"VariableDeclaration","scope":2914,"src":"6633:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2900,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6633:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6632:12:4"},"returnParameters":{"id":2905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2914,"src":"6666:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2903,"name":"bool","nodeType":"ElementaryTypeName","src":"6666:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6665:6:4"},"scope":3608,"src":"6607:134:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2929,"nodeType":"Block","src":"6884:68:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2923,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2917,"src":"6919:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2922,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6901:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6901:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2925,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6926:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2926,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6941:4:4","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2636,"src":"6926:19:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6901:44:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2921,"id":2928,"nodeType":"Return","src":"6894:51:4"}]},"documentation":{"id":2915,"nodeType":"StructuredDocumentation","src":"6747:68:4","text":" @dev Returns whether an operation is done or not."},"functionSelector":"2ab0f529","id":2930,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationDone","nameLocation":"6829:15:4","nodeType":"FunctionDefinition","parameters":{"id":2918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2917,"mutability":"mutable","name":"id","nameLocation":"6853:2:4","nodeType":"VariableDeclaration","scope":2930,"src":"6845:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2916,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6845:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6844:12:4"},"returnParameters":{"id":2921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2930,"src":"6878:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2919,"name":"bool","nodeType":"ElementaryTypeName","src":"6878:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6877:6:4"},"scope":3608,"src":"6820:132:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2942,"nodeType":"Block","src":"7172:39:4","statements":[{"expression":{"baseExpression":{"id":2938,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"7189:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":2940,"indexExpression":{"id":2939,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2933,"src":"7201:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7189:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2937,"id":2941,"nodeType":"Return","src":"7182:22:4"}]},"documentation":{"id":2931,"nodeType":"StructuredDocumentation","src":"6958:137:4","text":" @dev Returns the timestamp at which an operation becomes ready (0 for\n unset operations, 1 for done operations)."},"functionSelector":"d45c4435","id":2943,"implemented":true,"kind":"function","modifiers":[],"name":"getTimestamp","nameLocation":"7109:12:4","nodeType":"FunctionDefinition","parameters":{"id":2934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2933,"mutability":"mutable","name":"id","nameLocation":"7130:2:4","nodeType":"VariableDeclaration","scope":2943,"src":"7122:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2932,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7122:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7121:12:4"},"returnParameters":{"id":2937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2936,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2943,"src":"7163:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2935,"name":"uint256","nodeType":"ElementaryTypeName","src":"7163:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7162:9:4"},"scope":3608,"src":"7100:111:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2987,"nodeType":"Block","src":"7354:376:4","statements":[{"assignments":[2953],"declarations":[{"constant":false,"id":2953,"mutability":"mutable","name":"timestamp","nameLocation":"7372:9:4","nodeType":"VariableDeclaration","scope":2987,"src":"7364:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2952,"name":"uint256","nodeType":"ElementaryTypeName","src":"7364:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2957,"initialValue":{"arguments":[{"id":2955,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"7397:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2954,"name":"getTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"7384:12:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) view returns (uint256)"}},"id":2956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7384:16:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7364:36:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2958,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7414:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7427:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7414:14:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2965,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7492:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2966,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2626,"src":"7505:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7492:28:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2972,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7583:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":2973,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7595:5:4","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7601:9:4","memberName":"timestamp","nodeType":"MemberAccess","src":"7595:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7583:27:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2983,"nodeType":"Block","src":"7672:52:4","statements":[{"expression":{"expression":{"id":2980,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7693:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7708:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"7693:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2982,"nodeType":"Return","src":"7686:27:4"}]},"id":2984,"nodeType":"IfStatement","src":"7579:145:4","trueBody":{"id":2979,"nodeType":"Block","src":"7612:54:4","statements":[{"expression":{"expression":{"id":2976,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7633:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7648:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"7633:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2978,"nodeType":"Return","src":"7626:29:4"}]}},"id":2985,"nodeType":"IfStatement","src":"7488:236:4","trueBody":{"id":2971,"nodeType":"Block","src":"7522:51:4","statements":[{"expression":{"expression":{"id":2968,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7543:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7558:4:4","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2636,"src":"7543:19:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2970,"nodeType":"Return","src":"7536:26:4"}]}},"id":2986,"nodeType":"IfStatement","src":"7410:314:4","trueBody":{"id":2964,"nodeType":"Block","src":"7430:52:4","statements":[{"expression":{"expression":{"id":2961,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7451:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7466:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"7451:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2963,"nodeType":"Return","src":"7444:27:4"}]}}]},"documentation":{"id":2944,"nodeType":"StructuredDocumentation","src":"7217:48:4","text":" @dev Returns operation state."},"functionSelector":"7958004c","id":2988,"implemented":true,"kind":"function","modifiers":[],"name":"getOperationState","nameLocation":"7279:17:4","nodeType":"FunctionDefinition","parameters":{"id":2947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2946,"mutability":"mutable","name":"id","nameLocation":"7305:2:4","nodeType":"VariableDeclaration","scope":2988,"src":"7297:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2945,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7297:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7296:12:4"},"returnParameters":{"id":2951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2988,"src":"7338:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":2949,"nodeType":"UserDefinedTypeName","pathNode":{"id":2948,"name":"OperationState","nameLocations":["7338:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"7338:14:4"},"referencedDeclaration":2637,"src":"7338:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"7337:16:4"},"scope":3608,"src":"7270:460:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2996,"nodeType":"Block","src":"7988:33:4","statements":[{"expression":{"id":2994,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"8005:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2993,"id":2995,"nodeType":"Return","src":"7998:16:4"}]},"documentation":{"id":2989,"nodeType":"StructuredDocumentation","src":"7736:186:4","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":2997,"implemented":true,"kind":"function","modifiers":[],"name":"getMinDelay","nameLocation":"7936:11:4","nodeType":"FunctionDefinition","parameters":{"id":2990,"nodeType":"ParameterList","parameters":[],"src":"7947:2:4"},"returnParameters":{"id":2993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2997,"src":"7979:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2991,"name":"uint256","nodeType":"ElementaryTypeName","src":"7979:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7978:9:4"},"scope":3608,"src":"7927:94:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3024,"nodeType":"Block","src":"8328:85:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":3016,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"8366:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"8374:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3018,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3004,"src":"8381:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3019,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3006,"src":"8387:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3020,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3008,"src":"8400:4:4","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":3014,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"8355:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8359:6:4","memberName":"encode","nodeType":"MemberAccess","src":"8355:10:4","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8355:50:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3013,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8345:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8345:61:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3012,"id":3023,"nodeType":"Return","src":"8338:68:4"}]},"documentation":{"id":2998,"nodeType":"StructuredDocumentation","src":"8027:102:4","text":" @dev Returns the identifier of an operation containing a single\n transaction."},"functionSelector":"8065657f","id":3025,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"8143:13:4","nodeType":"FunctionDefinition","parameters":{"id":3009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3000,"mutability":"mutable","name":"target","nameLocation":"8174:6:4","nodeType":"VariableDeclaration","scope":3025,"src":"8166:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2999,"name":"address","nodeType":"ElementaryTypeName","src":"8166:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3002,"mutability":"mutable","name":"value","nameLocation":"8198:5:4","nodeType":"VariableDeclaration","scope":3025,"src":"8190:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3001,"name":"uint256","nodeType":"ElementaryTypeName","src":"8190:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3004,"mutability":"mutable","name":"data","nameLocation":"8228:4:4","nodeType":"VariableDeclaration","scope":3025,"src":"8213:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3003,"name":"bytes","nodeType":"ElementaryTypeName","src":"8213:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3006,"mutability":"mutable","name":"predecessor","nameLocation":"8250:11:4","nodeType":"VariableDeclaration","scope":3025,"src":"8242:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3005,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8242:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3008,"mutability":"mutable","name":"salt","nameLocation":"8279:4:4","nodeType":"VariableDeclaration","scope":3025,"src":"8271:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3007,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8271:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8156:133:4"},"returnParameters":{"id":3012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3011,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3025,"src":"8319:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3010,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8318:9:4"},"scope":3608,"src":"8134:279:4","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3055,"nodeType":"Block","src":"8758:91:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":3047,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3029,"src":"8796:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3048,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3032,"src":"8805:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3049,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3035,"src":"8813:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3050,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3037,"src":"8823:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3051,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3039,"src":"8836:4:4","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":3045,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"8785:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8789:6:4","memberName":"encode","nodeType":"MemberAccess","src":"8785:10:4","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8785:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3044,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8775:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8775:67:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3043,"id":3054,"nodeType":"Return","src":"8768:74:4"}]},"documentation":{"id":3026,"nodeType":"StructuredDocumentation","src":"8419:105:4","text":" @dev Returns the identifier of an operation containing a batch of\n transactions."},"functionSelector":"b1c5f427","id":3056,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperationBatch","nameLocation":"8538:18:4","nodeType":"FunctionDefinition","parameters":{"id":3040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3029,"mutability":"mutable","name":"targets","nameLocation":"8585:7:4","nodeType":"VariableDeclaration","scope":3056,"src":"8566:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3027,"name":"address","nodeType":"ElementaryTypeName","src":"8566:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3028,"nodeType":"ArrayTypeName","src":"8566:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3032,"mutability":"mutable","name":"values","nameLocation":"8621:6:4","nodeType":"VariableDeclaration","scope":3056,"src":"8602:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3030,"name":"uint256","nodeType":"ElementaryTypeName","src":"8602:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3031,"nodeType":"ArrayTypeName","src":"8602:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3035,"mutability":"mutable","name":"payloads","nameLocation":"8654:8:4","nodeType":"VariableDeclaration","scope":3056,"src":"8637:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3033,"name":"bytes","nodeType":"ElementaryTypeName","src":"8637:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3034,"nodeType":"ArrayTypeName","src":"8637:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3037,"mutability":"mutable","name":"predecessor","nameLocation":"8680:11:4","nodeType":"VariableDeclaration","scope":3056,"src":"8672:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3036,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8672:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3039,"mutability":"mutable","name":"salt","nameLocation":"8709:4:4","nodeType":"VariableDeclaration","scope":3056,"src":"8701:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8701:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8556:163:4"},"returnParameters":{"id":3043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3042,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3056,"src":"8749:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8749:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8748:9:4"},"scope":3608,"src":"8529:320:4","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3113,"nodeType":"Block","src":"9309:270:4","statements":[{"assignments":[3076],"declarations":[{"constant":false,"id":3076,"mutability":"mutable","name":"id","nameLocation":"9327:2:4","nodeType":"VariableDeclaration","scope":3113,"src":"9319:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3075,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3084,"initialValue":{"arguments":[{"id":3078,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"9346:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3079,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3061,"src":"9354:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3080,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"9361:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3081,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3065,"src":"9367:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3082,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9380:4:4","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":3077,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"9332:13:4","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":3083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9332:53:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9319:66:4"},{"expression":{"arguments":[{"id":3086,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9405:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3087,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"9409:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3085,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"9395:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9395:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3089,"nodeType":"ExpressionStatement","src":"9395:20:4"},{"eventCall":{"arguments":[{"id":3091,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9444:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9448:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3093,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"9451:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3094,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3061,"src":"9459:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3095,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"9466:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3096,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3065,"src":"9472:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3097,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"9485:5:4","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":3090,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"9430:13:4","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":3098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9430:61:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3099,"nodeType":"EmitStatement","src":"9425:66:4"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3100,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9505:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9521:1:4","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":3102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9513:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3101,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9513:7:4","typeDescriptions":{}}},"id":3104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9513:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"9505:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3112,"nodeType":"IfStatement","src":"9501:72:4","trueBody":{"id":3111,"nodeType":"Block","src":"9525:48:4","statements":[{"eventCall":{"arguments":[{"id":3107,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9553:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3108,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9557:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3106,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2707,"src":"9544:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9544:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3110,"nodeType":"EmitStatement","src":"9539:23:4"}]}}]},"documentation":{"id":3057,"nodeType":"StructuredDocumentation","src":"8855:236:4","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":3114,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3072,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"9294:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3073,"kind":"modifierInvocation","modifierName":{"id":3071,"name":"onlyRole","nameLocations":["9285:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"9285:8:4"},"nodeType":"ModifierInvocation","src":"9285:23:4"}],"name":"schedule","nameLocation":"9105:8:4","nodeType":"FunctionDefinition","parameters":{"id":3070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3059,"mutability":"mutable","name":"target","nameLocation":"9131:6:4","nodeType":"VariableDeclaration","scope":3114,"src":"9123:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3058,"name":"address","nodeType":"ElementaryTypeName","src":"9123:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3061,"mutability":"mutable","name":"value","nameLocation":"9155:5:4","nodeType":"VariableDeclaration","scope":3114,"src":"9147:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3060,"name":"uint256","nodeType":"ElementaryTypeName","src":"9147:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3063,"mutability":"mutable","name":"data","nameLocation":"9185:4:4","nodeType":"VariableDeclaration","scope":3114,"src":"9170:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3062,"name":"bytes","nodeType":"ElementaryTypeName","src":"9170:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3065,"mutability":"mutable","name":"predecessor","nameLocation":"9207:11:4","nodeType":"VariableDeclaration","scope":3114,"src":"9199:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3064,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9199:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3067,"mutability":"mutable","name":"salt","nameLocation":"9236:4:4","nodeType":"VariableDeclaration","scope":3114,"src":"9228:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3066,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9228:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3069,"mutability":"mutable","name":"delay","nameLocation":"9258:5:4","nodeType":"VariableDeclaration","scope":3114,"src":"9250:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3068,"name":"uint256","nodeType":"ElementaryTypeName","src":"9250:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9113:156:4"},"returnParameters":{"id":3074,"nodeType":"ParameterList","parameters":[],"src":"9309:0:4"},"scope":3608,"src":"9096:483:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3215,"nodeType":"Block","src":"10116:559:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3136,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10130:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10138:6:4","memberName":"length","nodeType":"MemberAccess","src":"10130:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3138,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10148:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10155:6:4","memberName":"length","nodeType":"MemberAccess","src":"10148:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10130:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3141,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10165:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10173:6:4","memberName":"length","nodeType":"MemberAccess","src":"10165:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3143,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10183:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10192:6:4","memberName":"length","nodeType":"MemberAccess","src":"10183:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10165:33:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10130:68:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3157,"nodeType":"IfStatement","src":"10126:184:4","trueBody":{"id":3156,"nodeType":"Block","src":"10200:110:4","statements":[{"errorCall":{"arguments":[{"expression":{"id":3148,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10252:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10260:6:4","memberName":"length","nodeType":"MemberAccess","src":"10252:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3150,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10268:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10277:6:4","memberName":"length","nodeType":"MemberAccess","src":"10268:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3152,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10285:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10292:6:4","memberName":"length","nodeType":"MemberAccess","src":"10285:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3147,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2646,"src":"10221:30:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10221:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3155,"nodeType":"RevertStatement","src":"10214:85:4"}]}},{"assignments":[3159],"declarations":[{"constant":false,"id":3159,"mutability":"mutable","name":"id","nameLocation":"10328:2:4","nodeType":"VariableDeclaration","scope":3215,"src":"10320:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10320:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3167,"initialValue":{"arguments":[{"id":3161,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10352:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3162,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10361:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3163,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10369:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3164,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3126,"src":"10379:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3165,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10392:4:4","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":3160,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3056,"src":"10333:18:4","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":3166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10333:64:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"10320:77:4"},{"expression":{"arguments":[{"id":3169,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10417:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3170,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"10421:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3168,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"10407:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10407:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3172,"nodeType":"ExpressionStatement","src":"10407:20:4"},{"body":{"id":3200,"nodeType":"Block","src":"10482:106:4","statements":[{"eventCall":{"arguments":[{"id":3185,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10515:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3186,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10519:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3187,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10522:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3189,"indexExpression":{"id":3188,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10530:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10522:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":3190,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10534:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3192,"indexExpression":{"id":3191,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10541:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10534:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3193,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10545:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3195,"indexExpression":{"id":3194,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10554:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10545:11:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3196,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3126,"src":"10558:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3197,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"10571:5:4","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":3184,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"10501:13:4","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":3198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10501:76:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3199,"nodeType":"EmitStatement","src":"10496:81:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3177,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10457:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3178,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10461:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10469:6:4","memberName":"length","nodeType":"MemberAccess","src":"10461:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10457:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3201,"initializationExpression":{"assignments":[3174],"declarations":[{"constant":false,"id":3174,"mutability":"mutable","name":"i","nameLocation":"10450:1:4","nodeType":"VariableDeclaration","scope":3201,"src":"10442:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3173,"name":"uint256","nodeType":"ElementaryTypeName","src":"10442:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3176,"initialValue":{"hexValue":"30","id":3175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10454:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10442:13:4"},"loopExpression":{"expression":{"id":3182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10477:3:4","subExpression":{"id":3181,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10479:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3183,"nodeType":"ExpressionStatement","src":"10477:3:4"},"nodeType":"ForStatement","src":"10437:151:4"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3202,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10601:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10617:1:4","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":3204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10609:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3203,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10609:7:4","typeDescriptions":{}}},"id":3206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10609:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10601:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3214,"nodeType":"IfStatement","src":"10597:72:4","trueBody":{"id":3213,"nodeType":"Block","src":"10621:48:4","statements":[{"eventCall":{"arguments":[{"id":3209,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10649:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3210,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10653:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3208,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2707,"src":"10640:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10640:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3212,"nodeType":"EmitStatement","src":"10635:23:4"}]}}]},"documentation":{"id":3115,"nodeType":"StructuredDocumentation","src":"9585:278:4","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":3216,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3133,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"10101:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3134,"kind":"modifierInvocation","modifierName":{"id":3132,"name":"onlyRole","nameLocations":["10092:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"10092:8:4"},"nodeType":"ModifierInvocation","src":"10092:23:4"}],"name":"scheduleBatch","nameLocation":"9877:13:4","nodeType":"FunctionDefinition","parameters":{"id":3131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3118,"mutability":"mutable","name":"targets","nameLocation":"9919:7:4","nodeType":"VariableDeclaration","scope":3216,"src":"9900:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3116,"name":"address","nodeType":"ElementaryTypeName","src":"9900:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3117,"nodeType":"ArrayTypeName","src":"9900:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3121,"mutability":"mutable","name":"values","nameLocation":"9955:6:4","nodeType":"VariableDeclaration","scope":3216,"src":"9936:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3119,"name":"uint256","nodeType":"ElementaryTypeName","src":"9936:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3120,"nodeType":"ArrayTypeName","src":"9936:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3124,"mutability":"mutable","name":"payloads","nameLocation":"9988:8:4","nodeType":"VariableDeclaration","scope":3216,"src":"9971:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3122,"name":"bytes","nodeType":"ElementaryTypeName","src":"9971:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3123,"nodeType":"ArrayTypeName","src":"9971:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3126,"mutability":"mutable","name":"predecessor","nameLocation":"10014:11:4","nodeType":"VariableDeclaration","scope":3216,"src":"10006:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10006:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3128,"mutability":"mutable","name":"salt","nameLocation":"10043:4:4","nodeType":"VariableDeclaration","scope":3216,"src":"10035:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3127,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10035:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3130,"mutability":"mutable","name":"delay","nameLocation":"10065:5:4","nodeType":"VariableDeclaration","scope":3216,"src":"10057:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3129,"name":"uint256","nodeType":"ElementaryTypeName","src":"10057:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9890:186:4"},"returnParameters":{"id":3135,"nodeType":"ParameterList","parameters":[],"src":"10116:0:4"},"scope":3608,"src":"9868:807:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3261,"nodeType":"Block","src":"10830:345:4","statements":[{"condition":{"arguments":[{"id":3225,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"10856:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3224,"name":"isOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2872,"src":"10844:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10844:15:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3236,"nodeType":"IfStatement","src":"10840:131:4","trueBody":{"id":3235,"nodeType":"Block","src":"10861:110:4","statements":[{"errorCall":{"arguments":[{"id":3228,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"10915:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3230,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"10938:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10953:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"10938:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3229,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"10919:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3227,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"10882:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10882:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3234,"nodeType":"RevertStatement","src":"10875:85:4"}]}},{"assignments":[3238],"declarations":[{"constant":false,"id":3238,"mutability":"mutable","name":"minDelay","nameLocation":"10988:8:4","nodeType":"VariableDeclaration","scope":3261,"src":"10980:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3237,"name":"uint256","nodeType":"ElementaryTypeName","src":"10980:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3241,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3239,"name":"getMinDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2997,"src":"10999:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10999:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10980:32:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3242,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11026:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3243,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3238,"src":"11034:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11026:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3251,"nodeType":"IfStatement","src":"11022:96:4","trueBody":{"id":3250,"nodeType":"Block","src":"11044:74:4","statements":[{"errorCall":{"arguments":[{"id":3246,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11091:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3247,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3238,"src":"11098:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3245,"name":"TimelockInsufficientDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2653,"src":"11065:25:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":3248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11065:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3249,"nodeType":"RevertStatement","src":"11058:49:4"}]}},{"expression":{"id":3259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3252,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"11127:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3254,"indexExpression":{"id":3253,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"11139:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11127:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3255,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11145:5:4","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11151:9:4","memberName":"timestamp","nodeType":"MemberAccess","src":"11145:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3257,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11163:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11145:23:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11127:41:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3260,"nodeType":"ExpressionStatement","src":"11127:41:4"}]},"documentation":{"id":3217,"nodeType":"StructuredDocumentation","src":"10681:90:4","text":" @dev Schedule an operation that is to become valid after a given delay."},"id":3262,"implemented":true,"kind":"function","modifiers":[],"name":"_schedule","nameLocation":"10785:9:4","nodeType":"FunctionDefinition","parameters":{"id":3222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3219,"mutability":"mutable","name":"id","nameLocation":"10803:2:4","nodeType":"VariableDeclaration","scope":3262,"src":"10795:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3218,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10795:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3221,"mutability":"mutable","name":"delay","nameLocation":"10815:5:4","nodeType":"VariableDeclaration","scope":3262,"src":"10807:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3220,"name":"uint256","nodeType":"ElementaryTypeName","src":"10807:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10794:27:4"},"returnParameters":{"id":3223,"nodeType":"ParameterList","parameters":[],"src":"10830:0:4"},"scope":3608,"src":"10776:399:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3299,"nodeType":"Block","src":"11385:307:4","statements":[{"condition":{"id":3274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11399:23:4","subExpression":{"arguments":[{"id":3272,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11419:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3271,"name":"isOperationPending","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2898,"src":"11400:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11400:22:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3289,"nodeType":"IfStatement","src":"11395:230:4","trueBody":{"id":3288,"nodeType":"Block","src":"11424:201:4","statements":[{"errorCall":{"arguments":[{"id":3276,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11495:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":3278,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"11534:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11549:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"11534:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3277,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"11515:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11515:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":3282,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"11579:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11594:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"11579:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3281,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"11560:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11560:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"11515:85:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3275,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"11445:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11445:169:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3287,"nodeType":"RevertStatement","src":"11438:176:4"}]}},{"expression":{"id":3293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"11634:22:4","subExpression":{"baseExpression":{"id":3290,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"11641:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3292,"indexExpression":{"id":3291,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11653:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11641:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3294,"nodeType":"ExpressionStatement","src":"11634:22:4"},{"eventCall":{"arguments":[{"id":3296,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11682:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3295,"name":"Cancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2712,"src":"11672:9:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11672:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3298,"nodeType":"EmitStatement","src":"11667:18:4"}]},"documentation":{"id":3263,"nodeType":"StructuredDocumentation","src":"11181:131:4","text":" @dev Cancel an operation.\n Requirements:\n - the caller must have the 'canceller' role."},"functionSelector":"c4d252f5","id":3300,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3268,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2620,"src":"11369:14:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3269,"kind":"modifierInvocation","modifierName":{"id":3267,"name":"onlyRole","nameLocations":["11360:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"11360:8:4"},"nodeType":"ModifierInvocation","src":"11360:24:4"}],"name":"cancel","nameLocation":"11326:6:4","nodeType":"FunctionDefinition","parameters":{"id":3266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3265,"mutability":"mutable","name":"id","nameLocation":"11341:2:4","nodeType":"VariableDeclaration","scope":3300,"src":"11333:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3264,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11333:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11332:12:4"},"returnParameters":{"id":3270,"nodeType":"ParameterList","parameters":[],"src":"11385:0:4"},"scope":3608,"src":"11317:375:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3350,"nodeType":"Block","src":"12376:249:4","statements":[{"assignments":[3318],"declarations":[{"constant":false,"id":3318,"mutability":"mutable","name":"id","nameLocation":"12394:2:4","nodeType":"VariableDeclaration","scope":3350,"src":"12386:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12386:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3326,"initialValue":{"arguments":[{"id":3320,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12413:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3321,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12421:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3322,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12428:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3323,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3309,"src":"12437:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3324,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3311,"src":"12450:4:4","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":3319,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"12399:13:4","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":3325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12399:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"12386:69:4"},{"expression":{"arguments":[{"id":3328,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12478:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3329,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3309,"src":"12482:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3327,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"12466:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12466:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3331,"nodeType":"ExpressionStatement","src":"12466:28:4"},{"expression":{"arguments":[{"id":3333,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12513:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3334,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12521:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3335,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12528:7:4","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":3332,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"12504:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12504:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3337,"nodeType":"ExpressionStatement","src":"12504:32:4"},{"eventCall":{"arguments":[{"id":3339,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12564:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12568:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3341,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12571:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12579:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3343,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12586:7:4","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":3338,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"12551:12:4","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":3344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12551:43:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3345,"nodeType":"EmitStatement","src":"12546:48:4"},{"expression":{"arguments":[{"id":3347,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12615:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3346,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"12604:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12604:14:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3349,"nodeType":"ExpressionStatement","src":"12604:14:4"}]},"documentation":{"id":3301,"nodeType":"StructuredDocumentation","src":"11698:215:4","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":3351,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3314,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"12361:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3315,"kind":"modifierInvocation","modifierName":{"id":3313,"name":"onlyRoleOrOpenRole","nameLocations":["12342:18:4"],"nodeType":"IdentifierPath","referencedDeclaration":2834,"src":"12342:18:4"},"nodeType":"ModifierInvocation","src":"12342:33:4"}],"name":"execute","nameLocation":"12175:7:4","nodeType":"FunctionDefinition","parameters":{"id":3312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3303,"mutability":"mutable","name":"target","nameLocation":"12200:6:4","nodeType":"VariableDeclaration","scope":3351,"src":"12192:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3302,"name":"address","nodeType":"ElementaryTypeName","src":"12192:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3305,"mutability":"mutable","name":"value","nameLocation":"12224:5:4","nodeType":"VariableDeclaration","scope":3351,"src":"12216:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3304,"name":"uint256","nodeType":"ElementaryTypeName","src":"12216:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3307,"mutability":"mutable","name":"payload","nameLocation":"12254:7:4","nodeType":"VariableDeclaration","scope":3351,"src":"12239:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3306,"name":"bytes","nodeType":"ElementaryTypeName","src":"12239:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3309,"mutability":"mutable","name":"predecessor","nameLocation":"12279:11:4","nodeType":"VariableDeclaration","scope":3351,"src":"12271:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12271:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3311,"mutability":"mutable","name":"salt","nameLocation":"12308:4:4","nodeType":"VariableDeclaration","scope":3351,"src":"12300:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12300:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12182:136:4"},"returnParameters":{"id":3316,"nodeType":"ParameterList","parameters":[],"src":"12376:0:4"},"scope":3608,"src":"12166:459:4","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3457,"nodeType":"Block","src":"13375:654:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3371,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13389:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13397:6:4","memberName":"length","nodeType":"MemberAccess","src":"13389:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3373,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13407:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13414:6:4","memberName":"length","nodeType":"MemberAccess","src":"13407:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13389:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3376,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13424:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13432:6:4","memberName":"length","nodeType":"MemberAccess","src":"13424:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3378,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13442:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13451:6:4","memberName":"length","nodeType":"MemberAccess","src":"13442:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13424:33:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13389:68:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3392,"nodeType":"IfStatement","src":"13385:184:4","trueBody":{"id":3391,"nodeType":"Block","src":"13459:110:4","statements":[{"errorCall":{"arguments":[{"expression":{"id":3383,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13511:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13519:6:4","memberName":"length","nodeType":"MemberAccess","src":"13511:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3385,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13527:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13536:6:4","memberName":"length","nodeType":"MemberAccess","src":"13527:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3387,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13544:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13551:6:4","memberName":"length","nodeType":"MemberAccess","src":"13544:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3382,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2646,"src":"13480:30:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13480:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3390,"nodeType":"RevertStatement","src":"13473:85:4"}]}},{"assignments":[3394],"declarations":[{"constant":false,"id":3394,"mutability":"mutable","name":"id","nameLocation":"13587:2:4","nodeType":"VariableDeclaration","scope":3457,"src":"13579:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13579:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3402,"initialValue":{"arguments":[{"id":3396,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13611:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3397,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13620:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3398,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13628:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3399,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"13638:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3400,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3365,"src":"13651:4:4","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":3395,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3056,"src":"13592:18:4","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":3401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13592:64:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"13579:77:4"},{"expression":{"arguments":[{"id":3404,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"13679:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3405,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"13683:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3403,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"13667:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13667:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3407,"nodeType":"ExpressionStatement","src":"13667:28:4"},{"body":{"id":3451,"nodeType":"Block","src":"13750:249:4","statements":[{"assignments":[3420],"declarations":[{"constant":false,"id":3420,"mutability":"mutable","name":"target","nameLocation":"13772:6:4","nodeType":"VariableDeclaration","scope":3451,"src":"13764:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3419,"name":"address","nodeType":"ElementaryTypeName","src":"13764:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3424,"initialValue":{"baseExpression":{"id":3421,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13781:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3423,"indexExpression":{"id":3422,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13789:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13781:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"13764:27:4"},{"assignments":[3426],"declarations":[{"constant":false,"id":3426,"mutability":"mutable","name":"value","nameLocation":"13813:5:4","nodeType":"VariableDeclaration","scope":3451,"src":"13805:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3425,"name":"uint256","nodeType":"ElementaryTypeName","src":"13805:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3430,"initialValue":{"baseExpression":{"id":3427,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13821:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3429,"indexExpression":{"id":3428,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13828:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13821:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13805:25:4"},{"assignments":[3432],"declarations":[{"constant":false,"id":3432,"mutability":"mutable","name":"payload","nameLocation":"13859:7:4","nodeType":"VariableDeclaration","scope":3451,"src":"13844:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3431,"name":"bytes","nodeType":"ElementaryTypeName","src":"13844:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3436,"initialValue":{"baseExpression":{"id":3433,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13869:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3435,"indexExpression":{"id":3434,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13878:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13869:11:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"13844:36:4"},{"expression":{"arguments":[{"id":3438,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3420,"src":"13903:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3439,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3426,"src":"13911:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3440,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3432,"src":"13918:7:4","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":3437,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"13894:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13894:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3442,"nodeType":"ExpressionStatement","src":"13894:32:4"},{"eventCall":{"arguments":[{"id":3444,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"13958:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3445,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13962:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3446,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3420,"src":"13965:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3447,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3426,"src":"13973:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3448,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3432,"src":"13980:7:4","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":3443,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"13945:12:4","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":3449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13945:43:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3450,"nodeType":"EmitStatement","src":"13940:48:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3412,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13725:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3413,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13729:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13737:6:4","memberName":"length","nodeType":"MemberAccess","src":"13729:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13725:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3452,"initializationExpression":{"assignments":[3409],"declarations":[{"constant":false,"id":3409,"mutability":"mutable","name":"i","nameLocation":"13718:1:4","nodeType":"VariableDeclaration","scope":3452,"src":"13710:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3408,"name":"uint256","nodeType":"ElementaryTypeName","src":"13710:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3411,"initialValue":{"hexValue":"30","id":3410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13722:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13710:13:4"},"loopExpression":{"expression":{"id":3417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13745:3:4","subExpression":{"id":3416,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13747:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3418,"nodeType":"ExpressionStatement","src":"13745:3:4"},"nodeType":"ForStatement","src":"13705:294:4"},{"expression":{"arguments":[{"id":3454,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"14019:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3453,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"14008:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14008:14:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3456,"nodeType":"ExpressionStatement","src":"14008:14:4"}]},"documentation":{"id":3352,"nodeType":"StructuredDocumentation","src":"12631:249:4","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":3458,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3368,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"13360:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3369,"kind":"modifierInvocation","modifierName":{"id":3367,"name":"onlyRoleOrOpenRole","nameLocations":["13341:18:4"],"nodeType":"IdentifierPath","referencedDeclaration":2834,"src":"13341:18:4"},"nodeType":"ModifierInvocation","src":"13341:33:4"}],"name":"executeBatch","nameLocation":"13142:12:4","nodeType":"FunctionDefinition","parameters":{"id":3366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3355,"mutability":"mutable","name":"targets","nameLocation":"13183:7:4","nodeType":"VariableDeclaration","scope":3458,"src":"13164:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3353,"name":"address","nodeType":"ElementaryTypeName","src":"13164:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3354,"nodeType":"ArrayTypeName","src":"13164:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3358,"mutability":"mutable","name":"values","nameLocation":"13219:6:4","nodeType":"VariableDeclaration","scope":3458,"src":"13200:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3356,"name":"uint256","nodeType":"ElementaryTypeName","src":"13200:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3357,"nodeType":"ArrayTypeName","src":"13200:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3361,"mutability":"mutable","name":"payloads","nameLocation":"13252:8:4","nodeType":"VariableDeclaration","scope":3458,"src":"13235:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3359,"name":"bytes","nodeType":"ElementaryTypeName","src":"13235:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3360,"nodeType":"ArrayTypeName","src":"13235:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3363,"mutability":"mutable","name":"predecessor","nameLocation":"13278:11:4","nodeType":"VariableDeclaration","scope":3458,"src":"13270:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3362,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13270:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3365,"mutability":"mutable","name":"salt","nameLocation":"13307:4:4","nodeType":"VariableDeclaration","scope":3458,"src":"13299:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3364,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13299:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13154:163:4"},"returnParameters":{"id":3370,"nodeType":"ParameterList","parameters":[],"src":"13375:0:4"},"scope":3608,"src":"13133:896:4","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3486,"nodeType":"Block","src":"14179:145:4","statements":[{"assignments":[3469,3471],"declarations":[{"constant":false,"id":3469,"mutability":"mutable","name":"success","nameLocation":"14195:7:4","nodeType":"VariableDeclaration","scope":3486,"src":"14190:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3468,"name":"bool","nodeType":"ElementaryTypeName","src":"14190:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3471,"mutability":"mutable","name":"returndata","nameLocation":"14217:10:4","nodeType":"VariableDeclaration","scope":3486,"src":"14204:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3470,"name":"bytes","nodeType":"ElementaryTypeName","src":"14204:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3478,"initialValue":{"arguments":[{"id":3476,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"14257:4:4","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":3472,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3461,"src":"14231:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14238:4:4","memberName":"call","nodeType":"MemberAccess","src":"14231:11:4","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":3475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":3474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3463,"src":"14250:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"14231:25:4","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":3477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14231:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"14189:73:4"},{"expression":{"arguments":[{"id":3482,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"14297:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3483,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3471,"src":"14306:10:4","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":3479,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"14272:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":3481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14280:16:4","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"14272:24:4","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":3484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14272:45:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3485,"nodeType":"ExpressionStatement","src":"14272:45:4"}]},"documentation":{"id":3459,"nodeType":"StructuredDocumentation","src":"14035:52:4","text":" @dev Execute an operation's call."},"id":3487,"implemented":true,"kind":"function","modifiers":[],"name":"_execute","nameLocation":"14101:8:4","nodeType":"FunctionDefinition","parameters":{"id":3466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3461,"mutability":"mutable","name":"target","nameLocation":"14118:6:4","nodeType":"VariableDeclaration","scope":3487,"src":"14110:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3460,"name":"address","nodeType":"ElementaryTypeName","src":"14110:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3463,"mutability":"mutable","name":"value","nameLocation":"14134:5:4","nodeType":"VariableDeclaration","scope":3487,"src":"14126:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3462,"name":"uint256","nodeType":"ElementaryTypeName","src":"14126:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3465,"mutability":"mutable","name":"data","nameLocation":"14156:4:4","nodeType":"VariableDeclaration","scope":3487,"src":"14141:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3464,"name":"bytes","nodeType":"ElementaryTypeName","src":"14141:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14109:52:4"},"returnParameters":{"id":3467,"nodeType":"ParameterList","parameters":[],"src":"14179:0:4"},"scope":3608,"src":"14092:232:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":3526,"nodeType":"Block","src":"14474:300:4","statements":[{"condition":{"id":3498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14488:21:4","subExpression":{"arguments":[{"id":3496,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"14506:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3495,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2914,"src":"14489:16:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3508,"nodeType":"IfStatement","src":"14484:137:4","trueBody":{"id":3507,"nodeType":"Block","src":"14511:110:4","statements":[{"errorCall":{"arguments":[{"id":3500,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"14565:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3502,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"14588:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3503,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14603:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"14588:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3501,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"14569:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14569:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3499,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"14532:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14532:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3506,"nodeType":"RevertStatement","src":"14525:85:4"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3509,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14634:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14657:1:4","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":3511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14649:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3510,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14649:7:4","typeDescriptions":{}}},"id":3513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14649:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14634:25:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":3518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14663:29:4","subExpression":{"arguments":[{"id":3516,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14680:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3515,"name":"isOperationDone","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2930,"src":"14664:15:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14664:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14634:58:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3525,"nodeType":"IfStatement","src":"14630:138:4","trueBody":{"id":3524,"nodeType":"Block","src":"14694:74:4","statements":[{"errorCall":{"arguments":[{"id":3521,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14745:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3520,"name":"TimelockUnexecutedPredecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2665,"src":"14715:29:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":3522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14715:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3523,"nodeType":"RevertStatement","src":"14708:49:4"}]}}]},"documentation":{"id":3488,"nodeType":"StructuredDocumentation","src":"14330:72:4","text":" @dev Checks before execution of an operation's calls."},"id":3527,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeCall","nameLocation":"14416:11:4","nodeType":"FunctionDefinition","parameters":{"id":3493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3490,"mutability":"mutable","name":"id","nameLocation":"14436:2:4","nodeType":"VariableDeclaration","scope":3527,"src":"14428:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3489,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14428:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3492,"mutability":"mutable","name":"predecessor","nameLocation":"14448:11:4","nodeType":"VariableDeclaration","scope":3527,"src":"14440:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3491,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14440:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14427:33:4"},"returnParameters":{"id":3494,"nodeType":"ParameterList","parameters":[],"src":"14474:0:4"},"scope":3608,"src":"14407:367:4","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":3553,"nodeType":"Block","src":"14896:196:4","statements":[{"condition":{"id":3536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14910:21:4","subExpression":{"arguments":[{"id":3534,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"14928:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3533,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2914,"src":"14911:16:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14911:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3546,"nodeType":"IfStatement","src":"14906:137:4","trueBody":{"id":3545,"nodeType":"Block","src":"14933:110:4","statements":[{"errorCall":{"arguments":[{"id":3538,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"14987:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3540,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"15010:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3541,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15025:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"15010:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3539,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"14991:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14991:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3537,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"14954:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14954:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3544,"nodeType":"RevertStatement","src":"14947:85:4"}]}},{"expression":{"id":3551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3547,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"15052:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3549,"indexExpression":{"id":3548,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"15064:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15052:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3550,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2626,"src":"15070:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15052:33:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3552,"nodeType":"ExpressionStatement","src":"15052:33:4"}]},"documentation":{"id":3528,"nodeType":"StructuredDocumentation","src":"14780:71:4","text":" @dev Checks after execution of an operation's calls."},"id":3554,"implemented":true,"kind":"function","modifiers":[],"name":"_afterCall","nameLocation":"14865:10:4","nodeType":"FunctionDefinition","parameters":{"id":3531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3530,"mutability":"mutable","name":"id","nameLocation":"14884:2:4","nodeType":"VariableDeclaration","scope":3554,"src":"14876:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3529,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14876:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14875:12:4"},"returnParameters":{"id":3532,"nodeType":"ParameterList","parameters":[],"src":"14896:0:4"},"scope":3608,"src":"14856:236:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3586,"nodeType":"Block","src":"15541:230:4","statements":[{"assignments":[3561],"declarations":[{"constant":false,"id":3561,"mutability":"mutable","name":"sender","nameLocation":"15559:6:4","nodeType":"VariableDeclaration","scope":3586,"src":"15551:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3560,"name":"address","nodeType":"ElementaryTypeName","src":"15551:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3564,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3562,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"15568:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15568:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"15551:29:4"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3565,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"15594:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":3568,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15612:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":3567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15604:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3566,"name":"address","nodeType":"ElementaryTypeName","src":"15604:7:4","typeDescriptions":{}}},"id":3569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15604:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15594:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3576,"nodeType":"IfStatement","src":"15590:95:4","trueBody":{"id":3575,"nodeType":"Block","src":"15619:66:4","statements":[{"errorCall":{"arguments":[{"id":3572,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"15667:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3571,"name":"TimelockUnauthorizedCaller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"15640:26:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15640:34:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3574,"nodeType":"RevertStatement","src":"15633:41:4"}]}},{"eventCall":{"arguments":[{"id":3578,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"15714:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3579,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"15725:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3577,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2719,"src":"15699:14:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15699:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3581,"nodeType":"EmitStatement","src":"15694:40:4"},{"expression":{"id":3584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3582,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"15744:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3583,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"15756:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15744:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3585,"nodeType":"ExpressionStatement","src":"15744:20:4"}]},"documentation":{"id":3555,"nodeType":"StructuredDocumentation","src":"15098:382:4","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":3587,"implemented":true,"kind":"function","modifiers":[],"name":"updateDelay","nameLocation":"15494:11:4","nodeType":"FunctionDefinition","parameters":{"id":3558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3557,"mutability":"mutable","name":"newDelay","nameLocation":"15514:8:4","nodeType":"VariableDeclaration","scope":3587,"src":"15506:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3556,"name":"uint256","nodeType":"ElementaryTypeName","src":"15506:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15505:18:4"},"returnParameters":{"id":3559,"nodeType":"ParameterList","parameters":[],"src":"15541:0:4"},"scope":3608,"src":"15485:286:4","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":3606,"nodeType":"Block","src":"16228:59:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":3598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16253:1:4","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":3601,"name":"operationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3591,"src":"16264:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16258:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3599,"name":"uint8","nodeType":"ElementaryTypeName","src":"16258:5:4","typeDescriptions":{}}},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16258:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16253:26:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3597,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16245:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3596,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16245:7:4","typeDescriptions":{}}},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16245:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3595,"id":3605,"nodeType":"Return","src":"16238:42:4"}]},"documentation":{"id":3588,"nodeType":"StructuredDocumentation","src":"15777:355:4","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":3607,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"16146:18:4","nodeType":"FunctionDefinition","parameters":{"id":3592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3591,"mutability":"mutable","name":"operationState","nameLocation":"16180:14:4","nodeType":"VariableDeclaration","scope":3607,"src":"16165:29:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":3590,"nodeType":"UserDefinedTypeName","pathNode":{"id":3589,"name":"OperationState","nameLocations":["16165:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"16165:14:4"},"referencedDeclaration":2637,"src":"16165:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"16164:31:4"},"returnParameters":{"id":3595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3607,"src":"16219:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3593,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16219:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16218:9:4"},"scope":3608,"src":"16137:150:4","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3609,"src":"1084:15205:4","usedErrors":[305,308,2646,2653,2660,2665,2670,6731],"usedEvents":[317,326,335,2687,2700,2707,2712,2719]}],"src":"117:16173:4"},"id":4},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","exportedSymbols":{"Governor":[2134],"GovernorCountingSimple":[3840]},"id":3841,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3610,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"132:24:5"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":3612,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3841,"sourceUnit":2135,"src":"158:41:5","symbolAliases":[{"foreign":{"id":3611,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"166:8:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3614,"name":"Governor","nameLocations":["323:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"323:8:5"},"id":3615,"nodeType":"InheritanceSpecifier","src":"323:8:5"}],"canonicalName":"GovernorCountingSimple","contractDependencies":[],"contractKind":"contract","documentation":{"id":3613,"nodeType":"StructuredDocumentation","src":"201:77:5","text":" @dev Extension of {Governor} for simple, 3 options, vote counting."},"fullyImplemented":false,"id":3840,"linearizedBaseContracts":[3840,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorCountingSimple","nameLocation":"297:22:5","nodeType":"ContractDefinition","nodes":[{"canonicalName":"GovernorCountingSimple.VoteType","documentation":{"id":3616,"nodeType":"StructuredDocumentation","src":"338:78:5","text":" @dev Supported vote types. Matches Governor Bravo ordering."},"id":3620,"members":[{"id":3617,"name":"Against","nameLocation":"445:7:5","nodeType":"EnumValue","src":"445:7:5"},{"id":3618,"name":"For","nameLocation":"462:3:5","nodeType":"EnumValue","src":"462:3:5"},{"id":3619,"name":"Abstain","nameLocation":"475:7:5","nodeType":"EnumValue","src":"475:7:5"}],"name":"VoteType","nameLocation":"426:8:5","nodeType":"EnumDefinition","src":"421:67:5"},{"canonicalName":"GovernorCountingSimple.ProposalVote","id":3631,"members":[{"constant":false,"id":3622,"mutability":"mutable","name":"againstVotes","nameLocation":"532:12:5","nodeType":"VariableDeclaration","scope":3631,"src":"524:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3621,"name":"uint256","nodeType":"ElementaryTypeName","src":"524:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3624,"mutability":"mutable","name":"forVotes","nameLocation":"562:8:5","nodeType":"VariableDeclaration","scope":3631,"src":"554:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3623,"name":"uint256","nodeType":"ElementaryTypeName","src":"554:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3626,"mutability":"mutable","name":"abstainVotes","nameLocation":"588:12:5","nodeType":"VariableDeclaration","scope":3631,"src":"580:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3625,"name":"uint256","nodeType":"ElementaryTypeName","src":"580:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3630,"mutability":"mutable","name":"hasVoted","nameLocation":"641:8:5","nodeType":"VariableDeclaration","scope":3631,"src":"610:39:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":3629,"keyName":"voter","keyNameLocation":"626:5:5","keyType":{"id":3627,"name":"address","nodeType":"ElementaryTypeName","src":"618:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"610:30:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3628,"name":"bool","nodeType":"ElementaryTypeName","src":"635:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"ProposalVote","nameLocation":"501:12:5","nodeType":"StructDefinition","scope":3840,"src":"494:162:5","visibility":"public"},{"constant":false,"id":3636,"mutability":"mutable","name":"_proposalVotes","nameLocation":"714:14:5","nodeType":"VariableDeclaration","scope":3840,"src":"662:66:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"typeName":{"id":3635,"keyName":"proposalId","keyNameLocation":"678:10:5","keyType":{"id":3632,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"662:43:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3634,"nodeType":"UserDefinedTypeName","pathNode":{"id":3633,"name":"ProposalVote","nameLocations":["692:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"692:12:5"},"referencedDeclaration":3631,"src":"692:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}}},"visibility":"private"},{"baseFunctions":[2327],"body":{"id":3645,"nodeType":"Block","src":"925:58:5","statements":[{"expression":{"hexValue":"737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e","id":3643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"942:34:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_a3816e28b29b48b8e7bf93291116c21473ef28186248d173042d1986430466e1","typeString":"literal_string \"support=bravo&quorum=for,abstain\""},"value":"support=bravo&quorum=for,abstain"},"functionReturnParameters":3642,"id":3644,"nodeType":"Return","src":"935:41:5"}]},"documentation":{"id":3637,"nodeType":"StructuredDocumentation","src":"735:54:5","text":" @dev See {IGovernor-COUNTING_MODE}."},"functionSelector":"dd4e2ba5","id":3646,"implemented":true,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"856:13:5","nodeType":"FunctionDefinition","overrides":{"id":3639,"nodeType":"OverrideSpecifier","overrides":[],"src":"892:8:5"},"parameters":{"id":3638,"nodeType":"ParameterList","parameters":[],"src":"869:2:5"},"returnParameters":{"id":3642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3646,"src":"910:13:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3640,"name":"string","nodeType":"ElementaryTypeName","src":"910:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"909:15:5"},"scope":3840,"src":"847:136:5","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2451],"body":{"id":3664,"nodeType":"Block","src":"1142:68:5","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":3657,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1159:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3659,"indexExpression":{"id":3658,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3649,"src":"1174:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"id":3660,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1186:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"1159:35:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3662,"indexExpression":{"id":3661,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3651,"src":"1195:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:44:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3656,"id":3663,"nodeType":"Return","src":"1152:51:5"}]},"documentation":{"id":3647,"nodeType":"StructuredDocumentation","src":"989:49:5","text":" @dev See {IGovernor-hasVoted}."},"functionSelector":"43859632","id":3665,"implemented":true,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"1052:8:5","nodeType":"FunctionDefinition","overrides":{"id":3653,"nodeType":"OverrideSpecifier","overrides":[],"src":"1118:8:5"},"parameters":{"id":3652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3649,"mutability":"mutable","name":"proposalId","nameLocation":"1069:10:5","nodeType":"VariableDeclaration","scope":3665,"src":"1061:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3648,"name":"uint256","nodeType":"ElementaryTypeName","src":"1061:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3651,"mutability":"mutable","name":"account","nameLocation":"1089:7:5","nodeType":"VariableDeclaration","scope":3665,"src":"1081:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3650,"name":"address","nodeType":"ElementaryTypeName","src":"1081:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1060:37:5"},"returnParameters":{"id":3656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3655,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3665,"src":"1136:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3654,"name":"bool","nodeType":"ElementaryTypeName","src":"1136:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1135:6:5"},"scope":3840,"src":"1043:167:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3692,"nodeType":"Block","src":"1430:173:5","statements":[{"assignments":[3679],"declarations":[{"constant":false,"id":3679,"mutability":"mutable","name":"proposalVote","nameLocation":"1461:12:5","nodeType":"VariableDeclaration","scope":3692,"src":"1440:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3678,"nodeType":"UserDefinedTypeName","pathNode":{"id":3677,"name":"ProposalVote","nameLocations":["1440:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"1440:12:5"},"referencedDeclaration":3631,"src":"1440:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3683,"initialValue":{"baseExpression":{"id":3680,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1476:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3682,"indexExpression":{"id":3681,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3668,"src":"1491:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1476:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1440:62:5"},{"expression":{"components":[{"expression":{"id":3684,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1520:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3685,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1533:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"1520:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3686,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1547:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3687,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1560:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"1547:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3688,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1570:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3689,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1583:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"1570:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1519:77:5","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":3676,"id":3691,"nodeType":"Return","src":"1512:84:5"}]},"documentation":{"id":3666,"nodeType":"StructuredDocumentation","src":"1216:61:5","text":" @dev Accessor to the internal vote counts."},"functionSelector":"544ffc9c","id":3693,"implemented":true,"kind":"function","modifiers":[],"name":"proposalVotes","nameLocation":"1291:13:5","nodeType":"FunctionDefinition","parameters":{"id":3669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3668,"mutability":"mutable","name":"proposalId","nameLocation":"1322:10:5","nodeType":"VariableDeclaration","scope":3693,"src":"1314:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3667,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1304:34:5"},"returnParameters":{"id":3676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3671,"mutability":"mutable","name":"againstVotes","nameLocation":"1376:12:5","nodeType":"VariableDeclaration","scope":3693,"src":"1368:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3670,"name":"uint256","nodeType":"ElementaryTypeName","src":"1368:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3673,"mutability":"mutable","name":"forVotes","nameLocation":"1398:8:5","nodeType":"VariableDeclaration","scope":3693,"src":"1390:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3672,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3675,"mutability":"mutable","name":"abstainVotes","nameLocation":"1416:12:5","nodeType":"VariableDeclaration","scope":3693,"src":"1408:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3674,"name":"uint256","nodeType":"ElementaryTypeName","src":"1408:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1367:62:5"},"scope":3840,"src":"1282:321:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[837],"body":{"id":3721,"nodeType":"Block","src":"1758:186:5","statements":[{"assignments":[3704],"declarations":[{"constant":false,"id":3704,"mutability":"mutable","name":"proposalVote","nameLocation":"1789:12:5","nodeType":"VariableDeclaration","scope":3721,"src":"1768:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3703,"nodeType":"UserDefinedTypeName","pathNode":{"id":3702,"name":"ProposalVote","nameLocations":["1768:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"1768:12:5"},"referencedDeclaration":3631,"src":"1768:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3708,"initialValue":{"baseExpression":{"id":3705,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1804:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3707,"indexExpression":{"id":3706,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3696,"src":"1819:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1804:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1768:62:5"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3711,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3696,"src":"1872:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3710,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"1855:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1855:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3709,"name":"quorum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2121,"src":"1848:6:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3714,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3704,"src":"1888:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3715,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1901:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"1888:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3716,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3704,"src":"1912:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3717,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1925:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"1912:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:49:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1848:89:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3701,"id":3720,"nodeType":"Return","src":"1841:96:5"}]},"documentation":{"id":3694,"nodeType":"StructuredDocumentation","src":"1609:54:5","text":" @dev See {Governor-_quorumReached}."},"id":3722,"implemented":true,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"1677:14:5","nodeType":"FunctionDefinition","overrides":{"id":3698,"nodeType":"OverrideSpecifier","overrides":[],"src":"1734:8:5"},"parameters":{"id":3697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3696,"mutability":"mutable","name":"proposalId","nameLocation":"1700:10:5","nodeType":"VariableDeclaration","scope":3722,"src":"1692:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3695,"name":"uint256","nodeType":"ElementaryTypeName","src":"1692:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1691:20:5"},"returnParameters":{"id":3701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3700,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3722,"src":"1752:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3699,"name":"bool","nodeType":"ElementaryTypeName","src":"1752:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1751:6:5"},"scope":3840,"src":"1668:276:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[845],"body":{"id":3744,"nodeType":"Block","src":"2168:146:5","statements":[{"assignments":[3733],"declarations":[{"constant":false,"id":3733,"mutability":"mutable","name":"proposalVote","nameLocation":"2199:12:5","nodeType":"VariableDeclaration","scope":3744,"src":"2178:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3732,"nodeType":"UserDefinedTypeName","pathNode":{"id":3731,"name":"ProposalVote","nameLocations":["2178:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"2178:12:5"},"referencedDeclaration":3631,"src":"2178:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3737,"initialValue":{"baseExpression":{"id":3734,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"2214:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3736,"indexExpression":{"id":3735,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3725,"src":"2229:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2214:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2178:62:5"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3738,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3733,"src":"2258:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2271:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"2258:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":3740,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3733,"src":"2282:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3741,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2295:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"2282:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2258:49:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3730,"id":3743,"nodeType":"Return","src":"2251:56:5"}]},"documentation":{"id":3723,"nodeType":"StructuredDocumentation","src":"1950:123:5","text":" @dev See {Governor-_voteSucceeded}. In this module, the forVotes must be strictly over the againstVotes."},"id":3745,"implemented":true,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"2087:14:5","nodeType":"FunctionDefinition","overrides":{"id":3727,"nodeType":"OverrideSpecifier","overrides":[],"src":"2144:8:5"},"parameters":{"id":3726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3725,"mutability":"mutable","name":"proposalId","nameLocation":"2110:10:5","nodeType":"VariableDeclaration","scope":3745,"src":"2102:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3724,"name":"uint256","nodeType":"ElementaryTypeName","src":"2102:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2101:20:5"},"returnParameters":{"id":3730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3729,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3745,"src":"2162:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3728,"name":"bool","nodeType":"ElementaryTypeName","src":"2162:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2161:6:5"},"scope":3840,"src":"2078:236:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[873],"body":{"id":3838,"nodeType":"Block","src":"2661:657:5","statements":[{"assignments":[3764],"declarations":[{"constant":false,"id":3764,"mutability":"mutable","name":"proposalVote","nameLocation":"2692:12:5","nodeType":"VariableDeclaration","scope":3838,"src":"2671:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3763,"nodeType":"UserDefinedTypeName","pathNode":{"id":3762,"name":"ProposalVote","nameLocations":["2671:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"2671:12:5"},"referencedDeclaration":3631,"src":"2671:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3768,"initialValue":{"baseExpression":{"id":3765,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"2707:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3767,"indexExpression":{"id":3766,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3748,"src":"2722:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2707:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2671:62:5"},{"condition":{"baseExpression":{"expression":{"id":3769,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2748:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3770,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2761:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"2748:21:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3772,"indexExpression":{"id":3771,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2770:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2748:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3778,"nodeType":"IfStatement","src":"2744:100:5","trueBody":{"id":3777,"nodeType":"Block","src":"2780:64:5","statements":[{"errorCall":{"arguments":[{"id":3774,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2825:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3773,"name":"GovernorAlreadyCastVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2168,"src":"2801:23:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:32:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3776,"nodeType":"RevertStatement","src":"2794:39:5"}]}},{"expression":{"id":3785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":3779,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2853:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3782,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2866:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"2853:21:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3783,"indexExpression":{"id":3781,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2875:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2853:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2886:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2853:37:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3786,"nodeType":"ExpressionStatement","src":"2853:37:5"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3787,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"2905:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3790,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"2922:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2931:7:5","memberName":"Against","nodeType":"MemberAccess","referencedDeclaration":3617,"src":"2922:16:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3789,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2916:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3788,"name":"uint8","nodeType":"ElementaryTypeName","src":"2916:5:5","typeDescriptions":{}}},"id":3792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2916:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2905:34:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3801,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"3016:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3804,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"3033:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3042:3:5","memberName":"For","nodeType":"MemberAccess","referencedDeclaration":3618,"src":"3033:12:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3027:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3802,"name":"uint8","nodeType":"ElementaryTypeName","src":"3027:5:5","typeDescriptions":{}}},"id":3806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3027:19:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3016:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3815,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"3119:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3818,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"3136:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3145:7:5","memberName":"Abstain","nodeType":"MemberAccess","referencedDeclaration":3619,"src":"3136:16:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3130:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3816,"name":"uint8","nodeType":"ElementaryTypeName","src":"3130:5:5","typeDescriptions":{}}},"id":3820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3130:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3119:34:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3832,"nodeType":"Block","src":"3226:57:5","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3829,"name":"GovernorInvalidVoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"3247:23:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":3830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3247:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3831,"nodeType":"RevertStatement","src":"3240:32:5"}]},"id":3833,"nodeType":"IfStatement","src":"3115:168:5","trueBody":{"id":3828,"nodeType":"Block","src":"3155:65:5","statements":[{"expression":{"id":3826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3822,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"3169:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3824,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3182:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"3169:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3825,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3198:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3169:40:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3827,"nodeType":"ExpressionStatement","src":"3169:40:5"}]}},"id":3834,"nodeType":"IfStatement","src":"3012:271:5","trueBody":{"id":3814,"nodeType":"Block","src":"3048:61:5","statements":[{"expression":{"id":3812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3808,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"3062:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3075:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"3062:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3811,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3087:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3062:36:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3813,"nodeType":"ExpressionStatement","src":"3062:36:5"}]}},"id":3835,"nodeType":"IfStatement","src":"2901:382:5","trueBody":{"id":3800,"nodeType":"Block","src":"2941:65:5","statements":[{"expression":{"id":3798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3794,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2955:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3796,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2968:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"2955:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3797,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"2984:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2955:40:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3799,"nodeType":"ExpressionStatement","src":"2955:40:5"}]}},{"expression":{"id":3836,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3300:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3761,"id":3837,"nodeType":"Return","src":"3293:18:5"}]},"documentation":{"id":3746,"nodeType":"StructuredDocumentation","src":"2320:129:5","text":" @dev See {Governor-_countVote}. In this module, the support follows the `VoteType` enum (from Governor Bravo)."},"id":3839,"implemented":true,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"2463:10:5","nodeType":"FunctionDefinition","overrides":{"id":3758,"nodeType":"OverrideSpecifier","overrides":[],"src":"2634:8:5"},"parameters":{"id":3757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3748,"mutability":"mutable","name":"proposalId","nameLocation":"2491:10:5","nodeType":"VariableDeclaration","scope":3839,"src":"2483:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3747,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3750,"mutability":"mutable","name":"account","nameLocation":"2519:7:5","nodeType":"VariableDeclaration","scope":3839,"src":"2511:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3749,"name":"address","nodeType":"ElementaryTypeName","src":"2511:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3752,"mutability":"mutable","name":"support","nameLocation":"2542:7:5","nodeType":"VariableDeclaration","scope":3839,"src":"2536:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3751,"name":"uint8","nodeType":"ElementaryTypeName","src":"2536:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":3754,"mutability":"mutable","name":"totalWeight","nameLocation":"2567:11:5","nodeType":"VariableDeclaration","scope":3839,"src":"2559:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3753,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3839,"src":"2588:12:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3755,"name":"bytes","nodeType":"ElementaryTypeName","src":"2588:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2473:143:5"},"returnParameters":{"id":3761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3839,"src":"2652:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3759,"name":"uint256","nodeType":"ElementaryTypeName","src":"2652:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2651:9:5"},"scope":3840,"src":"2454:864:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":3841,"src":"279:3041:5","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"132:3189:5"},"id":5},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","exportedSymbols":{"Governor":[2134],"GovernorSettings":[4021]},"id":4022,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3842,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"126:24:6"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":3844,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4022,"sourceUnit":2135,"src":"152:41:6","symbolAliases":[{"foreign":{"id":3843,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"160:8:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3846,"name":"Governor","nameLocations":["316:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"316:8:6"},"id":3847,"nodeType":"InheritanceSpecifier","src":"316:8:6"}],"canonicalName":"GovernorSettings","contractDependencies":[],"contractKind":"contract","documentation":{"id":3845,"nodeType":"StructuredDocumentation","src":"195:82:6","text":" @dev Extension of {Governor} for settings updatable through governance."},"fullyImplemented":false,"id":4021,"linearizedBaseContracts":[4021,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorSettings","nameLocation":"296:16:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":3849,"mutability":"mutable","name":"_proposalThreshold","nameLocation":"370:18:6","nodeType":"VariableDeclaration","scope":4021,"src":"354:34:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3848,"name":"uint256","nodeType":"ElementaryTypeName","src":"354:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":3851,"mutability":"mutable","name":"_votingDelay","nameLocation":"476:12:6","nodeType":"VariableDeclaration","scope":4021,"src":"461:27:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3850,"name":"uint48","nodeType":"ElementaryTypeName","src":"461:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"private"},{"constant":false,"id":3853,"mutability":"mutable","name":"_votingPeriod","nameLocation":"552:13:6","nodeType":"VariableDeclaration","scope":4021,"src":"537:28:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3852,"name":"uint32","nodeType":"ElementaryTypeName","src":"537:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"private"},{"anonymous":false,"eventSelector":"c565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93","id":3859,"name":"VotingDelaySet","nameLocation":"578:14:6","nodeType":"EventDefinition","parameters":{"id":3858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3855,"indexed":false,"mutability":"mutable","name":"oldVotingDelay","nameLocation":"601:14:6","nodeType":"VariableDeclaration","scope":3859,"src":"593:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3854,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3857,"indexed":false,"mutability":"mutable","name":"newVotingDelay","nameLocation":"625:14:6","nodeType":"VariableDeclaration","scope":3859,"src":"617:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3856,"name":"uint256","nodeType":"ElementaryTypeName","src":"617:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"592:48:6"},"src":"572:69:6"},{"anonymous":false,"eventSelector":"7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828","id":3865,"name":"VotingPeriodSet","nameLocation":"652:15:6","nodeType":"EventDefinition","parameters":{"id":3864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3861,"indexed":false,"mutability":"mutable","name":"oldVotingPeriod","nameLocation":"676:15:6","nodeType":"VariableDeclaration","scope":3865,"src":"668:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3860,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3863,"indexed":false,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"701:15:6","nodeType":"VariableDeclaration","scope":3865,"src":"693:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3862,"name":"uint256","nodeType":"ElementaryTypeName","src":"693:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:50:6"},"src":"646:72:6"},{"anonymous":false,"eventSelector":"ccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc05461","id":3871,"name":"ProposalThresholdSet","nameLocation":"729:20:6","nodeType":"EventDefinition","parameters":{"id":3870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3867,"indexed":false,"mutability":"mutable","name":"oldProposalThreshold","nameLocation":"758:20:6","nodeType":"VariableDeclaration","scope":3871,"src":"750:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3866,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3869,"indexed":false,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"788:20:6","nodeType":"VariableDeclaration","scope":3871,"src":"780:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3868,"name":"uint256","nodeType":"ElementaryTypeName","src":"780:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"749:60:6"},"src":"723:87:6"},{"body":{"id":3893,"nodeType":"Block","src":"983:156:6","statements":[{"expression":{"arguments":[{"id":3882,"name":"initialVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3874,"src":"1009:18:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3881,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3979,"src":"993:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":3883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"993:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3884,"nodeType":"ExpressionStatement","src":"993:35:6"},{"expression":{"arguments":[{"id":3886,"name":"initialVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1055:19:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3885,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"1038:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":3887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1038:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3888,"nodeType":"ExpressionStatement","src":"1038:37:6"},{"expression":{"arguments":[{"id":3890,"name":"initialProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3878,"src":"1107:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3889,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"1085:21:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1085:47:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3892,"nodeType":"ExpressionStatement","src":"1085:47:6"}]},"documentation":{"id":3872,"nodeType":"StructuredDocumentation","src":"816:61:6","text":" @dev Initialize the governance parameters."},"id":3894,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3874,"mutability":"mutable","name":"initialVotingDelay","nameLocation":"901:18:6","nodeType":"VariableDeclaration","scope":3894,"src":"894:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3873,"name":"uint48","nodeType":"ElementaryTypeName","src":"894:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":3876,"mutability":"mutable","name":"initialVotingPeriod","nameLocation":"928:19:6","nodeType":"VariableDeclaration","scope":3894,"src":"921:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3875,"name":"uint32","nodeType":"ElementaryTypeName","src":"921:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":3878,"mutability":"mutable","name":"initialProposalThreshold","nameLocation":"957:24:6","nodeType":"VariableDeclaration","scope":3894,"src":"949:32:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3877,"name":"uint256","nodeType":"ElementaryTypeName","src":"949:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"893:89:6"},"returnParameters":{"id":3880,"nodeType":"ParameterList","parameters":[],"src":"983:0:6"},"scope":4021,"src":"882:257:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2107],"body":{"id":3903,"nodeType":"Block","src":"1272:36:6","statements":[{"expression":{"id":3901,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"1289:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":3900,"id":3902,"nodeType":"Return","src":"1282:19:6"}]},"documentation":{"id":3895,"nodeType":"StructuredDocumentation","src":"1145:52:6","text":" @dev See {IGovernor-votingDelay}."},"functionSelector":"3932abb1","id":3904,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"1211:11:6","nodeType":"FunctionDefinition","overrides":{"id":3897,"nodeType":"OverrideSpecifier","overrides":[],"src":"1245:8:6"},"parameters":{"id":3896,"nodeType":"ParameterList","parameters":[],"src":"1222:2:6"},"returnParameters":{"id":3900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3904,"src":"1263:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3898,"name":"uint256","nodeType":"ElementaryTypeName","src":"1263:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1262:9:6"},"scope":4021,"src":"1202:106:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2113],"body":{"id":3913,"nodeType":"Block","src":"1443:37:6","statements":[{"expression":{"id":3911,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"1460:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":3910,"id":3912,"nodeType":"Return","src":"1453:20:6"}]},"documentation":{"id":3905,"nodeType":"StructuredDocumentation","src":"1314:53:6","text":" @dev See {IGovernor-votingPeriod}."},"functionSelector":"02a251a3","id":3914,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"1381:12:6","nodeType":"FunctionDefinition","overrides":{"id":3907,"nodeType":"OverrideSpecifier","overrides":[],"src":"1416:8:6"},"parameters":{"id":3906,"nodeType":"ParameterList","parameters":[],"src":"1393:2:6"},"returnParameters":{"id":3910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3909,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3914,"src":"1434:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3908,"name":"uint256","nodeType":"ElementaryTypeName","src":"1434:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1433:9:6"},"scope":4021,"src":"1372:108:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[717],"body":{"id":3923,"nodeType":"Block","src":"1624:42:6","statements":[{"expression":{"id":3921,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"1641:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3920,"id":3922,"nodeType":"Return","src":"1634:25:6"}]},"documentation":{"id":3915,"nodeType":"StructuredDocumentation","src":"1486:57:6","text":" @dev See {Governor-proposalThreshold}."},"functionSelector":"b58131b0","id":3924,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"1557:17:6","nodeType":"FunctionDefinition","overrides":{"id":3917,"nodeType":"OverrideSpecifier","overrides":[],"src":"1597:8:6"},"parameters":{"id":3916,"nodeType":"ParameterList","parameters":[],"src":"1574:2:6"},"returnParameters":{"id":3920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3924,"src":"1615:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3918,"name":"uint256","nodeType":"ElementaryTypeName","src":"1615:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1614:9:6"},"scope":4021,"src":"1548:118:6","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3936,"nodeType":"Block","src":"1916:48:6","statements":[{"expression":{"arguments":[{"id":3933,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"1942:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3932,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3979,"src":"1926:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":3934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1926:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3935,"nodeType":"ExpressionStatement","src":"1926:31:6"}]},"documentation":{"id":3925,"nodeType":"StructuredDocumentation","src":"1672:162:6","text":" @dev Update the voting delay. This operation can only be performed through a governance proposal.\n Emits a {VotingDelaySet} event."},"functionSelector":"79051887","id":3937,"implemented":true,"kind":"function","modifiers":[{"id":3930,"kind":"modifierInvocation","modifierName":{"id":3929,"name":"onlyGovernance","nameLocations":["1901:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"1901:14:6"},"nodeType":"ModifierInvocation","src":"1901:14:6"}],"name":"setVotingDelay","nameLocation":"1848:14:6","nodeType":"FunctionDefinition","parameters":{"id":3928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3927,"mutability":"mutable","name":"newVotingDelay","nameLocation":"1870:14:6","nodeType":"VariableDeclaration","scope":3937,"src":"1863:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3926,"name":"uint48","nodeType":"ElementaryTypeName","src":"1863:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1862:23:6"},"returnParameters":{"id":3931,"nodeType":"ParameterList","parameters":[],"src":"1916:0:6"},"scope":4021,"src":"1839:125:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3949,"nodeType":"Block","src":"2218:50:6","statements":[{"expression":{"arguments":[{"id":3946,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3940,"src":"2245:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3945,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"2228:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":3947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2228:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3948,"nodeType":"ExpressionStatement","src":"2228:33:6"}]},"documentation":{"id":3938,"nodeType":"StructuredDocumentation","src":"1970:164:6","text":" @dev Update the voting period. This operation can only be performed through a governance proposal.\n Emits a {VotingPeriodSet} event."},"functionSelector":"e540d01d","id":3950,"implemented":true,"kind":"function","modifiers":[{"id":3943,"kind":"modifierInvocation","modifierName":{"id":3942,"name":"onlyGovernance","nameLocations":["2203:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"2203:14:6"},"nodeType":"ModifierInvocation","src":"2203:14:6"}],"name":"setVotingPeriod","nameLocation":"2148:15:6","nodeType":"FunctionDefinition","parameters":{"id":3941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3940,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"2171:15:6","nodeType":"VariableDeclaration","scope":3950,"src":"2164:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3939,"name":"uint32","nodeType":"ElementaryTypeName","src":"2164:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2163:24:6"},"returnParameters":{"id":3944,"nodeType":"ParameterList","parameters":[],"src":"2218:0:6"},"scope":4021,"src":"2139:129:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3962,"nodeType":"Block","src":"2543:60:6","statements":[{"expression":{"arguments":[{"id":3959,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3953,"src":"2575:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3958,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"2553:21:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2553:43:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3961,"nodeType":"ExpressionStatement","src":"2553:43:6"}]},"documentation":{"id":3951,"nodeType":"StructuredDocumentation","src":"2274:174:6","text":" @dev Update the proposal threshold. This operation can only be performed through a governance proposal.\n Emits a {ProposalThresholdSet} event."},"functionSelector":"ece40cc1","id":3963,"implemented":true,"kind":"function","modifiers":[{"id":3956,"kind":"modifierInvocation","modifierName":{"id":3955,"name":"onlyGovernance","nameLocations":["2528:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"2528:14:6"},"nodeType":"ModifierInvocation","src":"2528:14:6"}],"name":"setProposalThreshold","nameLocation":"2462:20:6","nodeType":"FunctionDefinition","parameters":{"id":3954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3953,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"2491:20:6","nodeType":"VariableDeclaration","scope":3963,"src":"2483:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3952,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2482:30:6"},"returnParameters":{"id":3957,"nodeType":"ParameterList","parameters":[],"src":"2543:0:6"},"scope":4021,"src":"2453:150:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3978,"nodeType":"Block","src":"2786:105:6","statements":[{"eventCall":{"arguments":[{"id":3970,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"2816:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":3971,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"2830:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3969,"name":"VotingDelaySet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"2801:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:44:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3973,"nodeType":"EmitStatement","src":"2796:49:6"},{"expression":{"id":3976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3974,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"2855:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3975,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"2870:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"2855:29:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":3977,"nodeType":"ExpressionStatement","src":"2855:29:6"}]},"documentation":{"id":3964,"nodeType":"StructuredDocumentation","src":"2609:107:6","text":" @dev Internal setter for the voting delay.\n Emits a {VotingDelaySet} event."},"id":3979,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingDelay","nameLocation":"2730:15:6","nodeType":"FunctionDefinition","parameters":{"id":3967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3966,"mutability":"mutable","name":"newVotingDelay","nameLocation":"2753:14:6","nodeType":"VariableDeclaration","scope":3979,"src":"2746:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3965,"name":"uint48","nodeType":"ElementaryTypeName","src":"2746:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2745:23:6"},"returnParameters":{"id":3968,"nodeType":"ParameterList","parameters":[],"src":"2786:0:6"},"scope":4021,"src":"2721:170:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4003,"nodeType":"Block","src":"3078:207:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":3987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3985,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3092:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3111:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3092:20:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3993,"nodeType":"IfStatement","src":"3088:88:6","trueBody":{"id":3992,"nodeType":"Block","src":"3114:62:6","statements":[{"errorCall":{"arguments":[{"hexValue":"30","id":3989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3163:1:6","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":3988,"name":"GovernorInvalidVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"3135:27:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":3990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3135:30:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3991,"nodeType":"RevertStatement","src":"3128:37:6"}]}},{"eventCall":{"arguments":[{"id":3995,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"3206:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":3996,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3221:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3994,"name":"VotingPeriodSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"3190:15:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3190:47:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3998,"nodeType":"EmitStatement","src":"3185:52:6"},{"expression":{"id":4001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3999,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"3247:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4000,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3263:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3247:31:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4002,"nodeType":"ExpressionStatement","src":"3247:31:6"}]},"documentation":{"id":3980,"nodeType":"StructuredDocumentation","src":"2897:109:6","text":" @dev Internal setter for the voting period.\n Emits a {VotingPeriodSet} event."},"id":4004,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingPeriod","nameLocation":"3020:16:6","nodeType":"FunctionDefinition","parameters":{"id":3983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3982,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"3044:15:6","nodeType":"VariableDeclaration","scope":4004,"src":"3037:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3981,"name":"uint32","nodeType":"ElementaryTypeName","src":"3037:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3036:24:6"},"returnParameters":{"id":3984,"nodeType":"ParameterList","parameters":[],"src":"3078:0:6"},"scope":4021,"src":"3011:274:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4019,"nodeType":"Block","src":"3493:135:6","statements":[{"eventCall":{"arguments":[{"id":4011,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"3529:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4012,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"3549:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4010,"name":"ProposalThresholdSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3871,"src":"3508:20:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3508:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4014,"nodeType":"EmitStatement","src":"3503:67:6"},{"expression":{"id":4017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4015,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"3580:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4016,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"3601:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3580:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4018,"nodeType":"ExpressionStatement","src":"3580:41:6"}]},"documentation":{"id":4005,"nodeType":"StructuredDocumentation","src":"3291:119:6","text":" @dev Internal setter for the proposal threshold.\n Emits a {ProposalThresholdSet} event."},"id":4020,"implemented":true,"kind":"function","modifiers":[],"name":"_setProposalThreshold","nameLocation":"3424:21:6","nodeType":"FunctionDefinition","parameters":{"id":4008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4007,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"3454:20:6","nodeType":"VariableDeclaration","scope":4020,"src":"3446:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4006,"name":"uint256","nodeType":"ElementaryTypeName","src":"3446:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3445:30:6"},"returnParameters":{"id":4009,"nodeType":"ParameterList","parameters":[],"src":"3493:0:6"},"scope":4021,"src":"3415:213:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4022,"src":"278:3352:6","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,3859,3865,3871,5326]}],"src":"126:3505:6"},"id":6},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","exportedSymbols":{"Governor":[2134],"GovernorTimelockControl":[4366],"IERC165":[9194],"IGovernor":[2588],"SafeCast":[12565],"TimelockController":[3608]},"id":4367,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4023,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"133:24:7"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4026,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":2135,"src":"159:52:7","symbolAliases":[{"foreign":{"id":4024,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"167:9:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":4025,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"178:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","file":"../TimelockController.sol","id":4028,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":3609,"src":"212:61:7","symbolAliases":[{"foreign":{"id":4027,"name":"TimelockController","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"220:18:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../../interfaces/IERC165.sol","id":4030,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":5322,"src":"274:53:7","symbolAliases":[{"foreign":{"id":4029,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"282:7:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4032,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":12566,"src":"328:55:7","symbolAliases":[{"foreign":{"id":4031,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"336:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4034,"name":"Governor","nameLocations":["1544:8:7"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"1544:8:7"},"id":4035,"nodeType":"InheritanceSpecifier","src":"1544:8:7"}],"canonicalName":"GovernorTimelockControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":4033,"nodeType":"StructuredDocumentation","src":"385:1113:7","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 cancellers 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":4366,"linearizedBaseContracts":[4366,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorTimelockControl","nameLocation":"1517:23:7","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4038,"mutability":"mutable","name":"_timelock","nameLocation":"1586:9:7","nodeType":"VariableDeclaration","scope":4366,"src":"1559:36:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4037,"nodeType":"UserDefinedTypeName","pathNode":{"id":4036,"name":"TimelockController","nameLocations":["1559:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"1559:18:7"},"referencedDeclaration":3608,"src":"1559:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"private"},{"constant":false,"id":4042,"mutability":"mutable","name":"_timelockIds","nameLocation":"1648:12:7","nodeType":"VariableDeclaration","scope":4366,"src":"1601:59:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":4041,"keyName":"proposalId","keyNameLocation":"1617:10:7","keyType":{"id":4039,"name":"uint256","nodeType":"ElementaryTypeName","src":"1609:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1601:38:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4040,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1631:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"private"},{"anonymous":false,"documentation":{"id":4043,"nodeType":"StructuredDocumentation","src":"1667:101:7","text":" @dev Emitted when the timelock controller used for proposal execution is modified."},"eventSelector":"08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401","id":4049,"name":"TimelockChange","nameLocation":"1779:14:7","nodeType":"EventDefinition","parameters":{"id":4048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4045,"indexed":false,"mutability":"mutable","name":"oldTimelock","nameLocation":"1802:11:7","nodeType":"VariableDeclaration","scope":4049,"src":"1794:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4044,"name":"address","nodeType":"ElementaryTypeName","src":"1794:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4047,"indexed":false,"mutability":"mutable","name":"newTimelock","nameLocation":"1823:11:7","nodeType":"VariableDeclaration","scope":4049,"src":"1815:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4046,"name":"address","nodeType":"ElementaryTypeName","src":"1815:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1793:42:7"},"src":"1773:63:7"},{"body":{"id":4060,"nodeType":"Block","src":"1936:49:7","statements":[{"expression":{"arguments":[{"id":4057,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4053,"src":"1962:15:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4056,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4346,"src":"1946:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3608_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1946:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4059,"nodeType":"ExpressionStatement","src":"1946:32:7"}]},"documentation":{"id":4050,"nodeType":"StructuredDocumentation","src":"1842:41:7","text":" @dev Set the timelock."},"id":4061,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4053,"mutability":"mutable","name":"timelockAddress","nameLocation":"1919:15:7","nodeType":"VariableDeclaration","scope":4061,"src":"1900:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4052,"nodeType":"UserDefinedTypeName","pathNode":{"id":4051,"name":"TimelockController","nameLocations":["1900:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"1900:18:7"},"referencedDeclaration":3608,"src":"1900:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"1899:36:7"},"returnParameters":{"id":4055,"nodeType":"ParameterList","parameters":[],"src":"1936:0:7"},"scope":4366,"src":"1888:97:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[708],"body":{"id":4115,"nodeType":"Block","src":"2211:652:7","statements":[{"assignments":[4073],"declarations":[{"constant":false,"id":4073,"mutability":"mutable","name":"currentState","nameLocation":"2235:12:7","nodeType":"VariableDeclaration","scope":4115,"src":"2221:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4072,"nodeType":"UserDefinedTypeName","pathNode":{"id":4071,"name":"ProposalState","nameLocations":["2221:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2221:13:7"},"referencedDeclaration":2154,"src":"2221:13:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":4078,"initialValue":{"arguments":[{"id":4076,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4064,"src":"2262:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4074,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2250:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4366_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2256:5:7","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":708,"src":"2250:11:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":4077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2250:23:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"2221:52:7"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"id":4082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4079,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4073,"src":"2288:12:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4080,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2304:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4081,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2318:6:7","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"2304:20:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"src":"2288:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4086,"nodeType":"IfStatement","src":"2284:86:7","trueBody":{"id":4085,"nodeType":"Block","src":"2326:44:7","statements":[{"expression":{"id":4083,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4073,"src":"2347:12:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4084,"nodeType":"Return","src":"2340:19:7"}]}},{"assignments":[4088],"declarations":[{"constant":false,"id":4088,"mutability":"mutable","name":"queueid","nameLocation":"2388:7:7","nodeType":"VariableDeclaration","scope":4115,"src":"2380:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4087,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2380:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4092,"initialValue":{"baseExpression":{"id":4089,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"2398:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4091,"indexExpression":{"id":4090,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4064,"src":"2411:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2398:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2380:42:7"},{"condition":{"arguments":[{"id":4095,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"2465:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4093,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"2436:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2446:18:7","memberName":"isOperationPending","nodeType":"MemberAccess","referencedDeclaration":2898,"src":"2436:28:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2436:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":4103,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"2563:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4101,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"2537:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2547:15:7","memberName":"isOperationDone","nodeType":"MemberAccess","referencedDeclaration":2930,"src":"2537:25:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2537:34:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4112,"nodeType":"Block","src":"2718:139:7","statements":[{"expression":{"expression":{"id":4109,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2824:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4110,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2838:8:7","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"2824:22:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4111,"nodeType":"Return","src":"2817:29:7"}]},"id":4113,"nodeType":"IfStatement","src":"2533:324:7","trueBody":{"id":4108,"nodeType":"Block","src":"2573:139:7","statements":[{"expression":{"expression":{"id":4105,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2679:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2693:8:7","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"2679:22:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4107,"nodeType":"Return","src":"2672:29:7"}]}},"id":4114,"nodeType":"IfStatement","src":"2432:425:7","trueBody":{"id":4100,"nodeType":"Block","src":"2475:52:7","statements":[{"expression":{"expression":{"id":4097,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2496:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4098,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2510:6:7","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"2496:20:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4099,"nodeType":"Return","src":"2489:27:7"}]}}]},"documentation":{"id":4062,"nodeType":"StructuredDocumentation","src":"1991:127:7","text":" @dev Overridden version of the {Governor-state} function that considers the status reported by the timelock."},"functionSelector":"3e4f49e6","id":4116,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"2132:5:7","nodeType":"FunctionDefinition","overrides":{"id":4066,"nodeType":"OverrideSpecifier","overrides":[],"src":"2178:8:7"},"parameters":{"id":4065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4064,"mutability":"mutable","name":"proposalId","nameLocation":"2146:10:7","nodeType":"VariableDeclaration","scope":4116,"src":"2138:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4063,"name":"uint256","nodeType":"ElementaryTypeName","src":"2138:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2137:20:7"},"returnParameters":{"id":4070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4116,"src":"2196:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4068,"nodeType":"UserDefinedTypeName","pathNode":{"id":4067,"name":"ProposalState","nameLocations":["2196:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2196:13:7"},"referencedDeclaration":2154,"src":"2196:13:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"2195:15:7"},"scope":4366,"src":"2123:740:7","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4127,"nodeType":"Block","src":"3008:42:7","statements":[{"expression":{"arguments":[{"id":4124,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3033:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3025:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4122,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:7","typeDescriptions":{}}},"id":4125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3025:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4121,"id":4126,"nodeType":"Return","src":"3018:25:7"}]},"documentation":{"id":4117,"nodeType":"StructuredDocumentation","src":"2869:76:7","text":" @dev Public accessor to check the address of the timelock"},"functionSelector":"d33219b4","id":4128,"implemented":true,"kind":"function","modifiers":[],"name":"timelock","nameLocation":"2959:8:7","nodeType":"FunctionDefinition","parameters":{"id":4118,"nodeType":"ParameterList","parameters":[],"src":"2967:2:7"},"returnParameters":{"id":4121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4128,"src":"2999:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4119,"name":"address","nodeType":"ElementaryTypeName","src":"2999:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2998:9:7"},"scope":4366,"src":"2950:100:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[789],"body":{"id":4139,"nodeType":"Block","src":"3205:28:7","statements":[{"expression":{"hexValue":"74727565","id":4137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3222:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":4136,"id":4138,"nodeType":"Return","src":"3215:11:7"}]},"documentation":{"id":4129,"nodeType":"StructuredDocumentation","src":"3056:61:7","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":4140,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"3131:20:7","nodeType":"FunctionDefinition","overrides":{"id":4133,"nodeType":"OverrideSpecifier","overrides":[],"src":"3181:8:7"},"parameters":{"id":4132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4140,"src":"3152:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4130,"name":"uint256","nodeType":"ElementaryTypeName","src":"3152:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3151:9:7"},"returnParameters":{"id":4136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4135,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4140,"src":"3199:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4134,"name":"bool","nodeType":"ElementaryTypeName","src":"3199:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3198:6:7"},"scope":4366,"src":"3122:111:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1195],"body":{"id":4204,"nodeType":"Block","src":"3550:351:7","statements":[{"assignments":[4161],"declarations":[{"constant":false,"id":4161,"mutability":"mutable","name":"delay","nameLocation":"3568:5:7","nodeType":"VariableDeclaration","scope":4204,"src":"3560:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4160,"name":"uint256","nodeType":"ElementaryTypeName","src":"3560:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4165,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4162,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3576:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3586:11:7","memberName":"getMinDelay","nodeType":"MemberAccess","referencedDeclaration":2997,"src":"3576:21:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":4164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3576:23:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3560:39:7"},{"assignments":[4167],"declarations":[{"constant":false,"id":4167,"mutability":"mutable","name":"salt","nameLocation":"3618:4:7","nodeType":"VariableDeclaration","scope":4204,"src":"3610:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3610:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4171,"initialValue":{"arguments":[{"id":4169,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4154,"src":"3639:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4168,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"3625:13:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3625:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3610:45:7"},{"expression":{"id":4183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4172,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"3665:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4174,"indexExpression":{"id":4173,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4143,"src":"3678:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3665:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4177,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4146,"src":"3721:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4178,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4149,"src":"3730:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4179,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4152,"src":"3738:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3749:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4181,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"3752:4:7","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":4175,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3692:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3702:18:7","memberName":"hashOperationBatch","nodeType":"MemberAccess","referencedDeclaration":3056,"src":"3692:28:7","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":4182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3692:65:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3665:92:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4184,"nodeType":"ExpressionStatement","src":"3665:92:7"},{"expression":{"arguments":[{"id":4188,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4146,"src":"3791:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4189,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4149,"src":"3800:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4190,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4152,"src":"3808:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3819:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4192,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"3822:4:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4193,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4161,"src":"3828:5:7","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":4185,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3767:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3777:13:7","memberName":"scheduleBatch","nodeType":"MemberAccess","referencedDeclaration":3216,"src":"3767:23:7","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":4194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3767:67:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4195,"nodeType":"ExpressionStatement","src":"3767:67:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4198,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3870:5:7","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3876:9:7","memberName":"timestamp","nodeType":"MemberAccess","src":"3870:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4200,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4161,"src":"3888:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3870:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4196,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3852:8:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3861:8:7","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"3852:17:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3852:42:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4159,"id":4203,"nodeType":"Return","src":"3845:49:7"}]},"documentation":{"id":4141,"nodeType":"StructuredDocumentation","src":"3239:69:7","text":" @dev Function to queue a proposal to the timelock."},"id":4205,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"3322:16:7","nodeType":"FunctionDefinition","overrides":{"id":4156,"nodeType":"OverrideSpecifier","overrides":[],"src":"3524:8:7"},"parameters":{"id":4155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4143,"mutability":"mutable","name":"proposalId","nameLocation":"3356:10:7","nodeType":"VariableDeclaration","scope":4205,"src":"3348:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4142,"name":"uint256","nodeType":"ElementaryTypeName","src":"3348:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4146,"mutability":"mutable","name":"targets","nameLocation":"3393:7:7","nodeType":"VariableDeclaration","scope":4205,"src":"3376:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4144,"name":"address","nodeType":"ElementaryTypeName","src":"3376:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4145,"nodeType":"ArrayTypeName","src":"3376:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4149,"mutability":"mutable","name":"values","nameLocation":"3427:6:7","nodeType":"VariableDeclaration","scope":4205,"src":"3410:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4147,"name":"uint256","nodeType":"ElementaryTypeName","src":"3410:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4148,"nodeType":"ArrayTypeName","src":"3410:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4152,"mutability":"mutable","name":"calldatas","nameLocation":"3458:9:7","nodeType":"VariableDeclaration","scope":4205,"src":"3443:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4150,"name":"bytes","nodeType":"ElementaryTypeName","src":"3443:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4151,"nodeType":"ArrayTypeName","src":"3443:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4154,"mutability":"mutable","name":"descriptionHash","nameLocation":"3485:15:7","nodeType":"VariableDeclaration","scope":4205,"src":"3477:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4153,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3477:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3338:168:7"},"returnParameters":{"id":4159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4205,"src":"3542:6:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4157,"name":"uint48","nodeType":"ElementaryTypeName","src":"3542:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3541:8:7"},"scope":4366,"src":"3313:588:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1372],"body":{"id":4243,"nodeType":"Block","src":"4289:210:7","statements":[{"expression":{"arguments":[{"id":4229,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4211,"src":"4359:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4230,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4214,"src":"4368:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4231,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4217,"src":"4376:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4387:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"arguments":[{"id":4234,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4219,"src":"4404:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4233,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"4390:13:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4390:30:7","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":4223,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"4318:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4328:12:7","memberName":"executeBatch","nodeType":"MemberAccess","referencedDeclaration":3458,"src":"4318:22:7","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":4228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":4226,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4348:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4352:5:7","memberName":"value","nodeType":"MemberAccess","src":"4348:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4318:40:7","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":4236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4318:103:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4237,"nodeType":"ExpressionStatement","src":"4318:103:7"},{"expression":{"id":4241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"4461:31:7","subExpression":{"baseExpression":{"id":4238,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"4468:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4240,"indexExpression":{"id":4239,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4208,"src":"4481:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4468:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4242,"nodeType":"ExpressionStatement","src":"4461:31:7"}]},"documentation":{"id":4206,"nodeType":"StructuredDocumentation","src":"3907:155:7","text":" @dev Overridden version of the {Governor-_executeOperations} function that runs the already queued proposal\n through the timelock."},"id":4244,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"4076:18:7","nodeType":"FunctionDefinition","overrides":{"id":4221,"nodeType":"OverrideSpecifier","overrides":[],"src":"4280:8:7"},"parameters":{"id":4220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4208,"mutability":"mutable","name":"proposalId","nameLocation":"4112:10:7","nodeType":"VariableDeclaration","scope":4244,"src":"4104:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4207,"name":"uint256","nodeType":"ElementaryTypeName","src":"4104:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4211,"mutability":"mutable","name":"targets","nameLocation":"4149:7:7","nodeType":"VariableDeclaration","scope":4244,"src":"4132:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4209,"name":"address","nodeType":"ElementaryTypeName","src":"4132:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4210,"nodeType":"ArrayTypeName","src":"4132:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4214,"mutability":"mutable","name":"values","nameLocation":"4183:6:7","nodeType":"VariableDeclaration","scope":4244,"src":"4166:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4212,"name":"uint256","nodeType":"ElementaryTypeName","src":"4166:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4213,"nodeType":"ArrayTypeName","src":"4166:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4217,"mutability":"mutable","name":"calldatas","nameLocation":"4214:9:7","nodeType":"VariableDeclaration","scope":4244,"src":"4199:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4215,"name":"bytes","nodeType":"ElementaryTypeName","src":"4199:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4216,"nodeType":"ArrayTypeName","src":"4199:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4219,"mutability":"mutable","name":"descriptionHash","nameLocation":"4241:15:7","nodeType":"VariableDeclaration","scope":4244,"src":"4233:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4218,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4233:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4094:168:7"},"returnParameters":{"id":4222,"nodeType":"ParameterList","parameters":[],"src":"4289:0:7"},"scope":4366,"src":"4067:432:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1487],"body":{"id":4296,"nodeType":"Block","src":"5109:353:7","statements":[{"assignments":[4263],"declarations":[{"constant":false,"id":4263,"mutability":"mutable","name":"proposalId","nameLocation":"5127:10:7","nodeType":"VariableDeclaration","scope":4296,"src":"5119:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4262,"name":"uint256","nodeType":"ElementaryTypeName","src":"5119:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4271,"initialValue":{"arguments":[{"id":4266,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4248,"src":"5154:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4267,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4251,"src":"5163:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4268,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4254,"src":"5171:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":4269,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"5182:15:7","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":4264,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5140:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4366_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5146:7:7","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":1487,"src":"5140:13:7","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":4270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5119:79:7"},{"assignments":[4273],"declarations":[{"constant":false,"id":4273,"mutability":"mutable","name":"timelockId","nameLocation":"5217:10:7","nodeType":"VariableDeclaration","scope":4296,"src":"5209:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4272,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5209:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4277,"initialValue":{"baseExpression":{"id":4274,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"5230:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4276,"indexExpression":{"id":4275,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5243:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5230:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5209:45:7"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4278,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4273,"src":"5268:10:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5268:15:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4293,"nodeType":"IfStatement","src":"5264:164:7","trueBody":{"id":4292,"nodeType":"Block","src":"5285:143:7","statements":[{"expression":{"arguments":[{"id":4284,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4273,"src":"5338:10:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4281,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"5321:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5331:6:7","memberName":"cancel","nodeType":"MemberAccess","referencedDeclaration":3300,"src":"5321:16:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32) external"}},"id":4285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5321:28:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4286,"nodeType":"ExpressionStatement","src":"5321:28:7"},{"expression":{"id":4290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"5386:31:7","subExpression":{"baseExpression":{"id":4287,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"5393:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4289,"indexExpression":{"id":4288,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5406:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5393:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4291,"nodeType":"ExpressionStatement","src":"5386:31:7"}]}},{"expression":{"id":4294,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5445:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4261,"id":4295,"nodeType":"Return","src":"5438:17:7"}]},"documentation":{"id":4245,"nodeType":"StructuredDocumentation","src":"4505:149:7","text":" @dev Overridden version of the {Governor-_cancel} function to cancel the timelocked proposal if it has already\n been queued."},"id":4297,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"4917:7:7","nodeType":"FunctionDefinition","overrides":{"id":4258,"nodeType":"OverrideSpecifier","overrides":[],"src":"5082:8:7"},"parameters":{"id":4257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4248,"mutability":"mutable","name":"targets","nameLocation":"4951:7:7","nodeType":"VariableDeclaration","scope":4297,"src":"4934:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4246,"name":"address","nodeType":"ElementaryTypeName","src":"4934:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4247,"nodeType":"ArrayTypeName","src":"4934:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4251,"mutability":"mutable","name":"values","nameLocation":"4985:6:7","nodeType":"VariableDeclaration","scope":4297,"src":"4968:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4249,"name":"uint256","nodeType":"ElementaryTypeName","src":"4968:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4250,"nodeType":"ArrayTypeName","src":"4968:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4254,"mutability":"mutable","name":"calldatas","nameLocation":"5016:9:7","nodeType":"VariableDeclaration","scope":4297,"src":"5001:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4252,"name":"bytes","nodeType":"ElementaryTypeName","src":"5001:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4253,"nodeType":"ArrayTypeName","src":"5001:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4256,"mutability":"mutable","name":"descriptionHash","nameLocation":"5043:15:7","nodeType":"VariableDeclaration","scope":4297,"src":"5035:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4255,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5035:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4924:140:7"},"returnParameters":{"id":4261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4260,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4297,"src":"5100:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4259,"name":"uint256","nodeType":"ElementaryTypeName","src":"5100:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5099:9:7"},"scope":4366,"src":"4908:554:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1860],"body":{"id":4309,"nodeType":"Block","src":"5646:42:7","statements":[{"expression":{"arguments":[{"id":4306,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"5671:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5663:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4304,"name":"address","nodeType":"ElementaryTypeName","src":"5663:7:7","typeDescriptions":{}}},"id":4307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5663:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4303,"id":4308,"nodeType":"Return","src":"5656:25:7"}]},"documentation":{"id":4298,"nodeType":"StructuredDocumentation","src":"5468:103:7","text":" @dev Address through which the governor executes action. In this case, the timelock."},"id":4310,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"5585:9:7","nodeType":"FunctionDefinition","overrides":{"id":4300,"nodeType":"OverrideSpecifier","overrides":[],"src":"5619:8:7"},"parameters":{"id":4299,"nodeType":"ParameterList","parameters":[],"src":"5594:2:7"},"returnParameters":{"id":4303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4302,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4310,"src":"5637:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4301,"name":"address","nodeType":"ElementaryTypeName","src":"5637:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5636:9:7"},"scope":4366,"src":"5576:112:7","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":4323,"nodeType":"Block","src":"6114:45:7","statements":[{"expression":{"arguments":[{"id":4320,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"6140:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4319,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4346,"src":"6124:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3608_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6124:28:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4322,"nodeType":"ExpressionStatement","src":"6124:28:7"}]},"documentation":{"id":4311,"nodeType":"StructuredDocumentation","src":"5694:327:7","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":4324,"implemented":true,"kind":"function","modifiers":[{"id":4317,"kind":"modifierInvocation","modifierName":{"id":4316,"name":"onlyGovernance","nameLocations":["6099:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"6099:14:7"},"nodeType":"ModifierInvocation","src":"6099:14:7"}],"name":"updateTimelock","nameLocation":"6035:14:7","nodeType":"FunctionDefinition","parameters":{"id":4315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4314,"mutability":"mutable","name":"newTimelock","nameLocation":"6069:11:7","nodeType":"VariableDeclaration","scope":4324,"src":"6050:30:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4313,"nodeType":"UserDefinedTypeName","pathNode":{"id":4312,"name":"TimelockController","nameLocations":["6050:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"6050:18:7"},"referencedDeclaration":3608,"src":"6050:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6049:32:7"},"returnParameters":{"id":4318,"nodeType":"ParameterList","parameters":[],"src":"6114:0:7"},"scope":4366,"src":"6026:133:7","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4345,"nodeType":"Block","src":"6230:111:7","statements":[{"eventCall":{"arguments":[{"arguments":[{"id":4333,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"6268:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6260:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4331,"name":"address","nodeType":"ElementaryTypeName","src":"6260:7:7","typeDescriptions":{}}},"id":4334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6260:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4337,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4327,"src":"6288:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6280:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4335,"name":"address","nodeType":"ElementaryTypeName","src":"6280:7:7","typeDescriptions":{}}},"id":4338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6280:20:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4330,"name":"TimelockChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"6245:14:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":4339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6245:56:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4340,"nodeType":"EmitStatement","src":"6240:61:7"},{"expression":{"id":4343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4341,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"6311:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4342,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4327,"src":"6323:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"src":"6311:23:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4344,"nodeType":"ExpressionStatement","src":"6311:23:7"}]},"id":4346,"implemented":true,"kind":"function","modifiers":[],"name":"_updateTimelock","nameLocation":"6174:15:7","nodeType":"FunctionDefinition","parameters":{"id":4328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4327,"mutability":"mutable","name":"newTimelock","nameLocation":"6209:11:7","nodeType":"VariableDeclaration","scope":4346,"src":"6190:30:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4326,"nodeType":"UserDefinedTypeName","pathNode":{"id":4325,"name":"TimelockController","nameLocations":["6190:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"6190:18:7"},"referencedDeclaration":3608,"src":"6190:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6189:32:7"},"returnParameters":{"id":4329,"nodeType":"ParameterList","parameters":[],"src":"6230:0:7"},"scope":4366,"src":"6165:176:7","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":4364,"nodeType":"Block","src":"6644:64:7","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":4358,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6677:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4366","typeString":"contract GovernorTimelockControl"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4366","typeString":"contract GovernorTimelockControl"}],"id":4357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6669:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4356,"name":"address","nodeType":"ElementaryTypeName","src":"6669:7:7","typeDescriptions":{}}},"id":4359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6669:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6661:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":4354,"name":"bytes20","nodeType":"ElementaryTypeName","src":"6661:7:7","typeDescriptions":{}}},"id":4360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6661:22:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4361,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4349,"src":"6686:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6661:40:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4353,"id":4363,"nodeType":"Return","src":"6654:47:7"}]},"documentation":{"id":4347,"nodeType":"StructuredDocumentation","src":"6347:213:7","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":4365,"implemented":true,"kind":"function","modifiers":[],"name":"_timelockSalt","nameLocation":"6574:13:7","nodeType":"FunctionDefinition","parameters":{"id":4350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4349,"mutability":"mutable","name":"descriptionHash","nameLocation":"6596:15:7","nodeType":"VariableDeclaration","scope":4365,"src":"6588:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4348,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6588:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6587:25:7"},"returnParameters":{"id":4353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4352,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4365,"src":"6635:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4351,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6635:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6634:9:7"},"scope":4366,"src":"6565:143:7","stateMutability":"view","virtual":false,"visibility":"private"}],"scope":4367,"src":"1499:5211:7","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,4049,5326]}],"src":"133:6578:7"},"id":7},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","exportedSymbols":{"Governor":[2134],"GovernorVotes":[4482],"IERC5805":[5357],"IVotes":[4760],"SafeCast":[12565],"Time":[14919]},"id":4483,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4368,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:8"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4370,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":2135,"src":"149:41:8","symbolAliases":[{"foreign":{"id":4369,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"157:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../utils/IVotes.sol","id":4372,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":4761,"src":"191:43:8","symbolAliases":[{"foreign":{"id":4371,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"199:6:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4374,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":5358,"src":"235:55:8","symbolAliases":[{"foreign":{"id":4373,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"243:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4376,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":12566,"src":"291:55:8","symbolAliases":[{"foreign":{"id":4375,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"299:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4378,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":14920,"src":"347:48:8","symbolAliases":[{"foreign":{"id":4377,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"355:4:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4380,"name":"Governor","nameLocations":["570:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"570:8:8"},"id":4381,"nodeType":"InheritanceSpecifier","src":"570:8:8"}],"canonicalName":"GovernorVotes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4379,"nodeType":"StructuredDocumentation","src":"397:137:8","text":" @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes}\n token."},"fullyImplemented":false,"id":4482,"linearizedBaseContracts":[4482,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorVotes","nameLocation":"553:13:8","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4384,"mutability":"immutable","name":"_token","nameLocation":"612:6:8","nodeType":"VariableDeclaration","scope":4482,"src":"585:33:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"},"typeName":{"id":4383,"nodeType":"UserDefinedTypeName","pathNode":{"id":4382,"name":"IERC5805","nameLocations":["585:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"585:8:8"},"referencedDeclaration":5357,"src":"585:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"visibility":"private"},{"body":{"id":4399,"nodeType":"Block","src":"658:57:8","statements":[{"expression":{"id":4397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4390,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"668:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4394,"name":"tokenAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4387,"src":"694:12:8","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}],"id":4393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"686:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4392,"name":"address","nodeType":"ElementaryTypeName","src":"686:7:8","typeDescriptions":{}}},"id":4395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"686:21:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4391,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"677:8:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC5805_$5357_$","typeString":"type(contract IERC5805)"}},"id":4396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"677:31:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"src":"668:40:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4398,"nodeType":"ExpressionStatement","src":"668:40:8"}]},"id":4400,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4387,"mutability":"mutable","name":"tokenAddress","nameLocation":"644:12:8","nodeType":"VariableDeclaration","scope":4400,"src":"637:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"},"typeName":{"id":4386,"nodeType":"UserDefinedTypeName","pathNode":{"id":4385,"name":"IVotes","nameLocations":["637:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":4760,"src":"637:6:8"},"referencedDeclaration":4760,"src":"637:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}},"visibility":"internal"}],"src":"636:21:8"},"returnParameters":{"id":4389,"nodeType":"ParameterList","parameters":[],"src":"658:0:8"},"scope":4482,"src":"625:90:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4409,"nodeType":"Block","src":"850:30:8","statements":[{"expression":{"id":4407,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"867:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"functionReturnParameters":4406,"id":4408,"nodeType":"Return","src":"860:13:8"}]},"documentation":{"id":4401,"nodeType":"StructuredDocumentation","src":"721:68:8","text":" @dev The token that voting power is sourced from."},"functionSelector":"fc0c546a","id":4410,"implemented":true,"kind":"function","modifiers":[],"name":"token","nameLocation":"803:5:8","nodeType":"FunctionDefinition","parameters":{"id":4402,"nodeType":"ParameterList","parameters":[],"src":"808:2:8"},"returnParameters":{"id":4406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4410,"src":"840:8:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"},"typeName":{"id":4404,"nodeType":"UserDefinedTypeName","pathNode":{"id":4403,"name":"IERC5805","nameLocations":["840:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"840:8:8"},"referencedDeclaration":5357,"src":"840:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"visibility":"internal"}],"src":"839:10:8"},"scope":4482,"src":"794:86:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2095],"body":{"id":4435,"nodeType":"Block","src":"1120:161:8","statements":[{"clauses":[{"block":{"id":4426,"nodeType":"Block","src":"1177:41:8","statements":[{"expression":{"id":4424,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"1198:9:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4416,"id":4425,"nodeType":"Return","src":"1191:16:8"}]},"errorName":"","id":4427,"nodeType":"TryCatchClause","parameters":{"id":4423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4422,"mutability":"mutable","name":"timepoint","nameLocation":"1166:9:8","nodeType":"VariableDeclaration","scope":4427,"src":"1159:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4421,"name":"uint48","nodeType":"ElementaryTypeName","src":"1159:6:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1158:18:8"},"src":"1150:68:8"},{"block":{"id":4432,"nodeType":"Block","src":"1225:50:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4428,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"1246:4:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1251:11:8","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"1246:16:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1246:18:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4416,"id":4431,"nodeType":"Return","src":"1239:25:8"}]},"errorName":"","id":4433,"nodeType":"TryCatchClause","src":"1219:56:8"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4417,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1134:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1142:5:8","memberName":"clock","nodeType":"MemberAccess","referencedDeclaration":5365,"src":"1134:13:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint48_$","typeString":"function () view external returns (uint48)"}},"id":4420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:15:8","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4434,"nodeType":"TryStatement","src":"1130:145:8"}]},"documentation":{"id":4411,"nodeType":"StructuredDocumentation","src":"886:166:8","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":4436,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"1066:5:8","nodeType":"FunctionDefinition","overrides":{"id":4413,"nodeType":"OverrideSpecifier","overrides":[],"src":"1094:8:8"},"parameters":{"id":4412,"nodeType":"ParameterList","parameters":[],"src":"1071:2:8"},"returnParameters":{"id":4416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4436,"src":"1112:6:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4414,"name":"uint48","nodeType":"ElementaryTypeName","src":"1112:6:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1111:8:8"},"scope":4482,"src":"1057:224:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2101],"body":{"id":4459,"nodeType":"Block","src":"1511:186:8","statements":[{"clauses":[{"block":{"id":4452,"nodeType":"Block","src":"1580:41:8","statements":[{"expression":{"id":4450,"name":"clockmode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4448,"src":"1601:9:8","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4442,"id":4451,"nodeType":"Return","src":"1594:16:8"}]},"errorName":"","id":4453,"nodeType":"TryCatchClause","parameters":{"id":4449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4448,"mutability":"mutable","name":"clockmode","nameLocation":"1569:9:8","nodeType":"VariableDeclaration","scope":4453,"src":"1555:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4447,"name":"string","nodeType":"ElementaryTypeName","src":"1555:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1554:25:8"},"src":"1546:75:8"},{"block":{"id":4456,"nodeType":"Block","src":"1628:63:8","statements":[{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":4454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1649:31:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":4442,"id":4455,"nodeType":"Return","src":"1642:38:8"}]},"errorName":"","id":4457,"nodeType":"TryCatchClause","src":"1622:69:8"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4443,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1525:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1533:10:8","memberName":"CLOCK_MODE","nodeType":"MemberAccess","referencedDeclaration":5371,"src":"1525:18:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view external returns (string memory)"}},"id":4446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:20:8","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":4458,"nodeType":"TryStatement","src":"1521:170:8"}]},"documentation":{"id":4437,"nodeType":"StructuredDocumentation","src":"1287:91:8","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":4460,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"1445:10:8","nodeType":"FunctionDefinition","overrides":{"id":4439,"nodeType":"OverrideSpecifier","overrides":[],"src":"1478:8:8"},"parameters":{"id":4438,"nodeType":"ParameterList","parameters":[],"src":"1455:2:8"},"returnParameters":{"id":4442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4460,"src":"1496:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4440,"name":"string","nodeType":"ElementaryTypeName","src":"1496:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1495:15:8"},"scope":4482,"src":"1436:261:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[857],"body":{"id":4480,"nodeType":"Block","src":"1981:64:8","statements":[{"expression":{"arguments":[{"id":4476,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4463,"src":"2019:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4477,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4465,"src":"2028:9:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4473,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1998:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2006:12:8","memberName":"getPastVotes","nodeType":"MemberAccess","referencedDeclaration":4721,"src":"1998:20:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view external returns (uint256)"}},"id":4478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4472,"id":4479,"nodeType":"Return","src":"1991:47:8"}]},"documentation":{"id":4461,"nodeType":"StructuredDocumentation","src":"1703:114:8","text":" Read the voting weight from the token's built in snapshot mechanism (see {Governor-_getVotes})."},"id":4481,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"1831:9:8","nodeType":"FunctionDefinition","overrides":{"id":4469,"nodeType":"OverrideSpecifier","overrides":[],"src":"1954:8:8"},"parameters":{"id":4468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4463,"mutability":"mutable","name":"account","nameLocation":"1858:7:8","nodeType":"VariableDeclaration","scope":4481,"src":"1850:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4462,"name":"address","nodeType":"ElementaryTypeName","src":"1850:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4465,"mutability":"mutable","name":"timepoint","nameLocation":"1883:9:8","nodeType":"VariableDeclaration","scope":4481,"src":"1875:17:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4464,"name":"uint256","nodeType":"ElementaryTypeName","src":"1875:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4467,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4481,"src":"1902:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4466,"name":"bytes","nodeType":"ElementaryTypeName","src":"1902:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1840:91:8"},"returnParameters":{"id":4472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4481,"src":"1972:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4470,"name":"uint256","nodeType":"ElementaryTypeName","src":"1972:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:9:8"},"scope":4482,"src":"1822:223:8","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":4483,"src":"535:1512:8","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"123:1925:8"},"id":8},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","exportedSymbols":{"Checkpoints":[14290],"GovernorVotes":[4482],"GovernorVotesQuorumFraction":[4677],"SafeCast":[12565]},"id":4678,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4484,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"137:24:9"},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","file":"./GovernorVotes.sol","id":4486,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":4483,"src":"163:50:9","symbolAliases":[{"foreign":{"id":4485,"name":"GovernorVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4482,"src":"171:13:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4488,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":12566,"src":"214:55:9","symbolAliases":[{"foreign":{"id":4487,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"222:8:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4490,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":14291,"src":"270:64:9","symbolAliases":[{"foreign":{"id":4489,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"278:11:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4492,"name":"GovernorVotes","nameLocations":["542:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"542:13:9"},"id":4493,"nodeType":"InheritanceSpecifier","src":"542:13:9"}],"canonicalName":"GovernorVotesQuorumFraction","contractDependencies":[],"contractKind":"contract","documentation":{"id":4491,"nodeType":"StructuredDocumentation","src":"336:156:9","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":4677,"linearizedBaseContracts":[4677,4482,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorVotesQuorumFraction","nameLocation":"511:27:9","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4497,"libraryName":{"id":4494,"name":"Checkpoints","nameLocations":["568:11:9"],"nodeType":"IdentifierPath","referencedDeclaration":14290,"src":"568:11:9"},"nodeType":"UsingForDirective","src":"562:43:9","typeName":{"id":4496,"nodeType":"UserDefinedTypeName","pathNode":{"id":4495,"name":"Checkpoints.Trace208","nameLocations":["584:11:9","596:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"584:20:9"},"referencedDeclaration":13246,"src":"584:20:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":false,"id":4500,"mutability":"mutable","name":"_quorumNumeratorHistory","nameLocation":"640:23:9","nodeType":"VariableDeclaration","scope":4677,"src":"611:52:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4499,"nodeType":"UserDefinedTypeName","pathNode":{"id":4498,"name":"Checkpoints.Trace208","nameLocations":["611:11:9","623:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"611:20:9"},"referencedDeclaration":13246,"src":"611:20:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"anonymous":false,"eventSelector":"0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997","id":4506,"name":"QuorumNumeratorUpdated","nameLocation":"676:22:9","nodeType":"EventDefinition","parameters":{"id":4505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4502,"indexed":false,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"707:18:9","nodeType":"VariableDeclaration","scope":4506,"src":"699:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4501,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4504,"indexed":false,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"735:18:9","nodeType":"VariableDeclaration","scope":4506,"src":"727:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4503,"name":"uint256","nodeType":"ElementaryTypeName","src":"727:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:56:9"},"src":"670:85:9"},{"documentation":{"id":4507,"nodeType":"StructuredDocumentation","src":"761:63:9","text":" @dev The quorum set is not a valid fraction."},"errorSelector":"243e5445","id":4513,"name":"GovernorInvalidQuorumFraction","nameLocation":"835:29:9","nodeType":"ErrorDefinition","parameters":{"id":4512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4509,"mutability":"mutable","name":"quorumNumerator","nameLocation":"873:15:9","nodeType":"VariableDeclaration","scope":4513,"src":"865:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4508,"name":"uint256","nodeType":"ElementaryTypeName","src":"865:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4511,"mutability":"mutable","name":"quorumDenominator","nameLocation":"898:17:9","nodeType":"VariableDeclaration","scope":4513,"src":"890:25:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4510,"name":"uint256","nodeType":"ElementaryTypeName","src":"890:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"864:52:9"},"src":"829:88:9"},{"body":{"id":4523,"nodeType":"Block","src":"1346:61:9","statements":[{"expression":{"arguments":[{"id":4520,"name":"quorumNumeratorValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4516,"src":"1379:20:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4519,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"1356:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1356:44:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4522,"nodeType":"ExpressionStatement","src":"1356:44:9"}]},"documentation":{"id":4514,"nodeType":"StructuredDocumentation","src":"923:376:9","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":4524,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4516,"mutability":"mutable","name":"quorumNumeratorValue","nameLocation":"1324:20:9","nodeType":"VariableDeclaration","scope":4524,"src":"1316:28:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4515,"name":"uint256","nodeType":"ElementaryTypeName","src":"1316:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1315:30:9"},"returnParameters":{"id":4518,"nodeType":"ParameterList","parameters":[],"src":"1346:0:9"},"scope":4677,"src":"1304:103:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4534,"nodeType":"Block","src":"1569:56:9","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4530,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"1586:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4531,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1610:6:9","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"1586:30:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1586:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4529,"id":4533,"nodeType":"Return","src":"1579:39:9"}]},"documentation":{"id":4525,"nodeType":"StructuredDocumentation","src":"1413:86:9","text":" @dev Returns the current quorum numerator. See {quorumDenominator}."},"functionSelector":"a7713a70","id":4535,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1513:15:9","nodeType":"FunctionDefinition","parameters":{"id":4526,"nodeType":"ParameterList","parameters":[],"src":"1528:2:9"},"returnParameters":{"id":4529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4535,"src":"1560:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4527,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1559:9:9"},"scope":4677,"src":"1504:121:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4586,"nodeType":"Block","src":"1820:534:9","statements":[{"assignments":[4544],"declarations":[{"constant":false,"id":4544,"mutability":"mutable","name":"length","nameLocation":"1838:6:9","nodeType":"VariableDeclaration","scope":4586,"src":"1830:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4543,"name":"uint256","nodeType":"ElementaryTypeName","src":"1830:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4548,"initialValue":{"expression":{"expression":{"id":4545,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"1847:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1871:12:9","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"1847:36:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":4547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1884:6:9","memberName":"length","nodeType":"MemberAccess","src":"1847:43:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1830:60:9"},{"assignments":[4553],"declarations":[{"constant":false,"id":4553,"mutability":"mutable","name":"latest","nameLocation":"1993:6:9","nodeType":"VariableDeclaration","scope":4586,"src":"1959:40:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":4552,"nodeType":"UserDefinedTypeName","pathNode":{"id":4551,"name":"Checkpoints.Checkpoint208","nameLocations":["1959:11:9","1971:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"1959:25:9"},"referencedDeclaration":13251,"src":"1959:25:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":4560,"initialValue":{"baseExpression":{"expression":{"id":4554,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"2002:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4555,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2026:12:9","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"2002:36:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":4559,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4556,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4544,"src":"2039:6:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":4557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2039:10:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2002:48:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1959:91:9"},{"assignments":[4562],"declarations":[{"constant":false,"id":4562,"mutability":"mutable","name":"latestKey","nameLocation":"2067:9:9","nodeType":"VariableDeclaration","scope":4586,"src":"2060:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4561,"name":"uint48","nodeType":"ElementaryTypeName","src":"2060:6:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4565,"initialValue":{"expression":{"id":4563,"name":"latest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"2079:6:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":4564,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2086:4:9","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"2079:11:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"2060:30:9"},{"assignments":[4567],"declarations":[{"constant":false,"id":4567,"mutability":"mutable","name":"latestValue","nameLocation":"2108:11:9","nodeType":"VariableDeclaration","scope":4586,"src":"2100:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":4566,"name":"uint208","nodeType":"ElementaryTypeName","src":"2100:7:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":4570,"initialValue":{"expression":{"id":4568,"name":"latest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"2122:6:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":4569,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2129:6:9","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"2122:13:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"VariableDeclarationStatement","src":"2100:35:9"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4571,"name":"latestKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4562,"src":"2149:9:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4572,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"2162:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2149:22:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4577,"nodeType":"IfStatement","src":"2145:71:9","trueBody":{"id":4576,"nodeType":"Block","src":"2173:43:9","statements":[{"expression":{"id":4574,"name":"latestValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4567,"src":"2194:11:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4542,"id":4575,"nodeType":"Return","src":"2187:18:9"}]}},{"expression":{"arguments":[{"arguments":[{"id":4582,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"2336:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4580,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"2318:8:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2327:8:9","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"2318:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4578,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"2276:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4579,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2300:17:9","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"2276:41:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2276:71:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4542,"id":4585,"nodeType":"Return","src":"2269:78:9"}]},"documentation":{"id":4536,"nodeType":"StructuredDocumentation","src":"1631:102:9","text":" @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}."},"functionSelector":"60c4247f","id":4587,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1747:15:9","nodeType":"FunctionDefinition","parameters":{"id":4539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4538,"mutability":"mutable","name":"timepoint","nameLocation":"1771:9:9","nodeType":"VariableDeclaration","scope":4587,"src":"1763:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4537,"name":"uint256","nodeType":"ElementaryTypeName","src":"1763:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1762:19:9"},"returnParameters":{"id":4542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4587,"src":"1811:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4540,"name":"uint256","nodeType":"ElementaryTypeName","src":"1811:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1810:9:9"},"scope":4677,"src":"1738:616:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4595,"nodeType":"Block","src":"2527:27:9","statements":[{"expression":{"hexValue":"313030","id":4593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2544:3:9","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"functionReturnParameters":4592,"id":4594,"nodeType":"Return","src":"2537:10:9"}]},"documentation":{"id":4588,"nodeType":"StructuredDocumentation","src":"2360:95:9","text":" @dev Returns the quorum denominator. Defaults to 100, but may be overridden."},"functionSelector":"97c3d334","id":4596,"implemented":true,"kind":"function","modifiers":[],"name":"quorumDenominator","nameLocation":"2469:17:9","nodeType":"FunctionDefinition","parameters":{"id":4589,"nodeType":"ParameterList","parameters":[],"src":"2486:2:9"},"returnParameters":{"id":4592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4596,"src":"2518:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4590,"name":"uint256","nodeType":"ElementaryTypeName","src":"2518:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2517:9:9"},"scope":4677,"src":"2460:94:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2121],"body":{"id":4619,"nodeType":"Block","src":"2771:114:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4608,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"2816:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4605,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"2789:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2789:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2797:18:9","memberName":"getPastTotalSupply","nodeType":"MemberAccess","referencedDeclaration":4729,"src":"2789:26:9","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":4609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2789:37:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4611,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"2845:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4610,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4535,4587],"referencedDeclaration":4587,"src":"2829:15:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":4612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2829:26:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2789:66:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4614,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2788:68:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4615,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4596,"src":"2859:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2859:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2788:90:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4604,"id":4618,"nodeType":"Return","src":"2781:97:9"}]},"documentation":{"id":4597,"nodeType":"StructuredDocumentation","src":"2560:124:9","text":" @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`."},"functionSelector":"f8ce560a","id":4620,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"2698:6:9","nodeType":"FunctionDefinition","overrides":{"id":4601,"nodeType":"OverrideSpecifier","overrides":[],"src":"2744:8:9"},"parameters":{"id":4600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4599,"mutability":"mutable","name":"timepoint","nameLocation":"2713:9:9","nodeType":"VariableDeclaration","scope":4620,"src":"2705:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4598,"name":"uint256","nodeType":"ElementaryTypeName","src":"2705:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2704:19:9"},"returnParameters":{"id":4604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4603,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4620,"src":"2762:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4602,"name":"uint256","nodeType":"ElementaryTypeName","src":"2762:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2761:9:9"},"scope":4677,"src":"2689:196:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4632,"nodeType":"Block","src":"3252:59:9","statements":[{"expression":{"arguments":[{"id":4629,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4623,"src":"3285:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4628,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"3262:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3262:42:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4631,"nodeType":"ExpressionStatement","src":"3262:42:9"}]},"documentation":{"id":4621,"nodeType":"StructuredDocumentation","src":"2891:265:9","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":4633,"implemented":true,"kind":"function","modifiers":[{"id":4626,"kind":"modifierInvocation","modifierName":{"id":4625,"name":"onlyGovernance","nameLocations":["3237:14:9"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"3237:14:9"},"nodeType":"ModifierInvocation","src":"3237:14:9"}],"name":"updateQuorumNumerator","nameLocation":"3170:21:9","nodeType":"FunctionDefinition","parameters":{"id":4624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4623,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"3200:18:9","nodeType":"VariableDeclaration","scope":4633,"src":"3192:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4622,"name":"uint256","nodeType":"ElementaryTypeName","src":"3192:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3191:28:9"},"returnParameters":{"id":4627,"nodeType":"ParameterList","parameters":[],"src":"3252:0:9"},"scope":4677,"src":"3161:150:9","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4675,"nodeType":"Block","src":"3609:421:9","statements":[{"assignments":[4640],"declarations":[{"constant":false,"id":4640,"mutability":"mutable","name":"denominator","nameLocation":"3627:11:9","nodeType":"VariableDeclaration","scope":4675,"src":"3619:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4639,"name":"uint256","nodeType":"ElementaryTypeName","src":"3619:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4643,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4641,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4596,"src":"3641:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3641:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3619:41:9"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4644,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3674:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4645,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4640,"src":"3695:11:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3674:32:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4653,"nodeType":"IfStatement","src":"3670:132:9","trueBody":{"id":4652,"nodeType":"Block","src":"3708:94:9","statements":[{"errorCall":{"arguments":[{"id":4648,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3759:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4649,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4640,"src":"3779:11:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4647,"name":"GovernorInvalidQuorumFraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4513,"src":"3729:29:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":4650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3729:62:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4651,"nodeType":"RevertStatement","src":"3722:69:9"}]}},{"assignments":[4655],"declarations":[{"constant":false,"id":4655,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"3820:18:9","nodeType":"VariableDeclaration","scope":4675,"src":"3812:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4654,"name":"uint256","nodeType":"ElementaryTypeName","src":"3812:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4658,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4656,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4535,4587],"referencedDeclaration":4535,"src":"3841:15:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3841:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3812:46:9"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4662,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[4436],"referencedDeclaration":4436,"src":"3897:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3897:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"id":4666,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3925:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4664,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3906:8:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3915:9:9","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"3906:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":4667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3906:38:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":4659,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"3868:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3892:4:9","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13274,"src":"3868:28:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":4668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3868:77:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":4669,"nodeType":"ExpressionStatement","src":"3868:77:9"},{"eventCall":{"arguments":[{"id":4671,"name":"oldQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4655,"src":"3984:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4672,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"4004:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4670,"name":"QuorumNumeratorUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"3961:22:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3961:62:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4674,"nodeType":"EmitStatement","src":"3956:67:9"}]},"documentation":{"id":4634,"nodeType":"StructuredDocumentation","src":"3317:210:9","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":4676,"implemented":true,"kind":"function","modifiers":[],"name":"_updateQuorumNumerator","nameLocation":"3541:22:9","nodeType":"FunctionDefinition","parameters":{"id":4637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4636,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"3572:18:9","nodeType":"VariableDeclaration","scope":4676,"src":"3564:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4635,"name":"uint256","nodeType":"ElementaryTypeName","src":"3564:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3563:28:9"},"returnParameters":{"id":4638,"nodeType":"ParameterList","parameters":[],"src":"3609:0:9"},"scope":4677,"src":"3532:498:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4678,"src":"493:3539:9","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,4513,6731,6750,6874,6876,10810,12717],"usedEvents":[2264,2271,2276,2281,2294,2309,4506,5326]}],"src":"137:3896:9"},"id":9},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","exportedSymbols":{"IVotes":[4760]},"id":4761,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4679,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"110:24:10"},{"abstract":false,"baseContracts":[],"canonicalName":"IVotes","contractDependencies":[],"contractKind":"interface","documentation":{"id":4680,"nodeType":"StructuredDocumentation","src":"136:102:10","text":" @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts."},"fullyImplemented":false,"id":4760,"linearizedBaseContracts":[4760],"name":"IVotes","nameLocation":"249:6:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4681,"nodeType":"StructuredDocumentation","src":"262:55:10","text":" @dev The signature used has expired."},"errorSelector":"4683af0e","id":4685,"name":"VotesExpiredSignature","nameLocation":"328:21:10","nodeType":"ErrorDefinition","parameters":{"id":4684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4683,"mutability":"mutable","name":"expiry","nameLocation":"358:6:10","nodeType":"VariableDeclaration","scope":4685,"src":"350:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4682,"name":"uint256","nodeType":"ElementaryTypeName","src":"350:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"349:16:10"},"src":"322:44:10"},{"anonymous":false,"documentation":{"id":4686,"nodeType":"StructuredDocumentation","src":"372:71:10","text":" @dev Emitted when an account changes their delegate."},"eventSelector":"3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f","id":4694,"name":"DelegateChanged","nameLocation":"454:15:10","nodeType":"EventDefinition","parameters":{"id":4693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4688,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"486:9:10","nodeType":"VariableDeclaration","scope":4694,"src":"470:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4687,"name":"address","nodeType":"ElementaryTypeName","src":"470:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4690,"indexed":true,"mutability":"mutable","name":"fromDelegate","nameLocation":"513:12:10","nodeType":"VariableDeclaration","scope":4694,"src":"497:28:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4689,"name":"address","nodeType":"ElementaryTypeName","src":"497:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4692,"indexed":true,"mutability":"mutable","name":"toDelegate","nameLocation":"543:10:10","nodeType":"VariableDeclaration","scope":4694,"src":"527:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4691,"name":"address","nodeType":"ElementaryTypeName","src":"527:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"469:85:10"},"src":"448:107:10"},{"anonymous":false,"documentation":{"id":4695,"nodeType":"StructuredDocumentation","src":"561:131:10","text":" @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units."},"eventSelector":"dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724","id":4703,"name":"DelegateVotesChanged","nameLocation":"703:20:10","nodeType":"EventDefinition","parameters":{"id":4702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4697,"indexed":true,"mutability":"mutable","name":"delegate","nameLocation":"740:8:10","nodeType":"VariableDeclaration","scope":4703,"src":"724:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4696,"name":"address","nodeType":"ElementaryTypeName","src":"724:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4699,"indexed":false,"mutability":"mutable","name":"previousVotes","nameLocation":"758:13:10","nodeType":"VariableDeclaration","scope":4703,"src":"750:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4698,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4701,"indexed":false,"mutability":"mutable","name":"newVotes","nameLocation":"781:8:10","nodeType":"VariableDeclaration","scope":4703,"src":"773:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4700,"name":"uint256","nodeType":"ElementaryTypeName","src":"773:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"723:67:10"},"src":"697:94:10"},{"documentation":{"id":4704,"nodeType":"StructuredDocumentation","src":"797:79:10","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":4711,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"890:8:10","nodeType":"FunctionDefinition","parameters":{"id":4707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4706,"mutability":"mutable","name":"account","nameLocation":"907:7:10","nodeType":"VariableDeclaration","scope":4711,"src":"899:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4705,"name":"address","nodeType":"ElementaryTypeName","src":"899:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"898:17:10"},"returnParameters":{"id":4710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4711,"src":"939:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4708,"name":"uint256","nodeType":"ElementaryTypeName","src":"939:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"938:9:10"},"scope":4760,"src":"881:67:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4712,"nodeType":"StructuredDocumentation","src":"954:230:10","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":4721,"implemented":false,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"1198:12:10","nodeType":"FunctionDefinition","parameters":{"id":4717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4714,"mutability":"mutable","name":"account","nameLocation":"1219:7:10","nodeType":"VariableDeclaration","scope":4721,"src":"1211:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4713,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4716,"mutability":"mutable","name":"timepoint","nameLocation":"1236:9:10","nodeType":"VariableDeclaration","scope":4721,"src":"1228:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4715,"name":"uint256","nodeType":"ElementaryTypeName","src":"1228:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:36:10"},"returnParameters":{"id":4720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4719,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4721,"src":"1270:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4718,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1269:9:10"},"scope":4760,"src":"1189:90:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4722,"nodeType":"StructuredDocumentation","src":"1285:481:10","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":4729,"implemented":false,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"1780:18:10","nodeType":"FunctionDefinition","parameters":{"id":4725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4724,"mutability":"mutable","name":"timepoint","nameLocation":"1807:9:10","nodeType":"VariableDeclaration","scope":4729,"src":"1799:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4723,"name":"uint256","nodeType":"ElementaryTypeName","src":"1799:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1798:19:10"},"returnParameters":{"id":4728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4729,"src":"1841:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4726,"name":"uint256","nodeType":"ElementaryTypeName","src":"1841:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1840:9:10"},"scope":4760,"src":"1771:79:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4730,"nodeType":"StructuredDocumentation","src":"1856:71:10","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":4737,"implemented":false,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"1941:9:10","nodeType":"FunctionDefinition","parameters":{"id":4733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4732,"mutability":"mutable","name":"account","nameLocation":"1959:7:10","nodeType":"VariableDeclaration","scope":4737,"src":"1951:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4731,"name":"address","nodeType":"ElementaryTypeName","src":"1951:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1950:17:10"},"returnParameters":{"id":4736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4735,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4737,"src":"1991:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4734,"name":"address","nodeType":"ElementaryTypeName","src":"1991:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1990:9:10"},"scope":4760,"src":"1932:68:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4738,"nodeType":"StructuredDocumentation","src":"2006:71:10","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":4743,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"2091:8:10","nodeType":"FunctionDefinition","parameters":{"id":4741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4740,"mutability":"mutable","name":"delegatee","nameLocation":"2108:9:10","nodeType":"VariableDeclaration","scope":4743,"src":"2100:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4739,"name":"address","nodeType":"ElementaryTypeName","src":"2100:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2099:19:10"},"returnParameters":{"id":4742,"nodeType":"ParameterList","parameters":[],"src":"2127:0:10"},"scope":4760,"src":"2082:46:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":4744,"nodeType":"StructuredDocumentation","src":"2134:67:10","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":4759,"implemented":false,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"2215:13:10","nodeType":"FunctionDefinition","parameters":{"id":4757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4746,"mutability":"mutable","name":"delegatee","nameLocation":"2237:9:10","nodeType":"VariableDeclaration","scope":4759,"src":"2229:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4745,"name":"address","nodeType":"ElementaryTypeName","src":"2229:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4748,"mutability":"mutable","name":"nonce","nameLocation":"2256:5:10","nodeType":"VariableDeclaration","scope":4759,"src":"2248:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4747,"name":"uint256","nodeType":"ElementaryTypeName","src":"2248:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4750,"mutability":"mutable","name":"expiry","nameLocation":"2271:6:10","nodeType":"VariableDeclaration","scope":4759,"src":"2263:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4749,"name":"uint256","nodeType":"ElementaryTypeName","src":"2263:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4752,"mutability":"mutable","name":"v","nameLocation":"2285:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2279:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4751,"name":"uint8","nodeType":"ElementaryTypeName","src":"2279:5:10","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4754,"mutability":"mutable","name":"r","nameLocation":"2296:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2288:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4753,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2288:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4756,"mutability":"mutable","name":"s","nameLocation":"2307:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2299:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4755,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2299:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2228:81:10"},"returnParameters":{"id":4758,"nodeType":"ParameterList","parameters":[],"src":"2318:0:10"},"scope":4760,"src":"2206:113:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4761,"src":"239:2082:10","usedErrors":[4685],"usedEvents":[4694,4703]}],"src":"110:2212:10"},"id":10},"@openzeppelin/contracts/governance/utils/Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","exportedSymbols":{"Checkpoints":[14290],"Context":[6718],"ECDSA":[8749],"EIP712":[8976],"IERC5805":[5357],"Nonces":[6808],"SafeCast":[12565],"Time":[14919],"Votes":[5303]},"id":5304,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4762,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:11"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4764,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":5358,"src":"135:55:11","symbolAliases":[{"foreign":{"id":4763,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"143:8:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":4766,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":6719,"src":"191:48:11","symbolAliases":[{"foreign":{"id":4765,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"199:7:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../utils/Nonces.sol","id":4768,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":6809,"src":"240:46:11","symbolAliases":[{"foreign":{"id":4767,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6808,"src":"248:6:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../utils/cryptography/EIP712.sol","id":4770,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":8977,"src":"287:59:11","symbolAliases":[{"foreign":{"id":4769,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8976,"src":"295:6:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4772,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":14291,"src":"347:64:11","symbolAliases":[{"foreign":{"id":4771,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"355:11:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4774,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":12566,"src":"412:55:11","symbolAliases":[{"foreign":{"id":4773,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"420:8:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../utils/cryptography/ECDSA.sol","id":4776,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":8750,"src":"468:57:11","symbolAliases":[{"foreign":{"id":4775,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"476:5:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4778,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":14920,"src":"526:48:11","symbolAliases":[{"foreign":{"id":4777,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"534:4:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4780,"name":"Context","nameLocations":["1919:7:11"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1919:7:11"},"id":4781,"nodeType":"InheritanceSpecifier","src":"1919:7:11"},{"baseName":{"id":4782,"name":"EIP712","nameLocations":["1928:6:11"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"1928:6:11"},"id":4783,"nodeType":"InheritanceSpecifier","src":"1928:6:11"},{"baseName":{"id":4784,"name":"Nonces","nameLocations":["1936:6:11"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"1936:6:11"},"id":4785,"nodeType":"InheritanceSpecifier","src":"1936:6:11"},{"baseName":{"id":4786,"name":"IERC5805","nameLocations":["1944:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"1944:8:11"},"id":4787,"nodeType":"InheritanceSpecifier","src":"1944:8:11"}],"canonicalName":"Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4779,"nodeType":"StructuredDocumentation","src":"576:1315:11","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":5303,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[5303,5357,4760,5372,6808,8976,5346,6718],"name":"Votes","nameLocation":"1910:5:11","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4791,"libraryName":{"id":4788,"name":"Checkpoints","nameLocations":["1965:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":14290,"src":"1965:11:11"},"nodeType":"UsingForDirective","src":"1959:43:11","typeName":{"id":4790,"nodeType":"UserDefinedTypeName","pathNode":{"id":4789,"name":"Checkpoints.Trace208","nameLocations":["1981:11:11","1993:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"1981:20:11"},"referencedDeclaration":13246,"src":"1981:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":true,"id":4796,"mutability":"constant","name":"DELEGATION_TYPEHASH","nameLocation":"2033:19:11","nodeType":"VariableDeclaration","scope":5303,"src":"2008:126:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4792,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2008:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"44656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929","id":4794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2073:60:11","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":4793,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2063:9:11","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2063:71:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":4800,"mutability":"mutable","name":"_delegatee","nameLocation":"2185:10:11","nodeType":"VariableDeclaration","scope":5303,"src":"2141:54:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":4799,"keyName":"account","keyNameLocation":"2157:7:11","keyType":{"id":4797,"name":"address","nodeType":"ElementaryTypeName","src":"2149:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2141:35:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4798,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":4805,"mutability":"mutable","name":"_delegateCheckpoints","nameLocation":"2261:20:11","nodeType":"VariableDeclaration","scope":5303,"src":"2202:79:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"typeName":{"id":4804,"keyName":"delegatee","keyNameLocation":"2218:9:11","keyType":{"id":4801,"name":"address","nodeType":"ElementaryTypeName","src":"2210:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2202:50:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4803,"nodeType":"UserDefinedTypeName","pathNode":{"id":4802,"name":"Checkpoints.Trace208","nameLocations":["2231:11:11","2243:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2231:20:11"},"referencedDeclaration":13246,"src":"2231:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},"visibility":"private"},{"constant":false,"id":4808,"mutability":"mutable","name":"_totalCheckpoints","nameLocation":"2317:17:11","nodeType":"VariableDeclaration","scope":5303,"src":"2288:46:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4807,"nodeType":"UserDefinedTypeName","pathNode":{"id":4806,"name":"Checkpoints.Trace208","nameLocations":["2288:11:11","2300:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2288:20:11"},"referencedDeclaration":13246,"src":"2288:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"documentation":{"id":4809,"nodeType":"StructuredDocumentation","src":"2341:59:11","text":" @dev The clock was incorrectly modified."},"errorSelector":"6ff07140","id":4811,"name":"ERC6372InconsistentClock","nameLocation":"2411:24:11","nodeType":"ErrorDefinition","parameters":{"id":4810,"nodeType":"ParameterList","parameters":[],"src":"2435:2:11"},"src":"2405:33:11"},{"documentation":{"id":4812,"nodeType":"StructuredDocumentation","src":"2444:64:11","text":" @dev Lookup to future votes is not available."},"errorSelector":"ecd3f81e","id":4818,"name":"ERC5805FutureLookup","nameLocation":"2519:19:11","nodeType":"ErrorDefinition","parameters":{"id":4817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4814,"mutability":"mutable","name":"timepoint","nameLocation":"2547:9:11","nodeType":"VariableDeclaration","scope":4818,"src":"2539:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4813,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4816,"mutability":"mutable","name":"clock","nameLocation":"2565:5:11","nodeType":"VariableDeclaration","scope":4818,"src":"2558:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4815,"name":"uint48","nodeType":"ElementaryTypeName","src":"2558:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2538:33:11"},"src":"2513:59:11"},{"baseFunctions":[5365],"body":{"id":4828,"nodeType":"Block","src":"2843:42:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4824,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"2860:4:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2865:11:11","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"2860:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2860:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4823,"id":4827,"nodeType":"Return","src":"2853:25:11"}]},"documentation":{"id":4819,"nodeType":"StructuredDocumentation","src":"2578:206:11","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":4829,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"2798:5:11","nodeType":"FunctionDefinition","parameters":{"id":4820,"nodeType":"ParameterList","parameters":[],"src":"2803:2:11"},"returnParameters":{"id":4823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4822,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4829,"src":"2835:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4821,"name":"uint48","nodeType":"ElementaryTypeName","src":"2835:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2834:8:11"},"scope":5303,"src":"2789:96:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5371],"body":{"id":4848,"nodeType":"Block","src":"3106:206:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4835,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"3169:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3169:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4837,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"3180:4:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3185:11:11","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"3180:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3180:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3169:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4845,"nodeType":"IfStatement","src":"3165:93:11","trueBody":{"id":4844,"nodeType":"Block","src":"3200:58:11","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4841,"name":"ERC6372InconsistentClock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4811,"src":"3221:24:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3221:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4843,"nodeType":"RevertStatement","src":"3214:33:11"}]}},{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":4846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3274:31:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":4834,"id":4847,"nodeType":"Return","src":"3267:38:11"}]},"documentation":{"id":4830,"nodeType":"StructuredDocumentation","src":"2891:91:11","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":4849,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"3049:10:11","nodeType":"FunctionDefinition","parameters":{"id":4831,"nodeType":"ParameterList","parameters":[],"src":"3059:2:11"},"returnParameters":{"id":4834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4833,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4849,"src":"3091:13:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4832,"name":"string","nodeType":"ElementaryTypeName","src":"3091:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3090:15:11"},"scope":5303,"src":"3040:272:11","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4876,"nodeType":"Block","src":"3493:195:11","statements":[{"assignments":[4858],"declarations":[{"constant":false,"id":4858,"mutability":"mutable","name":"currentTimepoint","nameLocation":"3510:16:11","nodeType":"VariableDeclaration","scope":4876,"src":"3503:23:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4857,"name":"uint48","nodeType":"ElementaryTypeName","src":"3503:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4861,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4859,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"3529:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3529:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"3503:33:11"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4862,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3550:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4863,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4858,"src":"3563:16:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3550:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4870,"nodeType":"IfStatement","src":"3546:90:11","trueBody":{"errorCall":{"arguments":[{"id":4866,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3608:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4867,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4858,"src":"3619:16:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4865,"name":"ERC5805FutureLookup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"3588:19:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint48_$returns$__$","typeString":"function (uint256,uint48) pure"}},"id":4868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3588:48:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4869,"nodeType":"RevertStatement","src":"3581:55:11"}},{"expression":{"arguments":[{"id":4873,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3671:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4871,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3653:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3662:8:11","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"3653:17:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3653:28:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4856,"id":4875,"nodeType":"Return","src":"3646:35:11"}]},"documentation":{"id":4850,"nodeType":"StructuredDocumentation","src":"3318:92:11","text":" @dev Validate that a timepoint is in the past, and return it as a uint48."},"id":4877,"implemented":true,"kind":"function","modifiers":[],"name":"_validateTimepoint","nameLocation":"3424:18:11","nodeType":"FunctionDefinition","parameters":{"id":4853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4852,"mutability":"mutable","name":"timepoint","nameLocation":"3451:9:11","nodeType":"VariableDeclaration","scope":4877,"src":"3443:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4851,"name":"uint256","nodeType":"ElementaryTypeName","src":"3443:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3442:19:11"},"returnParameters":{"id":4856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4877,"src":"3485:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4854,"name":"uint48","nodeType":"ElementaryTypeName","src":"3485:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3484:8:11"},"scope":5303,"src":"3415:273:11","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4711],"body":{"id":4891,"nodeType":"Block","src":"3851:62:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":4885,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"3868:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":4887,"indexExpression":{"id":4886,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4880,"src":"3889:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3868:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3898:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"3868:36:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3868:38:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4884,"id":4890,"nodeType":"Return","src":"3861:45:11"}]},"documentation":{"id":4878,"nodeType":"StructuredDocumentation","src":"3694:79:11","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":4892,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"3787:8:11","nodeType":"FunctionDefinition","parameters":{"id":4881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4880,"mutability":"mutable","name":"account","nameLocation":"3804:7:11","nodeType":"VariableDeclaration","scope":4892,"src":"3796:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4879,"name":"address","nodeType":"ElementaryTypeName","src":"3796:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3795:17:11"},"returnParameters":{"id":4884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4892,"src":"3842:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4882,"name":"uint256","nodeType":"ElementaryTypeName","src":"3842:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3841:9:11"},"scope":5303,"src":"3778:135:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4721],"body":{"id":4911,"nodeType":"Block","src":"4394:102:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":4907,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4897,"src":"4478:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4906,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"4459:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":4908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4459:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"baseExpression":{"id":4902,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"4411:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":4904,"indexExpression":{"id":4903,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4895,"src":"4432:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4411:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4905,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4441:17:11","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"4411:47:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4411:78:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4901,"id":4910,"nodeType":"Return","src":"4404:85:11"}]},"documentation":{"id":4893,"nodeType":"StructuredDocumentation","src":"3919:374: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.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"3a46b1a8","id":4912,"implemented":true,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"4307:12:11","nodeType":"FunctionDefinition","parameters":{"id":4898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4895,"mutability":"mutable","name":"account","nameLocation":"4328:7:11","nodeType":"VariableDeclaration","scope":4912,"src":"4320:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4894,"name":"address","nodeType":"ElementaryTypeName","src":"4320:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4897,"mutability":"mutable","name":"timepoint","nameLocation":"4345:9:11","nodeType":"VariableDeclaration","scope":4912,"src":"4337:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4896,"name":"uint256","nodeType":"ElementaryTypeName","src":"4337:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4319:36:11"},"returnParameters":{"id":4901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4912,"src":"4385:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4899,"name":"uint256","nodeType":"ElementaryTypeName","src":"4385:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4384:9:11"},"scope":5303,"src":"4298:198:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4729],"body":{"id":4927,"nodeType":"Block","src":"5217:90:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":4923,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4915,"src":"5289:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4922,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"5270:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":4924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5270:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4920,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"5234:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4921,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5252:17:11","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"5234:35:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5234:66:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4919,"id":4926,"nodeType":"Return","src":"5227:73:11"}]},"documentation":{"id":4913,"nodeType":"StructuredDocumentation","src":"4502:625: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.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"8e539e8c","id":4928,"implemented":true,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"5141:18:11","nodeType":"FunctionDefinition","parameters":{"id":4916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4915,"mutability":"mutable","name":"timepoint","nameLocation":"5168:9:11","nodeType":"VariableDeclaration","scope":4928,"src":"5160:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4914,"name":"uint256","nodeType":"ElementaryTypeName","src":"5160:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5159:19:11"},"returnParameters":{"id":4919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4918,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4928,"src":"5208:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4917,"name":"uint256","nodeType":"ElementaryTypeName","src":"5208:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5207:9:11"},"scope":5303,"src":"5132:175:11","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4938,"nodeType":"Block","src":"5451:50:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4934,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"5468:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4935,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5486:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"5468:24:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5468:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4933,"id":4937,"nodeType":"Return","src":"5461:33:11"}]},"documentation":{"id":4929,"nodeType":"StructuredDocumentation","src":"5313:66:11","text":" @dev Returns the current total supply of votes."},"id":4939,"implemented":true,"kind":"function","modifiers":[],"name":"_getTotalSupply","nameLocation":"5393:15:11","nodeType":"FunctionDefinition","parameters":{"id":4930,"nodeType":"ParameterList","parameters":[],"src":"5408:2:11"},"returnParameters":{"id":4933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4939,"src":"5442:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4931,"name":"uint256","nodeType":"ElementaryTypeName","src":"5442:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5441:9:11"},"scope":5303,"src":"5384:117:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[4737],"body":{"id":4951,"nodeType":"Block","src":"5657:43:11","statements":[{"expression":{"baseExpression":{"id":4947,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4800,"src":"5674:10:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4949,"indexExpression":{"id":4948,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"5685:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5674:19:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4946,"id":4950,"nodeType":"Return","src":"5667:26:11"}]},"documentation":{"id":4940,"nodeType":"StructuredDocumentation","src":"5507:71:11","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":4952,"implemented":true,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"5592:9:11","nodeType":"FunctionDefinition","parameters":{"id":4943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4942,"mutability":"mutable","name":"account","nameLocation":"5610:7:11","nodeType":"VariableDeclaration","scope":4952,"src":"5602:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4941,"name":"address","nodeType":"ElementaryTypeName","src":"5602:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5601:17:11"},"returnParameters":{"id":4946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4945,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4952,"src":"5648:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4944,"name":"address","nodeType":"ElementaryTypeName","src":"5648:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5647:9:11"},"scope":5303,"src":"5583:117:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4743],"body":{"id":4968,"nodeType":"Block","src":"5834:86:11","statements":[{"assignments":[4959],"declarations":[{"constant":false,"id":4959,"mutability":"mutable","name":"account","nameLocation":"5852:7:11","nodeType":"VariableDeclaration","scope":4968,"src":"5844:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4958,"name":"address","nodeType":"ElementaryTypeName","src":"5844:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4962,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4960,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"5862:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5862:12:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5844:30:11"},{"expression":{"arguments":[{"id":4964,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4959,"src":"5894:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4965,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4955,"src":"5903:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4963,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"5884:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":4966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5884:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4967,"nodeType":"ExpressionStatement","src":"5884:29:11"}]},"documentation":{"id":4953,"nodeType":"StructuredDocumentation","src":"5706:71:11","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":4969,"implemented":true,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"5791:8:11","nodeType":"FunctionDefinition","parameters":{"id":4956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4955,"mutability":"mutable","name":"delegatee","nameLocation":"5808:9:11","nodeType":"VariableDeclaration","scope":4969,"src":"5800:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4954,"name":"address","nodeType":"ElementaryTypeName","src":"5800:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5799:19:11"},"returnParameters":{"id":4957,"nodeType":"ParameterList","parameters":[],"src":"5834:0:11"},"scope":5303,"src":"5782:138:11","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[4759],"body":{"id":5025,"nodeType":"Block","src":"6171:381:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4985,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6185:5:11","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6191:9:11","memberName":"timestamp","nodeType":"MemberAccess","src":"6185:15:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4987,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6203:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6185:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4994,"nodeType":"IfStatement","src":"6181:91:11","trueBody":{"id":4993,"nodeType":"Block","src":"6211:61:11","statements":[{"errorCall":{"arguments":[{"id":4990,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6254:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4989,"name":"VotesExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4685,"src":"6232:21:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":4991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6232:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4992,"nodeType":"RevertStatement","src":"6225:36:11"}]}},{"assignments":[4996],"declarations":[{"constant":false,"id":4996,"mutability":"mutable","name":"signer","nameLocation":"6289:6:11","nodeType":"VariableDeclaration","scope":5025,"src":"6281:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4995,"name":"address","nodeType":"ElementaryTypeName","src":"6281:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5014,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":5003,"name":"DELEGATION_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4796,"src":"6363:19:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5004,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4972,"src":"6384:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5005,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"6395:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5006,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6402:6:11","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":5001,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6352:3:11","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6356:6:11","memberName":"encode","nodeType":"MemberAccess","src":"6352:10:11","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6352:57:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5000,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"6342:9:11","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6342:68:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4999,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"6325:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":5009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6325:86:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5010,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"6425:1:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":5011,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"6440:1:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5012,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4982,"src":"6455:1:11","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":4997,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"6298:5:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":4998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6304:7:11","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":8699,"src":"6298:13:11","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":5013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:168:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6281:185:11"},{"expression":{"arguments":[{"id":5016,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4996,"src":"6493:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5017,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"6501:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5015,"name":"_useCheckedNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6807,"src":"6476:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6476:31:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5019,"nodeType":"ExpressionStatement","src":"6476:31:11"},{"expression":{"arguments":[{"id":5021,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4996,"src":"6527:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5022,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4972,"src":"6535:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5020,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"6517:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":5023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6517:28:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5024,"nodeType":"ExpressionStatement","src":"6517:28:11"}]},"documentation":{"id":4970,"nodeType":"StructuredDocumentation","src":"5926:67:11","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":5026,"implemented":true,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"6007:13:11","nodeType":"FunctionDefinition","parameters":{"id":4983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4972,"mutability":"mutable","name":"delegatee","nameLocation":"6038:9:11","nodeType":"VariableDeclaration","scope":5026,"src":"6030:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4971,"name":"address","nodeType":"ElementaryTypeName","src":"6030:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4974,"mutability":"mutable","name":"nonce","nameLocation":"6065:5:11","nodeType":"VariableDeclaration","scope":5026,"src":"6057:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4973,"name":"uint256","nodeType":"ElementaryTypeName","src":"6057:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4976,"mutability":"mutable","name":"expiry","nameLocation":"6088:6:11","nodeType":"VariableDeclaration","scope":5026,"src":"6080:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4975,"name":"uint256","nodeType":"ElementaryTypeName","src":"6080:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4978,"mutability":"mutable","name":"v","nameLocation":"6110:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6104:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4977,"name":"uint8","nodeType":"ElementaryTypeName","src":"6104:5:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4980,"mutability":"mutable","name":"r","nameLocation":"6129:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6121:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4979,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6121:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4982,"mutability":"mutable","name":"s","nameLocation":"6148:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6140:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4981,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6140:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6020:135:11"},"returnParameters":{"id":4984,"nodeType":"ParameterList","parameters":[],"src":"6171:0:11"},"scope":5303,"src":"5998:554:11","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5060,"nodeType":"Block","src":"6802:240:11","statements":[{"assignments":[5035],"declarations":[{"constant":false,"id":5035,"mutability":"mutable","name":"oldDelegate","nameLocation":"6820:11:11","nodeType":"VariableDeclaration","scope":5060,"src":"6812:19:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5034,"name":"address","nodeType":"ElementaryTypeName","src":"6812:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5039,"initialValue":{"arguments":[{"id":5037,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6844:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5036,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"6834:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6834:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6812:40:11"},{"expression":{"id":5044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5040,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4800,"src":"6862:10:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":5042,"indexExpression":{"id":5041,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6873:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6862:19:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5043,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6884:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6862:31:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5045,"nodeType":"ExpressionStatement","src":"6862:31:11"},{"eventCall":{"arguments":[{"id":5047,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6925:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5048,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5035,"src":"6934:11:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5049,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6947:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5046,"name":"DelegateChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4694,"src":"6909:15:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (address,address,address)"}},"id":5050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6909:48:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5051,"nodeType":"EmitStatement","src":"6904:53:11"},{"expression":{"arguments":[{"id":5053,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5035,"src":"6986:11:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5054,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6999:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5056,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"7026:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5055,"name":"_getVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5302,"src":"7010:15:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":5057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7010:24:11","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":5052,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"6967:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6967:68:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5059,"nodeType":"ExpressionStatement","src":"6967:68:11"}]},"documentation":{"id":5027,"nodeType":"StructuredDocumentation","src":"6558:167:11","text":" @dev Delegate all of `account`'s voting units to `delegatee`.\n Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}."},"id":5061,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"6739:9:11","nodeType":"FunctionDefinition","parameters":{"id":5032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5029,"mutability":"mutable","name":"account","nameLocation":"6757:7:11","nodeType":"VariableDeclaration","scope":5061,"src":"6749:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5028,"name":"address","nodeType":"ElementaryTypeName","src":"6749:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5031,"mutability":"mutable","name":"delegatee","nameLocation":"6774:9:11","nodeType":"VariableDeclaration","scope":5061,"src":"6766:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5030,"name":"address","nodeType":"ElementaryTypeName","src":"6766:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6748:36:11"},"returnParameters":{"id":5033,"nodeType":"ParameterList","parameters":[],"src":"6802:0:11"},"scope":5303,"src":"6730:312:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5115,"nodeType":"Block","src":"7365:310:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5071,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"7379:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7395:1:11","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":5073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7387:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5072,"name":"address","nodeType":"ElementaryTypeName","src":"7387:7:11","typeDescriptions":{}}},"id":5075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7387:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7379:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5087,"nodeType":"IfStatement","src":"7375:107:11","trueBody":{"id":5086,"nodeType":"Block","src":"7399:83:11","statements":[{"expression":{"arguments":[{"id":5078,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"7419:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5079,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5280,"src":"7438:4:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5082,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7463:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5080,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"7444:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7453:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"7444:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7444:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_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":5077,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7413:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_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":5084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7413:58:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5085,"nodeType":"ExpressionStatement","src":"7413:58:11"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5088,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5066,"src":"7495:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7509:1:11","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":5090,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7501:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5089,"name":"address","nodeType":"ElementaryTypeName","src":"7501:7:11","typeDescriptions":{}}},"id":5092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7501:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7495:16:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5104,"nodeType":"IfStatement","src":"7491:110:11","trueBody":{"id":5103,"nodeType":"Block","src":"7513:88:11","statements":[{"expression":{"arguments":[{"id":5095,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"7533:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5096,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"7552:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5099,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7582:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5097,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"7563:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7572:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"7563:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7563:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_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":5094,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7527:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_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":5101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7527:63:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5102,"nodeType":"ExpressionStatement","src":"7527:63:11"}]}},{"expression":{"arguments":[{"arguments":[{"id":5107,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"7639:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5106,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"7629:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7629:15:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5110,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5066,"src":"7656:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5109,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"7646:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7646:13:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5112,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7661:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5105,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"7610:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7610:58:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5114,"nodeType":"ExpressionStatement","src":"7610:58:11"}]},"documentation":{"id":5062,"nodeType":"StructuredDocumentation","src":"7048:223:11","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":5116,"implemented":true,"kind":"function","modifiers":[],"name":"_transferVotingUnits","nameLocation":"7285:20:11","nodeType":"FunctionDefinition","parameters":{"id":5069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5064,"mutability":"mutable","name":"from","nameLocation":"7314:4:11","nodeType":"VariableDeclaration","scope":5116,"src":"7306:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5063,"name":"address","nodeType":"ElementaryTypeName","src":"7306:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5066,"mutability":"mutable","name":"to","nameLocation":"7328:2:11","nodeType":"VariableDeclaration","scope":5116,"src":"7320:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5065,"name":"address","nodeType":"ElementaryTypeName","src":"7320:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5068,"mutability":"mutable","name":"amount","nameLocation":"7340:6:11","nodeType":"VariableDeclaration","scope":5116,"src":"7332:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5067,"name":"uint256","nodeType":"ElementaryTypeName","src":"7332:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7305:42:11"},"returnParameters":{"id":5070,"nodeType":"ParameterList","parameters":[],"src":"7365:0:11"},"scope":5303,"src":"7276:399:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5193,"nodeType":"Block","src":"7848:702:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5126,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"7862:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5127,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"7870:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7862:10:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5129,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"7876:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7885:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7876:10:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7862:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5192,"nodeType":"IfStatement","src":"7858:686:11","trueBody":{"id":5191,"nodeType":"Block","src":"7888:656:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5133,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"7906:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7922:1:11","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":5135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7914:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5134,"name":"address","nodeType":"ElementaryTypeName","src":"7914:7:11","typeDescriptions":{}}},"id":5137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7914:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7906:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5161,"nodeType":"IfStatement","src":"7902:315:11","trueBody":{"id":5160,"nodeType":"Block","src":"7926:291:11","statements":[{"assignments":[5140,5142],"declarations":[{"constant":false,"id":5140,"mutability":"mutable","name":"oldValue","nameLocation":"7953:8:11","nodeType":"VariableDeclaration","scope":5160,"src":"7945:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5139,"name":"uint256","nodeType":"ElementaryTypeName","src":"7945:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5142,"mutability":"mutable","name":"newValue","nameLocation":"7971:8:11","nodeType":"VariableDeclaration","scope":5160,"src":"7963:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5141,"name":"uint256","nodeType":"ElementaryTypeName","src":"7963:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5153,"initialValue":{"arguments":[{"baseExpression":{"id":5144,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8010:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5146,"indexExpression":{"id":5145,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"8031:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8010:26:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5147,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"8058:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5150,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"8108:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5148,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8089:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8098:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"8089:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8089:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_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":5143,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7983:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_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":5152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7983:150:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"7944:189:11"},{"eventCall":{"arguments":[{"id":5155,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"8177:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5156,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5140,"src":"8183:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5157,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5142,"src":"8193:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5154,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"8156:20:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8156:46:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5159,"nodeType":"EmitStatement","src":"8151:51:11"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5162,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8234:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8248:1:11","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":5164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8240:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5163,"name":"address","nodeType":"ElementaryTypeName","src":"8240:7:11","typeDescriptions":{}}},"id":5166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8240:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8234:16:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5190,"nodeType":"IfStatement","src":"8230:304:11","trueBody":{"id":5189,"nodeType":"Block","src":"8252:282:11","statements":[{"assignments":[5169,5171],"declarations":[{"constant":false,"id":5169,"mutability":"mutable","name":"oldValue","nameLocation":"8279:8:11","nodeType":"VariableDeclaration","scope":5189,"src":"8271:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5168,"name":"uint256","nodeType":"ElementaryTypeName","src":"8271:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5171,"mutability":"mutable","name":"newValue","nameLocation":"8297:8:11","nodeType":"VariableDeclaration","scope":5189,"src":"8289:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5170,"name":"uint256","nodeType":"ElementaryTypeName","src":"8289:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5182,"initialValue":{"arguments":[{"baseExpression":{"id":5173,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8336:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5175,"indexExpression":{"id":5174,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8357:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8336:24:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5176,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5280,"src":"8382:4:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5179,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"8427:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5177,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8408:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8417:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"8408:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8408:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_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":5172,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"8309:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_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":5181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8309:143:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"8270:182:11"},{"eventCall":{"arguments":[{"id":5184,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8496:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5185,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5169,"src":"8500:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5186,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"8510:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5183,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"8475:20:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8475:44:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5188,"nodeType":"EmitStatement","src":"8470:49:11"}]}}]}}]},"documentation":{"id":5117,"nodeType":"StructuredDocumentation","src":"7681:75:11","text":" @dev Moves delegated votes from one delegate to another."},"id":5194,"implemented":true,"kind":"function","modifiers":[],"name":"_moveDelegateVotes","nameLocation":"7770:18:11","nodeType":"FunctionDefinition","parameters":{"id":5124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5119,"mutability":"mutable","name":"from","nameLocation":"7797:4:11","nodeType":"VariableDeclaration","scope":5194,"src":"7789:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5118,"name":"address","nodeType":"ElementaryTypeName","src":"7789:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5121,"mutability":"mutable","name":"to","nameLocation":"7811:2:11","nodeType":"VariableDeclaration","scope":5194,"src":"7803:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5120,"name":"address","nodeType":"ElementaryTypeName","src":"7803:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5123,"mutability":"mutable","name":"amount","nameLocation":"7823:6:11","nodeType":"VariableDeclaration","scope":5194,"src":"7815:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5122,"name":"uint256","nodeType":"ElementaryTypeName","src":"7815:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7788:42:11"},"returnParameters":{"id":5125,"nodeType":"ParameterList","parameters":[],"src":"7848:0:11"},"scope":5303,"src":"7761:789:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5211,"nodeType":"Block","src":"8706:81:11","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":5204,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8741:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5206,"indexExpression":{"id":5205,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"8762:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8741:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5207,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8771:6:11","memberName":"length","nodeType":"MemberAccess","referencedDeclaration":13534,"src":"8741:36:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint256)"}},"id":5208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8741:38:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5202,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8723:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8732:8:11","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":11611,"src":"8723:17:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":5209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8723:57:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":5201,"id":5210,"nodeType":"Return","src":"8716:64:11"}]},"documentation":{"id":5195,"nodeType":"StructuredDocumentation","src":"8556:64:11","text":" @dev Get number of checkpoints for `account`."},"id":5212,"implemented":true,"kind":"function","modifiers":[],"name":"_numCheckpoints","nameLocation":"8634:15:11","nodeType":"FunctionDefinition","parameters":{"id":5198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5197,"mutability":"mutable","name":"account","nameLocation":"8658:7:11","nodeType":"VariableDeclaration","scope":5212,"src":"8650:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5196,"name":"address","nodeType":"ElementaryTypeName","src":"8650:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8649:17:11"},"returnParameters":{"id":5201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5212,"src":"8698:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5199,"name":"uint32","nodeType":"ElementaryTypeName","src":"8698:6:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8697:8:11"},"scope":5303,"src":"8625:162:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5230,"nodeType":"Block","src":"9002:61:11","statements":[{"expression":{"arguments":[{"id":5227,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5217,"src":"9052:3:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"baseExpression":{"id":5223,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"9019:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5225,"indexExpression":{"id":5224,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5215,"src":"9040:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9019:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9049:2:11","memberName":"at","nodeType":"MemberAccess","referencedDeclaration":13552,"src":"9019:32:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13251_memory_ptr_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":5228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9019:37:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":5222,"id":5229,"nodeType":"Return","src":"9012:44:11"}]},"documentation":{"id":5213,"nodeType":"StructuredDocumentation","src":"8793:66:11","text":" @dev Get the `pos`-th checkpoint for `account`."},"id":5231,"implemented":true,"kind":"function","modifiers":[],"name":"_checkpoints","nameLocation":"8873:12:11","nodeType":"FunctionDefinition","parameters":{"id":5218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5215,"mutability":"mutable","name":"account","nameLocation":"8903:7:11","nodeType":"VariableDeclaration","scope":5231,"src":"8895:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5214,"name":"address","nodeType":"ElementaryTypeName","src":"8895:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5217,"mutability":"mutable","name":"pos","nameLocation":"8927:3:11","nodeType":"VariableDeclaration","scope":5231,"src":"8920:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5216,"name":"uint32","nodeType":"ElementaryTypeName","src":"8920:6:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8885:51:11"},"returnParameters":{"id":5222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5231,"src":"8968:32:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":5220,"nodeType":"UserDefinedTypeName","pathNode":{"id":5219,"name":"Checkpoints.Checkpoint208","nameLocations":["8968:11:11","8980:13:11"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"8968:25:11"},"referencedDeclaration":13251,"src":"8968:25:11","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"8967:34:11"},"scope":5303,"src":"8864:199:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5265,"nodeType":"Block","src":"9272:70:11","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5255,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"9300:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9300:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5258,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5234,"src":"9312:5:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9318:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"9312:12:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":5260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9312:14:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":5261,"name":"delta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5246,"src":"9328:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint208","typeString":"uint208"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5257,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5244,"src":"9309:2:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"}},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9309:25:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":5253,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5234,"src":"9289:5:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5254,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9295:4:11","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13274,"src":"9289:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9289:46:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":5252,"id":5264,"nodeType":"Return","src":"9282:53:11"}]},"id":5266,"implemented":true,"kind":"function","modifiers":[],"name":"_push","nameLocation":"9078:5:11","nodeType":"FunctionDefinition","parameters":{"id":5247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5234,"mutability":"mutable","name":"store","nameLocation":"9122:5:11","nodeType":"VariableDeclaration","scope":5266,"src":"9093:34:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":5233,"nodeType":"UserDefinedTypeName","pathNode":{"id":5232,"name":"Checkpoints.Trace208","nameLocations":["9093:11:11","9105:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9093:20:11"},"referencedDeclaration":13246,"src":"9093:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":5244,"mutability":"mutable","name":"op","nameLocation":"9187:2:11","nodeType":"VariableDeclaration","scope":5266,"src":"9137:52:11","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":5243,"nodeType":"FunctionTypeName","parameterTypes":{"id":5239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9146:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5235,"name":"uint208","nodeType":"ElementaryTypeName","src":"9146:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9155:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5237,"name":"uint208","nodeType":"ElementaryTypeName","src":"9155:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9145:18:11"},"returnParameterTypes":{"id":5242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9178:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5240,"name":"uint208","nodeType":"ElementaryTypeName","src":"9178:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9177:9:11"},"src":"9137:52:11","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":5246,"mutability":"mutable","name":"delta","nameLocation":"9207:5:11","nodeType":"VariableDeclaration","scope":5266,"src":"9199:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5245,"name":"uint208","nodeType":"ElementaryTypeName","src":"9199:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9083:135:11"},"returnParameters":{"id":5252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5249,"mutability":"mutable","name":"oldValue","nameLocation":"9244:8:11","nodeType":"VariableDeclaration","scope":5266,"src":"9236:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5248,"name":"uint208","nodeType":"ElementaryTypeName","src":"9236:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5251,"mutability":"mutable","name":"newValue","nameLocation":"9262:8:11","nodeType":"VariableDeclaration","scope":5266,"src":"9254:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5250,"name":"uint208","nodeType":"ElementaryTypeName","src":"9254:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9235:36:11"},"scope":5303,"src":"9069:273:11","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":5279,"nodeType":"Block","src":"9415:29:11","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5275,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5268,"src":"9432:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5276,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9436:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9432:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5274,"id":5278,"nodeType":"Return","src":"9425:12:11"}]},"id":5280,"implemented":true,"kind":"function","modifiers":[],"name":"_add","nameLocation":"9357:4:11","nodeType":"FunctionDefinition","parameters":{"id":5271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5268,"mutability":"mutable","name":"a","nameLocation":"9370:1:11","nodeType":"VariableDeclaration","scope":5280,"src":"9362:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5267,"name":"uint208","nodeType":"ElementaryTypeName","src":"9362:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5270,"mutability":"mutable","name":"b","nameLocation":"9381:1:11","nodeType":"VariableDeclaration","scope":5280,"src":"9373:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5269,"name":"uint208","nodeType":"ElementaryTypeName","src":"9373:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9361:22:11"},"returnParameters":{"id":5274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5280,"src":"9406:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5272,"name":"uint208","nodeType":"ElementaryTypeName","src":"9406:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9405:9:11"},"scope":5303,"src":"9348:96:11","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5293,"nodeType":"Block","src":"9522:29:11","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5289,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5282,"src":"9539:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5290,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5284,"src":"9543:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9539:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5288,"id":5292,"nodeType":"Return","src":"9532:12:11"}]},"id":5294,"implemented":true,"kind":"function","modifiers":[],"name":"_subtract","nameLocation":"9459:9:11","nodeType":"FunctionDefinition","parameters":{"id":5285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5282,"mutability":"mutable","name":"a","nameLocation":"9477:1:11","nodeType":"VariableDeclaration","scope":5294,"src":"9469:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5281,"name":"uint208","nodeType":"ElementaryTypeName","src":"9469:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5284,"mutability":"mutable","name":"b","nameLocation":"9488:1:11","nodeType":"VariableDeclaration","scope":5294,"src":"9480:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5283,"name":"uint208","nodeType":"ElementaryTypeName","src":"9480:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9468:22:11"},"returnParameters":{"id":5288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5294,"src":"9513:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5286,"name":"uint208","nodeType":"ElementaryTypeName","src":"9513:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9512:9:11"},"scope":5303,"src":"9450:101:11","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":5295,"nodeType":"StructuredDocumentation","src":"9557:72:11","text":" @dev Must return the voting units held by an account."},"id":5302,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"9643:15:11","nodeType":"FunctionDefinition","parameters":{"id":5298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5302,"src":"9659:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5296,"name":"address","nodeType":"ElementaryTypeName","src":"9659:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9658:9:11"},"returnParameters":{"id":5301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5302,"src":"9699:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5299,"name":"uint256","nodeType":"ElementaryTypeName","src":"9699:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9698:9:11"},"scope":5303,"src":"9634:74:11","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":5304,"src":"1892:7818:11","usedErrors":[4685,4811,4818,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[4694,4703,5326]}],"src":"109:9602:11"},"id":11},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","exportedSymbols":{"IERC1271":[5317]},"id":5318,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5305,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:12"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1271","contractDependencies":[],"contractKind":"interface","documentation":{"id":5306,"nodeType":"StructuredDocumentation","src":"133:160:12","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":5317,"linearizedBaseContracts":[5317],"name":"IERC1271","nameLocation":"304:8:12","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5307,"nodeType":"StructuredDocumentation","src":"319:220:12","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 _data"},"functionSelector":"1626ba7e","id":5316,"implemented":false,"kind":"function","modifiers":[],"name":"isValidSignature","nameLocation":"553:16:12","nodeType":"FunctionDefinition","parameters":{"id":5312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5309,"mutability":"mutable","name":"hash","nameLocation":"578:4:12","nodeType":"VariableDeclaration","scope":5316,"src":"570:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"570:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5311,"mutability":"mutable","name":"signature","nameLocation":"597:9:12","nodeType":"VariableDeclaration","scope":5316,"src":"584:22:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5310,"name":"bytes","nodeType":"ElementaryTypeName","src":"584:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"569:38:12"},"returnParameters":{"id":5315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5314,"mutability":"mutable","name":"magicValue","nameLocation":"638:10:12","nodeType":"VariableDeclaration","scope":5316,"src":"631:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5313,"name":"bytes4","nodeType":"ElementaryTypeName","src":"631:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"630:19:12"},"scope":5317,"src":"544:106:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5318,"src":"294:358:12","usedErrors":[],"usedEvents":[]}],"src":"107:546:12"},"id":12},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[9194]},"id":5322,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5319,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:13"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":5321,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5322,"sourceUnit":9195,"src":"132:59:13","symbolAliases":[{"foreign":{"id":5320,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"140:7:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:86:13"},"id":13},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[5346]},"id":5347,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5323,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:14"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5346,"linearizedBaseContracts":[5346],"name":"IERC5267","nameLocation":"143:8:14","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":5324,"nodeType":"StructuredDocumentation","src":"158:84:14","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":5326,"name":"EIP712DomainChanged","nameLocation":"253:19:14","nodeType":"EventDefinition","parameters":{"id":5325,"nodeType":"ParameterList","parameters":[],"src":"272:2:14"},"src":"247:28:14"},{"documentation":{"id":5327,"nodeType":"StructuredDocumentation","src":"281:140:14","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":5345,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"435:12:14","nodeType":"FunctionDefinition","parameters":{"id":5328,"nodeType":"ParameterList","parameters":[],"src":"447:2:14"},"returnParameters":{"id":5344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5330,"mutability":"mutable","name":"fields","nameLocation":"517:6:14","nodeType":"VariableDeclaration","scope":5345,"src":"510:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":5329,"name":"bytes1","nodeType":"ElementaryTypeName","src":"510:6:14","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":5332,"mutability":"mutable","name":"name","nameLocation":"551:4:14","nodeType":"VariableDeclaration","scope":5345,"src":"537:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5331,"name":"string","nodeType":"ElementaryTypeName","src":"537:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5334,"mutability":"mutable","name":"version","nameLocation":"583:7:14","nodeType":"VariableDeclaration","scope":5345,"src":"569:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5333,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5336,"mutability":"mutable","name":"chainId","nameLocation":"612:7:14","nodeType":"VariableDeclaration","scope":5345,"src":"604:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5335,"name":"uint256","nodeType":"ElementaryTypeName","src":"604:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5338,"mutability":"mutable","name":"verifyingContract","nameLocation":"641:17:14","nodeType":"VariableDeclaration","scope":5345,"src":"633:25:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5337,"name":"address","nodeType":"ElementaryTypeName","src":"633:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5340,"mutability":"mutable","name":"salt","nameLocation":"680:4:14","nodeType":"VariableDeclaration","scope":5345,"src":"672:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5339,"name":"bytes32","nodeType":"ElementaryTypeName","src":"672:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5343,"mutability":"mutable","name":"extensions","nameLocation":"715:10:14","nodeType":"VariableDeclaration","scope":5345,"src":"698:27:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5341,"name":"uint256","nodeType":"ElementaryTypeName","src":"698:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5342,"nodeType":"ArrayTypeName","src":"698:9:14","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"496:239:14"},"scope":5346,"src":"426:310:14","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5347,"src":"133:605:14","usedErrors":[],"usedEvents":[5326]}],"src":"107:632:14"},"id":14},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","exportedSymbols":{"IERC5805":[5357],"IERC6372":[5372],"IVotes":[4760]},"id":5358,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5348,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:15"},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../governance/utils/IVotes.sol","id":5350,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5358,"sourceUnit":4761,"src":"133:54:15","symbolAliases":[{"foreign":{"id":5349,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"141:6:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"./IERC6372.sol","id":5352,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5358,"sourceUnit":5373,"src":"188:40:15","symbolAliases":[{"foreign":{"id":5351,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"196:8:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5353,"name":"IERC6372","nameLocations":["252:8:15"],"nodeType":"IdentifierPath","referencedDeclaration":5372,"src":"252:8:15"},"id":5354,"nodeType":"InheritanceSpecifier","src":"252:8:15"},{"baseName":{"id":5355,"name":"IVotes","nameLocations":["262:6:15"],"nodeType":"IdentifierPath","referencedDeclaration":4760,"src":"262:6:15"},"id":5356,"nodeType":"InheritanceSpecifier","src":"262:6:15"}],"canonicalName":"IERC5805","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5357,"linearizedBaseContracts":[5357,4760,5372],"name":"IERC5805","nameLocation":"240:8:15","nodeType":"ContractDefinition","nodes":[],"scope":5358,"src":"230:41:15","usedErrors":[4685],"usedEvents":[4694,4703]}],"src":"107:165:15"},"id":15},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","exportedSymbols":{"IERC6372":[5372]},"id":5373,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5359,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:16"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC6372","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5372,"linearizedBaseContracts":[5372],"name":"IERC6372","nameLocation":"143:8:16","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5360,"nodeType":"StructuredDocumentation","src":"158:133:16","text":" @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting)."},"functionSelector":"91ddadf4","id":5365,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"305:5:16","nodeType":"FunctionDefinition","parameters":{"id":5361,"nodeType":"ParameterList","parameters":[],"src":"310:2:16"},"returnParameters":{"id":5364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5363,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5365,"src":"336:6:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5362,"name":"uint48","nodeType":"ElementaryTypeName","src":"336:6:16","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"335:8:16"},"scope":5372,"src":"296:48:16","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5366,"nodeType":"StructuredDocumentation","src":"350:48:16","text":" @dev Description of the clock"},"functionSelector":"4bf5d7e9","id":5371,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"465:10:16","nodeType":"FunctionDefinition","parameters":{"id":5367,"nodeType":"ParameterList","parameters":[],"src":"475:2:16"},"returnParameters":{"id":5370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5371,"src":"501:13:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5368,"name":"string","nodeType":"ElementaryTypeName","src":"501:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"500:15:16"},"scope":5372,"src":"456:60:16","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5373,"src":"133:385:16","usedErrors":[],"usedEvents":[]}],"src":"107:412:16"},"id":16},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[5509],"IERC20Errors":[5414],"IERC721Errors":[5462]},"id":5510,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5374,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:17"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5375,"nodeType":"StructuredDocumentation","src":"138:141:17","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":5414,"linearizedBaseContracts":[5414],"name":"IERC20Errors","nameLocation":"290:12:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5376,"nodeType":"StructuredDocumentation","src":"309:309:17","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":5384,"name":"ERC20InsufficientBalance","nameLocation":"629:24:17","nodeType":"ErrorDefinition","parameters":{"id":5383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5378,"mutability":"mutable","name":"sender","nameLocation":"662:6:17","nodeType":"VariableDeclaration","scope":5384,"src":"654:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5377,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5380,"mutability":"mutable","name":"balance","nameLocation":"678:7:17","nodeType":"VariableDeclaration","scope":5384,"src":"670:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5379,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5382,"mutability":"mutable","name":"needed","nameLocation":"695:6:17","nodeType":"VariableDeclaration","scope":5384,"src":"687:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5381,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:17"},"src":"623:80:17"},{"documentation":{"id":5385,"nodeType":"StructuredDocumentation","src":"709:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":5389,"name":"ERC20InvalidSender","nameLocation":"872:18:17","nodeType":"ErrorDefinition","parameters":{"id":5388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5387,"mutability":"mutable","name":"sender","nameLocation":"899:6:17","nodeType":"VariableDeclaration","scope":5389,"src":"891:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5386,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:17"},"src":"866:41:17"},{"documentation":{"id":5390,"nodeType":"StructuredDocumentation","src":"913:159:17","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":5394,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:17","nodeType":"ErrorDefinition","parameters":{"id":5393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5392,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:17","nodeType":"VariableDeclaration","scope":5394,"src":"1104:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5391,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:17"},"src":"1077:45:17"},{"documentation":{"id":5395,"nodeType":"StructuredDocumentation","src":"1128:345:17","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":5403,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:17","nodeType":"ErrorDefinition","parameters":{"id":5402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5397,"mutability":"mutable","name":"spender","nameLocation":"1519:7:17","nodeType":"VariableDeclaration","scope":5403,"src":"1511:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5396,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5399,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:17","nodeType":"VariableDeclaration","scope":5403,"src":"1528:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5398,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5401,"mutability":"mutable","name":"needed","nameLocation":"1555:6:17","nodeType":"VariableDeclaration","scope":5403,"src":"1547:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5400,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:17"},"src":"1478:85:17"},{"documentation":{"id":5404,"nodeType":"StructuredDocumentation","src":"1569:174:17","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":5408,"name":"ERC20InvalidApprover","nameLocation":"1754:20:17","nodeType":"ErrorDefinition","parameters":{"id":5407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5406,"mutability":"mutable","name":"approver","nameLocation":"1783:8:17","nodeType":"VariableDeclaration","scope":5408,"src":"1775:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5405,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:17"},"src":"1748:45:17"},{"documentation":{"id":5409,"nodeType":"StructuredDocumentation","src":"1799:195:17","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":5413,"name":"ERC20InvalidSpender","nameLocation":"2005:19:17","nodeType":"ErrorDefinition","parameters":{"id":5412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5411,"mutability":"mutable","name":"spender","nameLocation":"2033:7:17","nodeType":"VariableDeclaration","scope":5413,"src":"2025:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5410,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:17"},"src":"1999:43:17"}],"scope":5510,"src":"280:1764:17","usedErrors":[5384,5389,5394,5403,5408,5413],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5415,"nodeType":"StructuredDocumentation","src":"2046:143:17","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":5462,"linearizedBaseContracts":[5462],"name":"IERC721Errors","nameLocation":"2200:13:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5416,"nodeType":"StructuredDocumentation","src":"2220:219:17","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":5420,"name":"ERC721InvalidOwner","nameLocation":"2450:18:17","nodeType":"ErrorDefinition","parameters":{"id":5419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5418,"mutability":"mutable","name":"owner","nameLocation":"2477:5:17","nodeType":"VariableDeclaration","scope":5420,"src":"2469:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5417,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:17"},"src":"2444:40:17"},{"documentation":{"id":5421,"nodeType":"StructuredDocumentation","src":"2490:132:17","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":5425,"name":"ERC721NonexistentToken","nameLocation":"2633:22:17","nodeType":"ErrorDefinition","parameters":{"id":5424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5423,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:17","nodeType":"VariableDeclaration","scope":5425,"src":"2656:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5422,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:17"},"src":"2627:46:17"},{"documentation":{"id":5426,"nodeType":"StructuredDocumentation","src":"2679:289:17","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":5434,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:17","nodeType":"ErrorDefinition","parameters":{"id":5433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5428,"mutability":"mutable","name":"sender","nameLocation":"3008:6:17","nodeType":"VariableDeclaration","scope":5434,"src":"3000:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5427,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5430,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:17","nodeType":"VariableDeclaration","scope":5434,"src":"3016:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5429,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5432,"mutability":"mutable","name":"owner","nameLocation":"3041:5:17","nodeType":"VariableDeclaration","scope":5434,"src":"3033:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5431,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:17"},"src":"2973:75:17"},{"documentation":{"id":5435,"nodeType":"StructuredDocumentation","src":"3054:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":5439,"name":"ERC721InvalidSender","nameLocation":"3217:19:17","nodeType":"ErrorDefinition","parameters":{"id":5438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5437,"mutability":"mutable","name":"sender","nameLocation":"3245:6:17","nodeType":"VariableDeclaration","scope":5439,"src":"3237:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5436,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:17"},"src":"3211:42:17"},{"documentation":{"id":5440,"nodeType":"StructuredDocumentation","src":"3259:159:17","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":5444,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:17","nodeType":"ErrorDefinition","parameters":{"id":5443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5442,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:17","nodeType":"VariableDeclaration","scope":5444,"src":"3451:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5441,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:17"},"src":"3423:46:17"},{"documentation":{"id":5445,"nodeType":"StructuredDocumentation","src":"3475:247:17","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":5451,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:17","nodeType":"ErrorDefinition","parameters":{"id":5450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5447,"mutability":"mutable","name":"operator","nameLocation":"3768:8:17","nodeType":"VariableDeclaration","scope":5451,"src":"3760:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5446,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5449,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:17","nodeType":"VariableDeclaration","scope":5451,"src":"3778:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5448,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:17"},"src":"3727:68:17"},{"documentation":{"id":5452,"nodeType":"StructuredDocumentation","src":"3801:174:17","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":5456,"name":"ERC721InvalidApprover","nameLocation":"3986:21:17","nodeType":"ErrorDefinition","parameters":{"id":5455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5454,"mutability":"mutable","name":"approver","nameLocation":"4016:8:17","nodeType":"VariableDeclaration","scope":5456,"src":"4008:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5453,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:17"},"src":"3980:46:17"},{"documentation":{"id":5457,"nodeType":"StructuredDocumentation","src":"4032:197:17","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":5461,"name":"ERC721InvalidOperator","nameLocation":"4240:21:17","nodeType":"ErrorDefinition","parameters":{"id":5460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5459,"mutability":"mutable","name":"operator","nameLocation":"4270:8:17","nodeType":"VariableDeclaration","scope":5461,"src":"4262:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5458,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:17"},"src":"4234:46:17"}],"scope":5510,"src":"2190:2092:17","usedErrors":[5420,5425,5434,5439,5444,5451,5456,5461],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5463,"nodeType":"StructuredDocumentation","src":"4284:145:17","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":5509,"linearizedBaseContracts":[5509],"name":"IERC1155Errors","nameLocation":"4440:14:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5464,"nodeType":"StructuredDocumentation","src":"4461:361:17","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":5474,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:17","nodeType":"ErrorDefinition","parameters":{"id":5473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5466,"mutability":"mutable","name":"sender","nameLocation":"4868:6:17","nodeType":"VariableDeclaration","scope":5474,"src":"4860:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5465,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5468,"mutability":"mutable","name":"balance","nameLocation":"4884:7:17","nodeType":"VariableDeclaration","scope":5474,"src":"4876:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5467,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5470,"mutability":"mutable","name":"needed","nameLocation":"4901:6:17","nodeType":"VariableDeclaration","scope":5474,"src":"4893:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5469,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5472,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:17","nodeType":"VariableDeclaration","scope":5474,"src":"4909:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5471,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:17"},"src":"4827:99:17"},{"documentation":{"id":5475,"nodeType":"StructuredDocumentation","src":"4932:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":5479,"name":"ERC1155InvalidSender","nameLocation":"5095:20:17","nodeType":"ErrorDefinition","parameters":{"id":5478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5477,"mutability":"mutable","name":"sender","nameLocation":"5124:6:17","nodeType":"VariableDeclaration","scope":5479,"src":"5116:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5476,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:17"},"src":"5089:43:17"},{"documentation":{"id":5480,"nodeType":"StructuredDocumentation","src":"5138:159:17","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":5484,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:17","nodeType":"ErrorDefinition","parameters":{"id":5483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5482,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:17","nodeType":"VariableDeclaration","scope":5484,"src":"5331:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5481,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:17"},"src":"5302:47:17"},{"documentation":{"id":5485,"nodeType":"StructuredDocumentation","src":"5355:256:17","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":5491,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:17","nodeType":"ErrorDefinition","parameters":{"id":5490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5487,"mutability":"mutable","name":"operator","nameLocation":"5659:8:17","nodeType":"VariableDeclaration","scope":5491,"src":"5651:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5486,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5489,"mutability":"mutable","name":"owner","nameLocation":"5677:5:17","nodeType":"VariableDeclaration","scope":5491,"src":"5669:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5488,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:17"},"src":"5616:68:17"},{"documentation":{"id":5492,"nodeType":"StructuredDocumentation","src":"5690:174:17","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":5496,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:17","nodeType":"ErrorDefinition","parameters":{"id":5495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5494,"mutability":"mutable","name":"approver","nameLocation":"5906:8:17","nodeType":"VariableDeclaration","scope":5496,"src":"5898:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5493,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:17"},"src":"5869:47:17"},{"documentation":{"id":5497,"nodeType":"StructuredDocumentation","src":"5922:197:17","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":5501,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:17","nodeType":"ErrorDefinition","parameters":{"id":5500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5499,"mutability":"mutable","name":"operator","nameLocation":"6161:8:17","nodeType":"VariableDeclaration","scope":5501,"src":"6153:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5498,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:17"},"src":"6124:47:17"},{"documentation":{"id":5502,"nodeType":"StructuredDocumentation","src":"6177:280:17","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":5508,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:17","nodeType":"ErrorDefinition","parameters":{"id":5507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5504,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:17","nodeType":"VariableDeclaration","scope":5508,"src":"6494:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5503,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5506,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:17","nodeType":"VariableDeclaration","scope":5508,"src":"6513:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5505,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:17"},"src":"6462:73:17"}],"scope":5510,"src":"4430:2107:17","usedErrors":[5474,5479,5484,5491,5496,5501,5508],"usedEvents":[]}],"src":"112:6426:17"},"id":17},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","exportedSymbols":{"IERC1155Receiver":[5551],"IERC165":[9194]},"id":5552,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5511,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:18"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":5513,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5552,"sourceUnit":9195,"src":"144:62:18","symbolAliases":[{"foreign":{"id":5512,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"152:7:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5515,"name":"IERC165","nameLocations":["357:7:18"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"357:7:18"},"id":5516,"nodeType":"InheritanceSpecifier","src":"357:7:18"}],"canonicalName":"IERC1155Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":5514,"nodeType":"StructuredDocumentation","src":"208:118:18","text":" @dev Interface that must be implemented by smart contracts in order to receive\n ERC-1155 token transfers."},"fullyImplemented":false,"id":5551,"linearizedBaseContracts":[5551,9194],"name":"IERC1155Receiver","nameLocation":"337:16:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5517,"nodeType":"StructuredDocumentation","src":"371:827:18","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":5532,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"1212:17:18","nodeType":"FunctionDefinition","parameters":{"id":5528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5519,"mutability":"mutable","name":"operator","nameLocation":"1247:8:18","nodeType":"VariableDeclaration","scope":5532,"src":"1239:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5518,"name":"address","nodeType":"ElementaryTypeName","src":"1239:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5521,"mutability":"mutable","name":"from","nameLocation":"1273:4:18","nodeType":"VariableDeclaration","scope":5532,"src":"1265:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5520,"name":"address","nodeType":"ElementaryTypeName","src":"1265:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5523,"mutability":"mutable","name":"id","nameLocation":"1295:2:18","nodeType":"VariableDeclaration","scope":5532,"src":"1287:10:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5522,"name":"uint256","nodeType":"ElementaryTypeName","src":"1287:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5525,"mutability":"mutable","name":"value","nameLocation":"1315:5:18","nodeType":"VariableDeclaration","scope":5532,"src":"1307:13:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5524,"name":"uint256","nodeType":"ElementaryTypeName","src":"1307:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5527,"mutability":"mutable","name":"data","nameLocation":"1345:4:18","nodeType":"VariableDeclaration","scope":5532,"src":"1330:19:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5526,"name":"bytes","nodeType":"ElementaryTypeName","src":"1330:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1229:126:18"},"returnParameters":{"id":5531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5532,"src":"1374:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5529,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1374:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1373:8:18"},"scope":5551,"src":"1203:179:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5533,"nodeType":"StructuredDocumentation","src":"1388:995:18","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":5550,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"2397:22:18","nodeType":"FunctionDefinition","parameters":{"id":5546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5535,"mutability":"mutable","name":"operator","nameLocation":"2437:8:18","nodeType":"VariableDeclaration","scope":5550,"src":"2429:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5534,"name":"address","nodeType":"ElementaryTypeName","src":"2429:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5537,"mutability":"mutable","name":"from","nameLocation":"2463:4:18","nodeType":"VariableDeclaration","scope":5550,"src":"2455:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5536,"name":"address","nodeType":"ElementaryTypeName","src":"2455:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5540,"mutability":"mutable","name":"ids","nameLocation":"2496:3:18","nodeType":"VariableDeclaration","scope":5550,"src":"2477:22:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5538,"name":"uint256","nodeType":"ElementaryTypeName","src":"2477:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5539,"nodeType":"ArrayTypeName","src":"2477:9:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5543,"mutability":"mutable","name":"values","nameLocation":"2528:6:18","nodeType":"VariableDeclaration","scope":5550,"src":"2509:25:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5541,"name":"uint256","nodeType":"ElementaryTypeName","src":"2509:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5542,"nodeType":"ArrayTypeName","src":"2509:9:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5545,"mutability":"mutable","name":"data","nameLocation":"2559:4:18","nodeType":"VariableDeclaration","scope":5550,"src":"2544:19:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5544,"name":"bytes","nodeType":"ElementaryTypeName","src":"2544:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2419:150:18"},"returnParameters":{"id":5549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5550,"src":"2588:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5547,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2588:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2587:8:18"},"scope":5551,"src":"2388:208:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":5552,"src":"327:2271:18","usedErrors":[],"usedEvents":[]}],"src":"118:2481:18"},"id":18},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","exportedSymbols":{"ERC1155Holder":[5632],"ERC165":[9182],"IERC1155Receiver":[5551],"IERC165":[9194]},"id":5633,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5553,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:19"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../../../utils/introspection/ERC165.sol","id":5556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5633,"sourceUnit":9183,"src":"147:72:19","symbolAliases":[{"foreign":{"id":5554,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"155:7:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":5555,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"src":"164:6:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../IERC1155Receiver.sol","id":5558,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5633,"sourceUnit":5552,"src":"220:57:19","symbolAliases":[{"foreign":{"id":5557,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"228:16:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5560,"name":"ERC165","nameLocations":["558:6:19"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"558:6:19"},"id":5561,"nodeType":"InheritanceSpecifier","src":"558:6:19"},{"baseName":{"id":5562,"name":"IERC1155Receiver","nameLocations":["566:16:19"],"nodeType":"IdentifierPath","referencedDeclaration":5551,"src":"566:16:19"},"id":5563,"nodeType":"InheritanceSpecifier","src":"566:16:19"}],"canonicalName":"ERC1155Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":5559,"nodeType":"StructuredDocumentation","src":"279:243:19","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":5632,"linearizedBaseContracts":[5632,5551,9182,9194],"name":"ERC1155Holder","nameLocation":"541:13:19","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9181,9193],"body":{"id":5586,"nodeType":"Block","src":"758:113:19","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5574,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"775:11:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":5576,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"795:16:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}],"id":5575,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"790:4:19","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"790:22:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5551","typeString":"type(contract IERC1155Receiver)"}},"id":5578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"813:11:19","memberName":"interfaceId","nodeType":"MemberAccess","src":"790:34:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"775:49:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":5582,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"852:11:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5580,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"828:5:19","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC1155Holder_$5632_$","typeString":"type(contract super ERC1155Holder)"}},"id":5581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"834:17:19","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9181,"src":"828:23:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":5583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"828:36:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"775:89:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5573,"id":5585,"nodeType":"Return","src":"768:96:19"}]},"documentation":{"id":5564,"nodeType":"StructuredDocumentation","src":"589:56:19","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":5587,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"659:17:19","nodeType":"FunctionDefinition","overrides":{"id":5570,"nodeType":"OverrideSpecifier","overrides":[{"id":5568,"name":"ERC165","nameLocations":["726:6:19"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"726:6:19"},{"id":5569,"name":"IERC165","nameLocations":["734:7:19"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"734:7:19"}],"src":"717:25:19"},"parameters":{"id":5567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5566,"mutability":"mutable","name":"interfaceId","nameLocation":"684:11:19","nodeType":"VariableDeclaration","scope":5587,"src":"677:18:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5565,"name":"bytes4","nodeType":"ElementaryTypeName","src":"677:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"676:20:19"},"returnParameters":{"id":5573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5572,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5587,"src":"752:4:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5571,"name":"bool","nodeType":"ElementaryTypeName","src":"752:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"751:6:19"},"scope":5632,"src":"650:221:19","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5532],"body":{"id":5607,"nodeType":"Block","src":"1041:55:19","statements":[{"expression":{"expression":{"expression":{"id":5603,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1058:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5632","typeString":"contract ERC1155Holder"}},"id":5604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1063:17:19","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":5608,"src":"1058:22:19","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":5605,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1081:8:19","memberName":"selector","nodeType":"MemberAccess","src":"1058:31:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5602,"id":5606,"nodeType":"Return","src":"1051:38:19"}]},"functionSelector":"f23a6e61","id":5608,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"886:17:19","nodeType":"FunctionDefinition","overrides":{"id":5599,"nodeType":"OverrideSpecifier","overrides":[],"src":"1015:8:19"},"parameters":{"id":5598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"913:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5588,"name":"address","nodeType":"ElementaryTypeName","src":"913:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"930:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5590,"name":"address","nodeType":"ElementaryTypeName","src":"930:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5593,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"947:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5592,"name":"uint256","nodeType":"ElementaryTypeName","src":"947:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"964:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5594,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5597,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"981:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5596,"name":"bytes","nodeType":"ElementaryTypeName","src":"981:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"903:96:19"},"returnParameters":{"id":5602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5601,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"1033:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5600,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1033:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1032:8:19"},"scope":5632,"src":"877:219:19","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5550],"body":{"id":5630,"nodeType":"Block","src":"1289:60:19","statements":[{"expression":{"expression":{"expression":{"id":5626,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1306:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5632","typeString":"contract ERC1155Holder"}},"id":5627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1311:22:19","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":5631,"src":"1306:27:19","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":5628,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:8:19","memberName":"selector","nodeType":"MemberAccess","src":"1306:36:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5625,"id":5629,"nodeType":"Return","src":"1299:43:19"}]},"functionSelector":"bc197c81","id":5631,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"1111:22:19","nodeType":"FunctionDefinition","overrides":{"id":5622,"nodeType":"OverrideSpecifier","overrides":[],"src":"1263:8:19"},"parameters":{"id":5621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1143:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5609,"name":"address","nodeType":"ElementaryTypeName","src":"1143:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1160:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5611,"name":"address","nodeType":"ElementaryTypeName","src":"1160:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1177:16:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5613,"name":"uint256","nodeType":"ElementaryTypeName","src":"1177:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5614,"nodeType":"ArrayTypeName","src":"1177:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5618,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1203:16:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5616,"name":"uint256","nodeType":"ElementaryTypeName","src":"1203:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5617,"nodeType":"ArrayTypeName","src":"1203:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5620,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1229:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5619,"name":"bytes","nodeType":"ElementaryTypeName","src":"1229:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1133:114:19"},"returnParameters":{"id":5625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5624,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1281:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5623,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1281:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1280:8:19"},"scope":5632,"src":"1102:247:19","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":5633,"src":"523:828:19","usedErrors":[],"usedEvents":[]}],"src":"121:1231:19"},"id":19},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[6718],"ERC20":[6147],"IERC20":[6225],"IERC20Errors":[5414],"IERC20Metadata":[6383]},"id":6148,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5634,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:20"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":5636,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6226,"src":"131:36:20","symbolAliases":[{"foreign":{"id":5635,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6225,"src":"139:6:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":5638,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6384,"src":"168:63:20","symbolAliases":[{"foreign":{"id":5637,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"176:14:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":5640,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6719,"src":"232:48:20","symbolAliases":[{"foreign":{"id":5639,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"240:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":5642,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":5510,"src":"281:65:20","symbolAliases":[{"foreign":{"id":5641,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"289:12:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5644,"name":"Context","nameLocations":["1133:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1133:7:20"},"id":5645,"nodeType":"InheritanceSpecifier","src":"1133:7:20"},{"baseName":{"id":5646,"name":"IERC20","nameLocations":["1142:6:20"],"nodeType":"IdentifierPath","referencedDeclaration":6225,"src":"1142:6:20"},"id":5647,"nodeType":"InheritanceSpecifier","src":"1142:6:20"},{"baseName":{"id":5648,"name":"IERC20Metadata","nameLocations":["1150:14:20"],"nodeType":"IdentifierPath","referencedDeclaration":6383,"src":"1150:14:20"},"id":5649,"nodeType":"InheritanceSpecifier","src":"1150:14:20"},{"baseName":{"id":5650,"name":"IERC20Errors","nameLocations":["1166:12:20"],"nodeType":"IdentifierPath","referencedDeclaration":5414,"src":"1166:12:20"},"id":5651,"nodeType":"InheritanceSpecifier","src":"1166:12:20"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":5643,"nodeType":"StructuredDocumentation","src":"348:757:20","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":6147,"linearizedBaseContracts":[6147,5414,6383,6225,6718],"name":"ERC20","nameLocation":"1124:5:20","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":5655,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:20","nodeType":"VariableDeclaration","scope":6147,"src":"1185:53:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5654,"keyName":"account","keyNameLocation":"1201:7:20","keyType":{"id":5652,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5653,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":5661,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:20","nodeType":"VariableDeclaration","scope":6147,"src":"1245:83:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":5660,"keyName":"account","keyNameLocation":"1261:7:20","keyType":{"id":5656,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:20","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":5659,"keyName":"spender","keyNameLocation":"1288:7:20","keyType":{"id":5657,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5658,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":5663,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:20","nodeType":"VariableDeclaration","scope":6147,"src":"1335:28:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5662,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":5665,"mutability":"mutable","name":"_name","nameLocation":"1385:5:20","nodeType":"VariableDeclaration","scope":6147,"src":"1370:20:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5664,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":5667,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:20","nodeType":"VariableDeclaration","scope":6147,"src":"1396:22:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5666,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":5683,"nodeType":"Block","src":"1657:57:20","statements":[{"expression":{"id":5677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5675,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"1667:5:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5676,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5670,"src":"1675:5:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5678,"nodeType":"ExpressionStatement","src":"1667:13:20"},{"expression":{"id":5681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5679,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5667,"src":"1690:7:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5680,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5672,"src":"1700:7:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5682,"nodeType":"ExpressionStatement","src":"1690:17:20"}]},"documentation":{"id":5668,"nodeType":"StructuredDocumentation","src":"1425:171:20","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":5684,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5670,"mutability":"mutable","name":"name_","nameLocation":"1627:5:20","nodeType":"VariableDeclaration","scope":5684,"src":"1613:19:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5669,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5672,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:20","nodeType":"VariableDeclaration","scope":5684,"src":"1634:21:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5671,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:20"},"returnParameters":{"id":5674,"nodeType":"ParameterList","parameters":[],"src":"1657:0:20"},"scope":6147,"src":"1601:113:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6370],"body":{"id":5692,"nodeType":"Block","src":"1839:29:20","statements":[{"expression":{"id":5690,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"1856:5:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5689,"id":5691,"nodeType":"Return","src":"1849:12:20"}]},"documentation":{"id":5685,"nodeType":"StructuredDocumentation","src":"1720:54:20","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":5693,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:20","nodeType":"FunctionDefinition","parameters":{"id":5686,"nodeType":"ParameterList","parameters":[],"src":"1792:2:20"},"returnParameters":{"id":5689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5693,"src":"1824:13:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5687,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:20"},"scope":6147,"src":"1779:89:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6376],"body":{"id":5701,"nodeType":"Block","src":"2043:31:20","statements":[{"expression":{"id":5699,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5667,"src":"2060:7:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5698,"id":5700,"nodeType":"Return","src":"2053:14:20"}]},"documentation":{"id":5694,"nodeType":"StructuredDocumentation","src":"1874:102:20","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":5702,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:20","nodeType":"FunctionDefinition","parameters":{"id":5695,"nodeType":"ParameterList","parameters":[],"src":"1996:2:20"},"returnParameters":{"id":5698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5697,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5702,"src":"2028:13:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5696,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:20"},"scope":6147,"src":"1981:93:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6382],"body":{"id":5710,"nodeType":"Block","src":"2763:26:20","statements":[{"expression":{"hexValue":"3138","id":5708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:20","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":5707,"id":5709,"nodeType":"Return","src":"2773:9:20"}]},"documentation":{"id":5703,"nodeType":"StructuredDocumentation","src":"2080:622:20","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":5711,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:20","nodeType":"FunctionDefinition","parameters":{"id":5704,"nodeType":"ParameterList","parameters":[],"src":"2724:2:20"},"returnParameters":{"id":5707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5706,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5711,"src":"2756:5:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5705,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:20"},"scope":6147,"src":"2707:82:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6174],"body":{"id":5719,"nodeType":"Block","src":"2910:36:20","statements":[{"expression":{"id":5717,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"2927:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5716,"id":5718,"nodeType":"Return","src":"2920:19:20"}]},"documentation":{"id":5712,"nodeType":"StructuredDocumentation","src":"2795:49:20","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":5720,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:20","nodeType":"FunctionDefinition","parameters":{"id":5713,"nodeType":"ParameterList","parameters":[],"src":"2869:2:20"},"returnParameters":{"id":5716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5715,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5720,"src":"2901:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5714,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:20"},"scope":6147,"src":"2849:97:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6182],"body":{"id":5732,"nodeType":"Block","src":"3078:42:20","statements":[{"expression":{"baseExpression":{"id":5728,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"3095:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5730,"indexExpression":{"id":5729,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5723,"src":"3105:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5727,"id":5731,"nodeType":"Return","src":"3088:25:20"}]},"documentation":{"id":5721,"nodeType":"StructuredDocumentation","src":"2952:47:20","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":5733,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:20","nodeType":"FunctionDefinition","parameters":{"id":5724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5723,"mutability":"mutable","name":"account","nameLocation":"3031:7:20","nodeType":"VariableDeclaration","scope":5733,"src":"3023:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5722,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:20"},"returnParameters":{"id":5727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5726,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5733,"src":"3069:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5725,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:20"},"scope":6147,"src":"3004:116:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6192],"body":{"id":5756,"nodeType":"Block","src":"3390:103:20","statements":[{"assignments":[5744],"declarations":[{"constant":false,"id":5744,"mutability":"mutable","name":"owner","nameLocation":"3408:5:20","nodeType":"VariableDeclaration","scope":5756,"src":"3400:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5743,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5747,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5745,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"3416:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:20"},{"expression":{"arguments":[{"id":5749,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5744,"src":"3448:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5750,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5736,"src":"3455:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5751,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5738,"src":"3459:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5748,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"3438:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5753,"nodeType":"ExpressionStatement","src":"3438:27:20"},{"expression":{"hexValue":"74727565","id":5754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5742,"id":5755,"nodeType":"Return","src":"3475:11:20"}]},"documentation":{"id":5734,"nodeType":"StructuredDocumentation","src":"3126:184:20","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":5757,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:20","nodeType":"FunctionDefinition","parameters":{"id":5739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5736,"mutability":"mutable","name":"to","nameLocation":"3341:2:20","nodeType":"VariableDeclaration","scope":5757,"src":"3333:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5735,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5738,"mutability":"mutable","name":"value","nameLocation":"3353:5:20","nodeType":"VariableDeclaration","scope":5757,"src":"3345:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5737,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:20"},"returnParameters":{"id":5742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5757,"src":"3384:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5740,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:20"},"scope":6147,"src":"3315:178:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6202],"body":{"id":5773,"nodeType":"Block","src":"3640:51:20","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":5767,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5661,"src":"3657:11:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":5769,"indexExpression":{"id":5768,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5760,"src":"3669:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5771,"indexExpression":{"id":5770,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5762,"src":"3676:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5766,"id":5772,"nodeType":"Return","src":"3650:34:20"}]},"documentation":{"id":5758,"nodeType":"StructuredDocumentation","src":"3499:47:20","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":5774,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:20","nodeType":"FunctionDefinition","parameters":{"id":5763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5760,"mutability":"mutable","name":"owner","nameLocation":"3578:5:20","nodeType":"VariableDeclaration","scope":5774,"src":"3570:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5759,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5762,"mutability":"mutable","name":"spender","nameLocation":"3593:7:20","nodeType":"VariableDeclaration","scope":5774,"src":"3585:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5761,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:20"},"returnParameters":{"id":5766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5774,"src":"3631:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5764,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:20"},"scope":6147,"src":"3551:140:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6212],"body":{"id":5797,"nodeType":"Block","src":"4077:107:20","statements":[{"assignments":[5785],"declarations":[{"constant":false,"id":5785,"mutability":"mutable","name":"owner","nameLocation":"4095:5:20","nodeType":"VariableDeclaration","scope":5797,"src":"4087:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5784,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5788,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5786,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"4103:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:20"},{"expression":{"arguments":[{"id":5790,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5785,"src":"4134:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5791,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5777,"src":"4141:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5792,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5779,"src":"4150:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5789,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6038,"src":"4125:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5794,"nodeType":"ExpressionStatement","src":"4125:31:20"},{"expression":{"hexValue":"74727565","id":5795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5783,"id":5796,"nodeType":"Return","src":"4166:11:20"}]},"documentation":{"id":5775,"nodeType":"StructuredDocumentation","src":"3697:296:20","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":5798,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:20","nodeType":"FunctionDefinition","parameters":{"id":5780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5777,"mutability":"mutable","name":"spender","nameLocation":"4023:7:20","nodeType":"VariableDeclaration","scope":5798,"src":"4015:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5776,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5779,"mutability":"mutable","name":"value","nameLocation":"4040:5:20","nodeType":"VariableDeclaration","scope":5798,"src":"4032:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5778,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:20"},"returnParameters":{"id":5783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5798,"src":"4071:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5781,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:20"},"scope":6147,"src":"3998:186:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6224],"body":{"id":5829,"nodeType":"Block","src":"4869:151:20","statements":[{"assignments":[5811],"declarations":[{"constant":false,"id":5811,"mutability":"mutable","name":"spender","nameLocation":"4887:7:20","nodeType":"VariableDeclaration","scope":5829,"src":"4879:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5810,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5814,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5812,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"4897:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:20"},{"expression":{"arguments":[{"id":5816,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5801,"src":"4935:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5817,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5811,"src":"4941:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5818,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5805,"src":"4950:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5815,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6146,"src":"4919:15:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5820,"nodeType":"ExpressionStatement","src":"4919:37:20"},{"expression":{"arguments":[{"id":5822,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5801,"src":"4976:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5823,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5803,"src":"4982:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5824,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5805,"src":"4986:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5821,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"4966:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5826,"nodeType":"ExpressionStatement","src":"4966:26:20"},{"expression":{"hexValue":"74727565","id":5827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5809,"id":5828,"nodeType":"Return","src":"5002:11:20"}]},"documentation":{"id":5799,"nodeType":"StructuredDocumentation","src":"4190:581:20","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":5830,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:20","nodeType":"FunctionDefinition","parameters":{"id":5806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5801,"mutability":"mutable","name":"from","nameLocation":"4806:4:20","nodeType":"VariableDeclaration","scope":5830,"src":"4798:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5800,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5803,"mutability":"mutable","name":"to","nameLocation":"4820:2:20","nodeType":"VariableDeclaration","scope":5830,"src":"4812:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5802,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5805,"mutability":"mutable","name":"value","nameLocation":"4832:5:20","nodeType":"VariableDeclaration","scope":5830,"src":"4824:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5804,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:20"},"returnParameters":{"id":5809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5830,"src":"4863:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5807,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:20"},"scope":6147,"src":"4776:244:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5876,"nodeType":"Block","src":"5462:231:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5840,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"5476:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:20","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":5842,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5841,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:20","typeDescriptions":{}}},"id":5844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5854,"nodeType":"IfStatement","src":"5472:86:20","trueBody":{"id":5853,"nodeType":"Block","src":"5496:62:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:20","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":5848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5847,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:20","typeDescriptions":{}}},"id":5850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5846,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"5517:18:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5852,"nodeType":"RevertStatement","src":"5510:37:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5855,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"5571:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:20","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":5857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5856,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:20","typeDescriptions":{}}},"id":5859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5869,"nodeType":"IfStatement","src":"5567:86:20","trueBody":{"id":5868,"nodeType":"Block","src":"5589:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:20","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":5863,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5862,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:20","typeDescriptions":{}}},"id":5865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5861,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5394,"src":"5610:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5867,"nodeType":"RevertStatement","src":"5603:39:20"}]}},{"expression":{"arguments":[{"id":5871,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"5670:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5872,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"5676:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"5680:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5870,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"5662:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5875,"nodeType":"ExpressionStatement","src":"5662:24:20"}]},"documentation":{"id":5831,"nodeType":"StructuredDocumentation","src":"5026:362:20","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":5877,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:20","nodeType":"FunctionDefinition","parameters":{"id":5838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5833,"mutability":"mutable","name":"from","nameLocation":"5420:4:20","nodeType":"VariableDeclaration","scope":5877,"src":"5412:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5832,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5835,"mutability":"mutable","name":"to","nameLocation":"5434:2:20","nodeType":"VariableDeclaration","scope":5877,"src":"5426:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5834,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5837,"mutability":"mutable","name":"value","nameLocation":"5446:5:20","nodeType":"VariableDeclaration","scope":5877,"src":"5438:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5836,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:20"},"returnParameters":{"id":5839,"nodeType":"ParameterList","parameters":[],"src":"5462:0:20"},"scope":6147,"src":"5393:300:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5953,"nodeType":"Block","src":"6083:1032:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5887,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6097:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:20","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":5889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5888,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:20","typeDescriptions":{}}},"id":5891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5924,"nodeType":"Block","src":"6271:362:20","statements":[{"assignments":[5899],"declarations":[{"constant":false,"id":5899,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:20","nodeType":"VariableDeclaration","scope":5924,"src":"6285:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5898,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5903,"initialValue":{"baseExpression":{"id":5900,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"6307:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5902,"indexExpression":{"id":5901,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6317:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:20"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5904,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6340:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5905,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6354:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5914,"nodeType":"IfStatement","src":"6336:115:20","trueBody":{"id":5913,"nodeType":"Block","src":"6361:90:20","statements":[{"errorCall":{"arguments":[{"id":5908,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6411:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5909,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6417:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6430:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5907,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5384,"src":"6386:24:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":5911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5912,"nodeType":"RevertStatement","src":"6379:57:20"}]}},{"id":5923,"nodeType":"UncheckedBlock","src":"6464:159:20","statements":[{"expression":{"id":5921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5915,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"6571:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5917,"indexExpression":{"id":5916,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6581:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5918,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6589:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6603:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5922,"nodeType":"ExpressionStatement","src":"6571:37:20"}]}]},"id":5925,"nodeType":"IfStatement","src":"6093:540:20","trueBody":{"id":5897,"nodeType":"Block","src":"6117:148:20","statements":[{"expression":{"id":5895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5893,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"6233:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6249:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5896,"nodeType":"ExpressionStatement","src":"6233:21:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5926,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"6647:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:20","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":5928,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5927,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:20","typeDescriptions":{}}},"id":5930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5945,"nodeType":"Block","src":"6862:206:20","statements":[{"id":5944,"nodeType":"UncheckedBlock","src":"6876:182:20","statements":[{"expression":{"id":5942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5938,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"7021:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5940,"indexExpression":{"id":5939,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"7031:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5941,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"7038:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5943,"nodeType":"ExpressionStatement","src":"7021:22:20"}]}]},"id":5946,"nodeType":"IfStatement","src":"6643:425:20","trueBody":{"id":5937,"nodeType":"Block","src":"6665:191:20","statements":[{"id":5936,"nodeType":"UncheckedBlock","src":"6679:167:20","statements":[{"expression":{"id":5934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5932,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"6810:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":5933,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6826:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5935,"nodeType":"ExpressionStatement","src":"6810:21:20"}]}]}},{"eventCall":{"arguments":[{"id":5948,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"7092:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5949,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"7098:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"7102:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5947,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6159,"src":"7083:8:20","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5952,"nodeType":"EmitStatement","src":"7078:30:20"}]},"documentation":{"id":5878,"nodeType":"StructuredDocumentation","src":"5699:304:20","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":5954,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:20","nodeType":"FunctionDefinition","parameters":{"id":5885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5880,"mutability":"mutable","name":"from","nameLocation":"6033:4:20","nodeType":"VariableDeclaration","scope":5954,"src":"6025:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5879,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5882,"mutability":"mutable","name":"to","nameLocation":"6047:2:20","nodeType":"VariableDeclaration","scope":5954,"src":"6039:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5881,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5884,"mutability":"mutable","name":"value","nameLocation":"6059:5:20","nodeType":"VariableDeclaration","scope":5954,"src":"6051:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5883,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:20"},"returnParameters":{"id":5886,"nodeType":"ParameterList","parameters":[],"src":"6083:0:20"},"scope":6147,"src":"6008:1107:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5986,"nodeType":"Block","src":"7514:152:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5962,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"7528:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:20","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":5964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5963,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:20","typeDescriptions":{}}},"id":5966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5976,"nodeType":"IfStatement","src":"7524:91:20","trueBody":{"id":5975,"nodeType":"Block","src":"7551:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:20","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":5970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5969,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:20","typeDescriptions":{}}},"id":5972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5968,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5394,"src":"7572:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5974,"nodeType":"RevertStatement","src":"7565:39:20"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":5980,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:20","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":5979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5978,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:20","typeDescriptions":{}}},"id":5981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5982,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"7644:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5959,"src":"7653:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5977,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"7624:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5985,"nodeType":"ExpressionStatement","src":"7624:35:20"}]},"documentation":{"id":5955,"nodeType":"StructuredDocumentation","src":"7121:332:20","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":5987,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:20","nodeType":"FunctionDefinition","parameters":{"id":5960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5957,"mutability":"mutable","name":"account","nameLocation":"7481:7:20","nodeType":"VariableDeclaration","scope":5987,"src":"7473:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5956,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5959,"mutability":"mutable","name":"value","nameLocation":"7498:5:20","nodeType":"VariableDeclaration","scope":5987,"src":"7490:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5958,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:20"},"returnParameters":{"id":5961,"nodeType":"ParameterList","parameters":[],"src":"7514:0:20"},"scope":6147,"src":"7458:208:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6019,"nodeType":"Block","src":"8040:150:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5995,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5990,"src":"8054:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:20","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":5997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5996,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:20","typeDescriptions":{}}},"id":5999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6009,"nodeType":"IfStatement","src":"8050:89:20","trueBody":{"id":6008,"nodeType":"Block","src":"8077:62:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:20","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":6003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6002,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:20","typeDescriptions":{}}},"id":6005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6001,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"8098:18:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6007,"nodeType":"RevertStatement","src":"8091:37:20"}]}},{"expression":{"arguments":[{"id":6011,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5990,"src":"8156:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":6014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:20","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":6013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6012,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:20","typeDescriptions":{}}},"id":6015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6016,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5992,"src":"8177:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6010,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"8148:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6018,"nodeType":"ExpressionStatement","src":"8148:35:20"}]},"documentation":{"id":5988,"nodeType":"StructuredDocumentation","src":"7672:307:20","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":6020,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:20","nodeType":"FunctionDefinition","parameters":{"id":5993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5990,"mutability":"mutable","name":"account","nameLocation":"8007:7:20","nodeType":"VariableDeclaration","scope":6020,"src":"7999:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5989,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5992,"mutability":"mutable","name":"value","nameLocation":"8024:5:20","nodeType":"VariableDeclaration","scope":6020,"src":"8016:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5991,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:20"},"returnParameters":{"id":5994,"nodeType":"ParameterList","parameters":[],"src":"8040:0:20"},"scope":6147,"src":"7984:206:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6037,"nodeType":"Block","src":"8800:54:20","statements":[{"expression":{"arguments":[{"id":6031,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6023,"src":"8819:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6032,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6025,"src":"8826:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6027,"src":"8835:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:20","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":6030,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6098,"src":"8810:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6036,"nodeType":"ExpressionStatement","src":"8810:37:20"}]},"documentation":{"id":6021,"nodeType":"StructuredDocumentation","src":"8196:525:20","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":6038,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:20","nodeType":"FunctionDefinition","parameters":{"id":6028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6023,"mutability":"mutable","name":"owner","nameLocation":"8752:5:20","nodeType":"VariableDeclaration","scope":6038,"src":"8744:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6022,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6025,"mutability":"mutable","name":"spender","nameLocation":"8767:7:20","nodeType":"VariableDeclaration","scope":6038,"src":"8759:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6024,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6027,"mutability":"mutable","name":"value","nameLocation":"8784:5:20","nodeType":"VariableDeclaration","scope":6038,"src":"8776:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6026,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:20"},"returnParameters":{"id":6029,"nodeType":"ParameterList","parameters":[],"src":"8800:0:20"},"scope":6147,"src":"8726:128:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6097,"nodeType":"Block","src":"9799:334:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6050,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"9813:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:20","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":6052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6051,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:20","typeDescriptions":{}}},"id":6054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6064,"nodeType":"IfStatement","src":"9809:89:20","trueBody":{"id":6063,"nodeType":"Block","src":"9834:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:20","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":6058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6057,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:20","typeDescriptions":{}}},"id":6060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6056,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5408,"src":"9855:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6062,"nodeType":"RevertStatement","src":"9848:39:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6065,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"9911:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:20","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":6067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6066,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:20","typeDescriptions":{}}},"id":6069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6079,"nodeType":"IfStatement","src":"9907:90:20","trueBody":{"id":6078,"nodeType":"Block","src":"9934:63:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:20","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":6073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6072,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:20","typeDescriptions":{}}},"id":6075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6071,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"9955:19:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6077,"nodeType":"RevertStatement","src":"9948:38:20"}]}},{"expression":{"id":6086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":6080,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5661,"src":"10006:11:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":6083,"indexExpression":{"id":6081,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"10018:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6084,"indexExpression":{"id":6082,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"10025:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6085,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6045,"src":"10036:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6087,"nodeType":"ExpressionStatement","src":"10006:35:20"},{"condition":{"id":6088,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6047,"src":"10055:9:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6096,"nodeType":"IfStatement","src":"10051:76:20","trueBody":{"id":6095,"nodeType":"Block","src":"10066:61:20","statements":[{"eventCall":{"arguments":[{"id":6090,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"10094:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6091,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"10101:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6092,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6045,"src":"10110:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6089,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6168,"src":"10085:8:20","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6094,"nodeType":"EmitStatement","src":"10080:36:20"}]}}]},"documentation":{"id":6039,"nodeType":"StructuredDocumentation","src":"8860:836:20","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":6098,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:20","nodeType":"FunctionDefinition","parameters":{"id":6048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6041,"mutability":"mutable","name":"owner","nameLocation":"9727:5:20","nodeType":"VariableDeclaration","scope":6098,"src":"9719:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6040,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6043,"mutability":"mutable","name":"spender","nameLocation":"9742:7:20","nodeType":"VariableDeclaration","scope":6098,"src":"9734:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6042,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6045,"mutability":"mutable","name":"value","nameLocation":"9759:5:20","nodeType":"VariableDeclaration","scope":6098,"src":"9751:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6044,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6047,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:20","nodeType":"VariableDeclaration","scope":6098,"src":"9766:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6046,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:20"},"returnParameters":{"id":6049,"nodeType":"ParameterList","parameters":[],"src":"9799:0:20"},"scope":6147,"src":"9701:432:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6145,"nodeType":"Block","src":"10504:387:20","statements":[{"assignments":[6109],"declarations":[{"constant":false,"id":6109,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:20","nodeType":"VariableDeclaration","scope":6145,"src":"10514:24:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6108,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6114,"initialValue":{"arguments":[{"id":6111,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6101,"src":"10551:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6112,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10558:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6110,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5774,"src":"10541:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":6113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:20"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6115,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10580:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":6118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6117,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:20","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6116,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:20","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:20","memberName":"max","nodeType":"MemberAccess","src":"10599:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6144,"nodeType":"IfStatement","src":"10576:309:20","trueBody":{"id":6143,"nodeType":"Block","src":"10618:267:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6122,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10636:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6123,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10655:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6132,"nodeType":"IfStatement","src":"10632:130:20","trueBody":{"id":6131,"nodeType":"Block","src":"10662:100:20","statements":[{"errorCall":{"arguments":[{"id":6126,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10714:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6127,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10723:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10741:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6125,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5403,"src":"10687:26:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":6129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6130,"nodeType":"RevertStatement","src":"10680:67:20"}]}},{"id":6142,"nodeType":"UncheckedBlock","src":"10775:100:20","statements":[{"expression":{"arguments":[{"id":6134,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6101,"src":"10812:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6135,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10819:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6136,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10828:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6137,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10847:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":6139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:20","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":6133,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6098,"src":"10803:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6141,"nodeType":"ExpressionStatement","src":"10803:57:20"}]}]}}]},"documentation":{"id":6099,"nodeType":"StructuredDocumentation","src":"10139:271:20","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":6146,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:20","nodeType":"FunctionDefinition","parameters":{"id":6106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6101,"mutability":"mutable","name":"owner","nameLocation":"10448:5:20","nodeType":"VariableDeclaration","scope":6146,"src":"10440:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6100,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6103,"mutability":"mutable","name":"spender","nameLocation":"10463:7:20","nodeType":"VariableDeclaration","scope":6146,"src":"10455:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6102,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6105,"mutability":"mutable","name":"value","nameLocation":"10480:5:20","nodeType":"VariableDeclaration","scope":6146,"src":"10472:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6104,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:20"},"returnParameters":{"id":6107,"nodeType":"ParameterList","parameters":[],"src":"10504:0:20"},"scope":6147,"src":"10415:476:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":6148,"src":"1106:9787:20","usedErrors":[5384,5389,5394,5403,5408,5413],"usedEvents":[6159,6168]}],"src":"105:10789:20"},"id":20},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[6225]},"id":6226,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6149,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:21"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":6150,"nodeType":"StructuredDocumentation","src":"132:71:21","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":6225,"linearizedBaseContracts":[6225],"name":"IERC20","nameLocation":"214:6:21","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":6151,"nodeType":"StructuredDocumentation","src":"227:158:21","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":6159,"name":"Transfer","nameLocation":"396:8:21","nodeType":"EventDefinition","parameters":{"id":6158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6153,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:21","nodeType":"VariableDeclaration","scope":6159,"src":"405:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6152,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6155,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:21","nodeType":"VariableDeclaration","scope":6159,"src":"427:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6154,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6157,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:21","nodeType":"VariableDeclaration","scope":6159,"src":"447:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6156,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:21"},"src":"390:72:21"},{"anonymous":false,"documentation":{"id":6160,"nodeType":"StructuredDocumentation","src":"468:148:21","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":6168,"name":"Approval","nameLocation":"627:8:21","nodeType":"EventDefinition","parameters":{"id":6167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6162,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:21","nodeType":"VariableDeclaration","scope":6168,"src":"636:21:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6161,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6164,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:21","nodeType":"VariableDeclaration","scope":6168,"src":"659:23:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6163,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6166,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:21","nodeType":"VariableDeclaration","scope":6168,"src":"684:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6165,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:21"},"src":"621:78:21"},{"documentation":{"id":6169,"nodeType":"StructuredDocumentation","src":"705:65:21","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":6174,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:21","nodeType":"FunctionDefinition","parameters":{"id":6170,"nodeType":"ParameterList","parameters":[],"src":"795:2:21"},"returnParameters":{"id":6173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6174,"src":"821:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6171,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:21"},"scope":6225,"src":"775:55:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6175,"nodeType":"StructuredDocumentation","src":"836:71:21","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":6182,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:21","nodeType":"FunctionDefinition","parameters":{"id":6178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6177,"mutability":"mutable","name":"account","nameLocation":"939:7:21","nodeType":"VariableDeclaration","scope":6182,"src":"931:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6176,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:21"},"returnParameters":{"id":6181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6182,"src":"971:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6179,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:21"},"scope":6225,"src":"912:68:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6183,"nodeType":"StructuredDocumentation","src":"986:213:21","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":6192,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:21","nodeType":"FunctionDefinition","parameters":{"id":6188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6185,"mutability":"mutable","name":"to","nameLocation":"1230:2:21","nodeType":"VariableDeclaration","scope":6192,"src":"1222:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6184,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6187,"mutability":"mutable","name":"value","nameLocation":"1242:5:21","nodeType":"VariableDeclaration","scope":6192,"src":"1234:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6186,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:21"},"returnParameters":{"id":6191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6192,"src":"1267:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6189,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:21"},"scope":6225,"src":"1204:69:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6193,"nodeType":"StructuredDocumentation","src":"1279:264:21","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":6202,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:21","nodeType":"FunctionDefinition","parameters":{"id":6198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6195,"mutability":"mutable","name":"owner","nameLocation":"1575:5:21","nodeType":"VariableDeclaration","scope":6202,"src":"1567:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6194,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6197,"mutability":"mutable","name":"spender","nameLocation":"1590:7:21","nodeType":"VariableDeclaration","scope":6202,"src":"1582:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6196,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:21"},"returnParameters":{"id":6201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6202,"src":"1622:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6199,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:21"},"scope":6225,"src":"1548:83:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6203,"nodeType":"StructuredDocumentation","src":"1637:667:21","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":6212,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:21","nodeType":"FunctionDefinition","parameters":{"id":6208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6205,"mutability":"mutable","name":"spender","nameLocation":"2334:7:21","nodeType":"VariableDeclaration","scope":6212,"src":"2326:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6204,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6207,"mutability":"mutable","name":"value","nameLocation":"2351:5:21","nodeType":"VariableDeclaration","scope":6212,"src":"2343:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6206,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:21"},"returnParameters":{"id":6211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6212,"src":"2376:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6209,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:21"},"scope":6225,"src":"2309:73:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6213,"nodeType":"StructuredDocumentation","src":"2388:297:21","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":6224,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:21","nodeType":"FunctionDefinition","parameters":{"id":6220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6215,"mutability":"mutable","name":"from","nameLocation":"2720:4:21","nodeType":"VariableDeclaration","scope":6224,"src":"2712:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6214,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6217,"mutability":"mutable","name":"to","nameLocation":"2734:2:21","nodeType":"VariableDeclaration","scope":6224,"src":"2726:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6216,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6219,"mutability":"mutable","name":"value","nameLocation":"2746:5:21","nodeType":"VariableDeclaration","scope":6224,"src":"2738:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6218,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:21"},"returnParameters":{"id":6223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6224,"src":"2771:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6221,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:21"},"scope":6225,"src":"2690:87:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6226,"src":"204:2575:21","usedErrors":[],"usedEvents":[6159,6168]}],"src":"106:2674:21"},"id":21},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","exportedSymbols":{"Checkpoints":[14290],"ERC20":[6147],"ERC20Votes":[6357],"Votes":[5303]},"id":6358,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6227,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:22"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":6229,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":6148,"src":"147:35:22","symbolAliases":[{"foreign":{"id":6228,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6147,"src":"155:5:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","file":"../../../governance/utils/Votes.sol","id":6231,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":5304,"src":"183:58:22","symbolAliases":[{"foreign":{"id":6230,"name":"Votes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5303,"src":"191:5:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../../utils/structs/Checkpoints.sol","id":6233,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":14291,"src":"242:67:22","symbolAliases":[{"foreign":{"id":6232,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"250:11:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6235,"name":"ERC20","nameLocations":["1226:5:22"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"1226:5:22"},"id":6236,"nodeType":"InheritanceSpecifier","src":"1226:5:22"},{"baseName":{"id":6237,"name":"Votes","nameLocations":["1233:5:22"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"1233:5:22"},"id":6238,"nodeType":"InheritanceSpecifier","src":"1233:5:22"}],"canonicalName":"ERC20Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":6234,"nodeType":"StructuredDocumentation","src":"311:882:22","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":6357,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[6357,5303,5357,4760,5372,6808,8976,5346,6147,5414,6383,6225,6718],"name":"ERC20Votes","nameLocation":"1212:10:22","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6239,"nodeType":"StructuredDocumentation","src":"1245:100:22","text":" @dev Total supply cap has been exceeded, introducing a risk of votes overflowing."},"errorSelector":"1cb15d26","id":6245,"name":"ERC20ExceededSafeSupply","nameLocation":"1356:23:22","nodeType":"ErrorDefinition","parameters":{"id":6244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6241,"mutability":"mutable","name":"increasedSupply","nameLocation":"1388:15:22","nodeType":"VariableDeclaration","scope":6245,"src":"1380:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6240,"name":"uint256","nodeType":"ElementaryTypeName","src":"1380:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6243,"mutability":"mutable","name":"cap","nameLocation":"1413:3:22","nodeType":"VariableDeclaration","scope":6245,"src":"1405:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6242,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1379:38:22"},"src":"1350:68:22"},{"body":{"id":6257,"nodeType":"Block","src":"2175:41:22","statements":[{"expression":{"expression":{"arguments":[{"id":6253,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2197:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6252,"name":"uint208","nodeType":"ElementaryTypeName","src":"2197:7:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":6251,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2192:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2192:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":6255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2206:3:22","memberName":"max","nodeType":"MemberAccess","src":"2192:17:22","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":6250,"id":6256,"nodeType":"Return","src":"2185:24:22"}]},"documentation":{"id":6246,"nodeType":"StructuredDocumentation","src":"1424:684:22","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":6258,"implemented":true,"kind":"function","modifiers":[],"name":"_maxSupply","nameLocation":"2122:10:22","nodeType":"FunctionDefinition","parameters":{"id":6247,"nodeType":"ParameterList","parameters":[],"src":"2132:2:22"},"returnParameters":{"id":6250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6258,"src":"2166:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6248,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:9:22"},"scope":6357,"src":"2113:103:22","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5954],"body":{"id":6311,"nodeType":"Block","src":"2440:329:22","statements":[{"expression":{"arguments":[{"id":6272,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2464:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6273,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"2470:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6274,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"2474:5:22","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":6269,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2450:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Votes_$6357_$","typeString":"type(contract super ERC20Votes)"}},"id":6271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2456:7:22","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":5954,"src":"2450:13:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2450:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6276,"nodeType":"ExpressionStatement","src":"2450:30:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6277,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2494:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2510:1:22","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":6279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2502:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6278,"name":"address","nodeType":"ElementaryTypeName","src":"2502:7:22","typeDescriptions":{}}},"id":6281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2502:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2494:18:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6304,"nodeType":"IfStatement","src":"2490:226:22","trueBody":{"id":6303,"nodeType":"Block","src":"2514:202:22","statements":[{"assignments":[6284],"declarations":[{"constant":false,"id":6284,"mutability":"mutable","name":"supply","nameLocation":"2536:6:22","nodeType":"VariableDeclaration","scope":6303,"src":"2528:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6283,"name":"uint256","nodeType":"ElementaryTypeName","src":"2528:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6287,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6285,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"2545:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2528:30:22"},{"assignments":[6289],"declarations":[{"constant":false,"id":6289,"mutability":"mutable","name":"cap","nameLocation":"2580:3:22","nodeType":"VariableDeclaration","scope":6303,"src":"2572:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6288,"name":"uint256","nodeType":"ElementaryTypeName","src":"2572:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6292,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6290,"name":"_maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6258,"src":"2586:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2586:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2572:26:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6293,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6284,"src":"2616:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6294,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6289,"src":"2625:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2616:12:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6302,"nodeType":"IfStatement","src":"2612:94:22","trueBody":{"id":6301,"nodeType":"Block","src":"2630:76:22","statements":[{"errorCall":{"arguments":[{"id":6297,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6284,"src":"2679:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6298,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6289,"src":"2687:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6296,"name":"ERC20ExceededSafeSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6245,"src":"2655:23:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2655:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6300,"nodeType":"RevertStatement","src":"2648:43:22"}]}}]}},{"expression":{"arguments":[{"id":6306,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2746:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6307,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"2752:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6308,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"2756:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6305,"name":"_transferVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5116,"src":"2725:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2725:37:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6310,"nodeType":"ExpressionStatement","src":"2725:37:22"}]},"documentation":{"id":6259,"nodeType":"StructuredDocumentation","src":"2222:129:22","text":" @dev Move voting power when tokens are transferred.\n Emits a {IVotes-DelegateVotesChanged} event."},"id":6312,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"2365:7:22","nodeType":"FunctionDefinition","overrides":{"id":6267,"nodeType":"OverrideSpecifier","overrides":[],"src":"2431:8:22"},"parameters":{"id":6266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6261,"mutability":"mutable","name":"from","nameLocation":"2381:4:22","nodeType":"VariableDeclaration","scope":6312,"src":"2373:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6260,"name":"address","nodeType":"ElementaryTypeName","src":"2373:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6263,"mutability":"mutable","name":"to","nameLocation":"2395:2:22","nodeType":"VariableDeclaration","scope":6312,"src":"2387:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6262,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6265,"mutability":"mutable","name":"value","nameLocation":"2407:5:22","nodeType":"VariableDeclaration","scope":6312,"src":"2399:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6264,"name":"uint256","nodeType":"ElementaryTypeName","src":"2399:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2372:41:22"},"returnParameters":{"id":6268,"nodeType":"ParameterList","parameters":[],"src":"2440:0:22"},"scope":6357,"src":"2356:413:22","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[5302],"body":{"id":6325,"nodeType":"Block","src":"3120:42:22","statements":[{"expression":{"arguments":[{"id":6322,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6315,"src":"3147:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6321,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"3137:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3137:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6320,"id":6324,"nodeType":"Return","src":"3130:25:22"}]},"documentation":{"id":6313,"nodeType":"StructuredDocumentation","src":"2775:249:22","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":6326,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"3038:15:22","nodeType":"FunctionDefinition","overrides":{"id":6317,"nodeType":"OverrideSpecifier","overrides":[],"src":"3093:8:22"},"parameters":{"id":6316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6315,"mutability":"mutable","name":"account","nameLocation":"3062:7:22","nodeType":"VariableDeclaration","scope":6326,"src":"3054:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6314,"name":"address","nodeType":"ElementaryTypeName","src":"3054:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3053:17:22"},"returnParameters":{"id":6320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6326,"src":"3111:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6318,"name":"uint256","nodeType":"ElementaryTypeName","src":"3111:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3110:9:22"},"scope":6357,"src":"3029:133:22","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6338,"nodeType":"Block","src":"3315:48:22","statements":[{"expression":{"arguments":[{"id":6335,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"3348:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6334,"name":"_numCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5212,"src":"3332:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":6336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3332:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":6333,"id":6337,"nodeType":"Return","src":"3325:31:22"}]},"documentation":{"id":6327,"nodeType":"StructuredDocumentation","src":"3168:64:22","text":" @dev Get number of checkpoints for `account`."},"functionSelector":"6fcfff45","id":6339,"implemented":true,"kind":"function","modifiers":[],"name":"numCheckpoints","nameLocation":"3246:14:22","nodeType":"FunctionDefinition","parameters":{"id":6330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6329,"mutability":"mutable","name":"account","nameLocation":"3269:7:22","nodeType":"VariableDeclaration","scope":6339,"src":"3261:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6328,"name":"address","nodeType":"ElementaryTypeName","src":"3261:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3260:17:22"},"returnParameters":{"id":6333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6332,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6339,"src":"3307:6:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6331,"name":"uint32","nodeType":"ElementaryTypeName","src":"3307:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3306:8:22"},"scope":6357,"src":"3237:126:22","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6355,"nodeType":"Block","src":"3553:50:22","statements":[{"expression":{"arguments":[{"id":6351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"3583:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6352,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6344,"src":"3592:3:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":6350,"name":"_checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5231,"src":"3570:12:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13251_memory_ptr_$","typeString":"function (address,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":6353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3570:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":6349,"id":6354,"nodeType":"Return","src":"3563:33:22"}]},"documentation":{"id":6340,"nodeType":"StructuredDocumentation","src":"3369:66:22","text":" @dev Get the `pos`-th checkpoint for `account`."},"functionSelector":"f1127ed8","id":6356,"implemented":true,"kind":"function","modifiers":[],"name":"checkpoints","nameLocation":"3449:11:22","nodeType":"FunctionDefinition","parameters":{"id":6345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6342,"mutability":"mutable","name":"account","nameLocation":"3469:7:22","nodeType":"VariableDeclaration","scope":6356,"src":"3461:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6341,"name":"address","nodeType":"ElementaryTypeName","src":"3461:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6344,"mutability":"mutable","name":"pos","nameLocation":"3485:3:22","nodeType":"VariableDeclaration","scope":6356,"src":"3478:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6343,"name":"uint32","nodeType":"ElementaryTypeName","src":"3478:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3460:29:22"},"returnParameters":{"id":6349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6348,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6356,"src":"3519:32:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":6347,"nodeType":"UserDefinedTypeName","pathNode":{"id":6346,"name":"Checkpoints.Checkpoint208","nameLocations":["3519:11:22","3531:13:22"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"3519:25:22"},"referencedDeclaration":13251,"src":"3519:25:22","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"3518:34:22"},"scope":6357,"src":"3440:163:22","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":6358,"src":"1194:2411:22","usedErrors":[4685,4811,4818,5384,5389,5394,5403,5408,5413,6245,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[4694,4703,5326,6159,6168]}],"src":"121:3485:22"},"id":22},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[6225],"IERC20Metadata":[6383]},"id":6384,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6359,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":6361,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6384,"sourceUnit":6226,"src":"151:37:23","symbolAliases":[{"foreign":{"id":6360,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6225,"src":"159:6:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6363,"name":"IERC20","nameLocations":["306:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":6225,"src":"306:6:23"},"id":6364,"nodeType":"InheritanceSpecifier","src":"306:6:23"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":6362,"nodeType":"StructuredDocumentation","src":"190:87:23","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":6383,"linearizedBaseContracts":[6383,6225],"name":"IERC20Metadata","nameLocation":"288:14:23","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6365,"nodeType":"StructuredDocumentation","src":"319:54:23","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":6370,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:23","nodeType":"FunctionDefinition","parameters":{"id":6366,"nodeType":"ParameterList","parameters":[],"src":"391:2:23"},"returnParameters":{"id":6369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6370,"src":"417:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6367,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:23"},"scope":6383,"src":"378:54:23","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6371,"nodeType":"StructuredDocumentation","src":"438:56:23","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":6376,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:23","nodeType":"FunctionDefinition","parameters":{"id":6372,"nodeType":"ParameterList","parameters":[],"src":"514:2:23"},"returnParameters":{"id":6375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6376,"src":"540:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6373,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:23"},"scope":6383,"src":"499:56:23","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6377,"nodeType":"StructuredDocumentation","src":"561:65:23","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":6382,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:23","nodeType":"FunctionDefinition","parameters":{"id":6378,"nodeType":"ParameterList","parameters":[],"src":"648:2:23"},"returnParameters":{"id":6381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6382,"src":"674:5:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6379,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:23"},"scope":6383,"src":"631:50:23","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6384,"src":"278:405:23","usedErrors":[],"usedEvents":[6159,6168]}],"src":"125:559:23"},"id":23},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[6401]},"id":6402,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6385,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:24"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":6386,"nodeType":"StructuredDocumentation","src":"142:154:24","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":6401,"linearizedBaseContracts":[6401],"name":"IERC721Receiver","nameLocation":"307:15:24","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6387,"nodeType":"StructuredDocumentation","src":"329:500:24","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":6400,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:24","nodeType":"FunctionDefinition","parameters":{"id":6396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6389,"mutability":"mutable","name":"operator","nameLocation":"877:8:24","nodeType":"VariableDeclaration","scope":6400,"src":"869:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6388,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6391,"mutability":"mutable","name":"from","nameLocation":"903:4:24","nodeType":"VariableDeclaration","scope":6400,"src":"895:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6390,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6393,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:24","nodeType":"VariableDeclaration","scope":6400,"src":"917:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6392,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6395,"mutability":"mutable","name":"data","nameLocation":"957:4:24","nodeType":"VariableDeclaration","scope":6400,"src":"942:19:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6394,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:24"},"returnParameters":{"id":6399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6398,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6400,"src":"986:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6397,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:24"},"scope":6401,"src":"834:160:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6402,"src":"297:699:24","usedErrors":[],"usedEvents":[]}],"src":"116:881:24"},"id":24},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","exportedSymbols":{"ERC721Holder":[6428],"IERC721Receiver":[6401]},"id":6429,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6403,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"119:24:25"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../IERC721Receiver.sol","id":6405,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6429,"sourceUnit":6402,"src":"145:55:25","symbolAliases":[{"foreign":{"id":6404,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6401,"src":"153:15:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6407,"name":"IERC721Receiver","nameLocations":["475:15:25"],"nodeType":"IdentifierPath","referencedDeclaration":6401,"src":"475:15:25"},"id":6408,"nodeType":"InheritanceSpecifier","src":"475:15:25"}],"canonicalName":"ERC721Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":6406,"nodeType":"StructuredDocumentation","src":"202:238:25","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":6428,"linearizedBaseContracts":[6428,6401],"name":"ERC721Holder","nameLocation":"459:12:25","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[6400],"body":{"id":6426,"nodeType":"Block","src":"738:54:25","statements":[{"expression":{"expression":{"expression":{"id":6422,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"755:4:25","typeDescriptions":{"typeIdentifier":"t_contract$_ERC721Holder_$6428","typeString":"contract ERC721Holder"}},"id":6423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"760:16:25","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":6427,"src":"755:21:25","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":6424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"777:8:25","memberName":"selector","nodeType":"MemberAccess","src":"755:30:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":6421,"id":6425,"nodeType":"Return","src":"748:37:25"}]},"documentation":{"id":6409,"nodeType":"StructuredDocumentation","src":"497:137:25","text":" @dev See {IERC721Receiver-onERC721Received}.\n Always returns `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":6427,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"648:16:25","nodeType":"FunctionDefinition","parameters":{"id":6418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6411,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"665:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6410,"name":"address","nodeType":"ElementaryTypeName","src":"665:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6413,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"674:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6412,"name":"address","nodeType":"ElementaryTypeName","src":"674:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"683:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6414,"name":"uint256","nodeType":"ElementaryTypeName","src":"683:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"692:12:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6416,"name":"bytes","nodeType":"ElementaryTypeName","src":"692:5:25","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"664:41:25"},"returnParameters":{"id":6421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"730:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6419,"name":"bytes4","nodeType":"ElementaryTypeName","src":"730:6:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"729:8:25"},"scope":6428,"src":"639:153:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":6429,"src":"441:353:25","usedErrors":[],"usedEvents":[]}],"src":"119:676:25"},"id":25},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[6688],"Errors":[6740]},"id":6689,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6430,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:26"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":6432,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6689,"sourceUnit":6741,"src":"127:36:26","symbolAliases":[{"foreign":{"id":6431,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"135:6:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":6433,"nodeType":"StructuredDocumentation","src":"165:67:26","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":6688,"linearizedBaseContracts":[6688],"name":"Address","nameLocation":"241:7:26","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6434,"nodeType":"StructuredDocumentation","src":"255:75:26","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":6438,"name":"AddressEmptyCode","nameLocation":"341:16:26","nodeType":"ErrorDefinition","parameters":{"id":6437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6436,"mutability":"mutable","name":"target","nameLocation":"366:6:26","nodeType":"VariableDeclaration","scope":6438,"src":"358:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6435,"name":"address","nodeType":"ElementaryTypeName","src":"358:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"357:16:26"},"src":"335:39:26"},{"body":{"id":6485,"nodeType":"Block","src":"1361:294:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6448,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1383:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1375:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6446,"name":"address","nodeType":"ElementaryTypeName","src":"1375:7:26","typeDescriptions":{}}},"id":6449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1375:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1389:7:26","memberName":"balance","nodeType":"MemberAccess","src":"1375:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6451,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1399:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1375:30:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6465,"nodeType":"IfStatement","src":"1371:125:26","trueBody":{"id":6464,"nodeType":"Block","src":"1407:89:26","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6458,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1463:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1455:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6456,"name":"address","nodeType":"ElementaryTypeName","src":"1455:7:26","typeDescriptions":{}}},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1455:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:7:26","memberName":"balance","nodeType":"MemberAccess","src":"1455:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6461,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1478:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6453,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"1428:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:19:26","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":6728,"src":"1428:26:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:57:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6463,"nodeType":"RevertStatement","src":"1421:64:26"}]}},{"assignments":[6467,6469],"declarations":[{"constant":false,"id":6467,"mutability":"mutable","name":"success","nameLocation":"1512:7:26","nodeType":"VariableDeclaration","scope":6485,"src":"1507:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6466,"name":"bool","nodeType":"ElementaryTypeName","src":"1507:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6469,"mutability":"mutable","name":"returndata","nameLocation":"1534:10:26","nodeType":"VariableDeclaration","scope":6485,"src":"1521:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6468,"name":"bytes","nodeType":"ElementaryTypeName","src":"1521:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6476,"initialValue":{"arguments":[{"hexValue":"","id":6474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1578:2:26","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":6470,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6441,"src":"1548:9:26","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1558:4:26","memberName":"call","nodeType":"MemberAccess","src":"1548:14:26","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":6473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6472,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1570:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"1548:29:26","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":6475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1548:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1506:75:26"},{"condition":{"id":6478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1595:8:26","subExpression":{"id":6477,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"1596:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6484,"nodeType":"IfStatement","src":"1591:58:26","trueBody":{"id":6483,"nodeType":"Block","src":"1605:44:26","statements":[{"expression":{"arguments":[{"id":6480,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6469,"src":"1627:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6479,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"1619:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6482,"nodeType":"ExpressionStatement","src":"1619:19:26"}]}}]},"documentation":{"id":6439,"nodeType":"StructuredDocumentation","src":"380:905:26","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":6486,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1299:9:26","nodeType":"FunctionDefinition","parameters":{"id":6444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6441,"mutability":"mutable","name":"recipient","nameLocation":"1325:9:26","nodeType":"VariableDeclaration","scope":6486,"src":"1309:25:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":6440,"name":"address","nodeType":"ElementaryTypeName","src":"1309:15:26","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":6443,"mutability":"mutable","name":"amount","nameLocation":"1344:6:26","nodeType":"VariableDeclaration","scope":6486,"src":"1336:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6442,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1308:43:26"},"returnParameters":{"id":6445,"nodeType":"ParameterList","parameters":[],"src":"1361:0:26"},"scope":6688,"src":"1290:365:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6502,"nodeType":"Block","src":"2589:62:26","statements":[{"expression":{"arguments":[{"id":6497,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"2628:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6498,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6491,"src":"2636:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":6499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2642:1:26","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":6496,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6553,"src":"2606:21:26","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":6500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2606:38:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6495,"id":6501,"nodeType":"Return","src":"2599:45:26"}]},"documentation":{"id":6487,"nodeType":"StructuredDocumentation","src":"1661:834:26","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":6503,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2509:12:26","nodeType":"FunctionDefinition","parameters":{"id":6492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6489,"mutability":"mutable","name":"target","nameLocation":"2530:6:26","nodeType":"VariableDeclaration","scope":6503,"src":"2522:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6488,"name":"address","nodeType":"ElementaryTypeName","src":"2522:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6491,"mutability":"mutable","name":"data","nameLocation":"2551:4:26","nodeType":"VariableDeclaration","scope":6503,"src":"2538:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6490,"name":"bytes","nodeType":"ElementaryTypeName","src":"2538:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2521:35:26"},"returnParameters":{"id":6495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6494,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6503,"src":"2575:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6493,"name":"bytes","nodeType":"ElementaryTypeName","src":"2575:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2574:14:26"},"scope":6688,"src":"2500:151:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6552,"nodeType":"Block","src":"3088:294:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6517,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3110:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3102:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6515,"name":"address","nodeType":"ElementaryTypeName","src":"3102:7:26","typeDescriptions":{}}},"id":6518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3102:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3116:7:26","memberName":"balance","nodeType":"MemberAccess","src":"3102:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3126:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3102:29:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6534,"nodeType":"IfStatement","src":"3098:123:26","trueBody":{"id":6533,"nodeType":"Block","src":"3133:88:26","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6527,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3189:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3181:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6525,"name":"address","nodeType":"ElementaryTypeName","src":"3181:7:26","typeDescriptions":{}}},"id":6528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3195:7:26","memberName":"balance","nodeType":"MemberAccess","src":"3181:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3204:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6522,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"3154:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3161:19:26","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":6728,"src":"3154:26:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3154:56:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6532,"nodeType":"RevertStatement","src":"3147:63:26"}]}},{"assignments":[6536,6538],"declarations":[{"constant":false,"id":6536,"mutability":"mutable","name":"success","nameLocation":"3236:7:26","nodeType":"VariableDeclaration","scope":6552,"src":"3231:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6535,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6538,"mutability":"mutable","name":"returndata","nameLocation":"3258:10:26","nodeType":"VariableDeclaration","scope":6552,"src":"3245:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6537,"name":"bytes","nodeType":"ElementaryTypeName","src":"3245:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6545,"initialValue":{"arguments":[{"id":6543,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6508,"src":"3298:4:26","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":6539,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6506,"src":"3272:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3279:4:26","memberName":"call","nodeType":"MemberAccess","src":"3272:11:26","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":6542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6541,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3291:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3272:25:26","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":6544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3230:73:26"},{"expression":{"arguments":[{"id":6547,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6506,"src":"3347:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6548,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6536,"src":"3355:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6549,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6538,"src":"3364:10:26","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":6546,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"3320:26:26","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":6550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3320:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6514,"id":6551,"nodeType":"Return","src":"3313:62:26"}]},"documentation":{"id":6504,"nodeType":"StructuredDocumentation","src":"2657:313:26","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":6553,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"2984:21:26","nodeType":"FunctionDefinition","parameters":{"id":6511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6506,"mutability":"mutable","name":"target","nameLocation":"3014:6:26","nodeType":"VariableDeclaration","scope":6553,"src":"3006:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6505,"name":"address","nodeType":"ElementaryTypeName","src":"3006:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6508,"mutability":"mutable","name":"data","nameLocation":"3035:4:26","nodeType":"VariableDeclaration","scope":6553,"src":"3022:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6507,"name":"bytes","nodeType":"ElementaryTypeName","src":"3022:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":6510,"mutability":"mutable","name":"value","nameLocation":"3049:5:26","nodeType":"VariableDeclaration","scope":6553,"src":"3041:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6509,"name":"uint256","nodeType":"ElementaryTypeName","src":"3041:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3005:50:26"},"returnParameters":{"id":6514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6513,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6553,"src":"3074:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6512,"name":"bytes","nodeType":"ElementaryTypeName","src":"3074:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3073:14:26"},"scope":6688,"src":"2975:407:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6578,"nodeType":"Block","src":"3621:154:26","statements":[{"assignments":[6564,6566],"declarations":[{"constant":false,"id":6564,"mutability":"mutable","name":"success","nameLocation":"3637:7:26","nodeType":"VariableDeclaration","scope":6578,"src":"3632:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6563,"name":"bool","nodeType":"ElementaryTypeName","src":"3632:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6566,"mutability":"mutable","name":"returndata","nameLocation":"3659:10:26","nodeType":"VariableDeclaration","scope":6578,"src":"3646:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6565,"name":"bytes","nodeType":"ElementaryTypeName","src":"3646:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6571,"initialValue":{"arguments":[{"id":6569,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6558,"src":"3691:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6567,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6556,"src":"3673:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3680:10:26","memberName":"staticcall","nodeType":"MemberAccess","src":"3673:17:26","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":6570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3673:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3631:65:26"},{"expression":{"arguments":[{"id":6573,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6556,"src":"3740:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6574,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6564,"src":"3748:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6575,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6566,"src":"3757:10:26","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":6572,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"3713:26:26","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":6576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6562,"id":6577,"nodeType":"Return","src":"3706:62:26"}]},"documentation":{"id":6554,"nodeType":"StructuredDocumentation","src":"3388:128:26","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":6579,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"3530:18:26","nodeType":"FunctionDefinition","parameters":{"id":6559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6556,"mutability":"mutable","name":"target","nameLocation":"3557:6:26","nodeType":"VariableDeclaration","scope":6579,"src":"3549:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6555,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6558,"mutability":"mutable","name":"data","nameLocation":"3578:4:26","nodeType":"VariableDeclaration","scope":6579,"src":"3565:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6557,"name":"bytes","nodeType":"ElementaryTypeName","src":"3565:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3548:35:26"},"returnParameters":{"id":6562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6579,"src":"3607:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6560,"name":"bytes","nodeType":"ElementaryTypeName","src":"3607:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3606:14:26"},"scope":6688,"src":"3521:254:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6604,"nodeType":"Block","src":"4013:156:26","statements":[{"assignments":[6590,6592],"declarations":[{"constant":false,"id":6590,"mutability":"mutable","name":"success","nameLocation":"4029:7:26","nodeType":"VariableDeclaration","scope":6604,"src":"4024:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6589,"name":"bool","nodeType":"ElementaryTypeName","src":"4024:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6592,"mutability":"mutable","name":"returndata","nameLocation":"4051:10:26","nodeType":"VariableDeclaration","scope":6604,"src":"4038:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6591,"name":"bytes","nodeType":"ElementaryTypeName","src":"4038:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6597,"initialValue":{"arguments":[{"id":6595,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6584,"src":"4085:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6593,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6582,"src":"4065:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4072:12:26","memberName":"delegatecall","nodeType":"MemberAccess","src":"4065:19:26","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":6596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4065:25:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4023:67:26"},{"expression":{"arguments":[{"id":6599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6582,"src":"4134:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6600,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"4142:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6601,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6592,"src":"4151:10:26","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":6598,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"4107:26:26","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":6602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6588,"id":6603,"nodeType":"Return","src":"4100:62:26"}]},"documentation":{"id":6580,"nodeType":"StructuredDocumentation","src":"3781:130:26","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":6605,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"3925:20:26","nodeType":"FunctionDefinition","parameters":{"id":6585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6582,"mutability":"mutable","name":"target","nameLocation":"3954:6:26","nodeType":"VariableDeclaration","scope":6605,"src":"3946:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6581,"name":"address","nodeType":"ElementaryTypeName","src":"3946:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6584,"mutability":"mutable","name":"data","nameLocation":"3975:4:26","nodeType":"VariableDeclaration","scope":6605,"src":"3962:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6583,"name":"bytes","nodeType":"ElementaryTypeName","src":"3962:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3945:35:26"},"returnParameters":{"id":6588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6587,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6605,"src":"3999:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6586,"name":"bytes","nodeType":"ElementaryTypeName","src":"3999:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3998:14:26"},"scope":6688,"src":"3916:253:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6644,"nodeType":"Block","src":"4595:424:26","statements":[{"condition":{"id":6618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4609:8:26","subExpression":{"id":6617,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6610,"src":"4610:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6642,"nodeType":"Block","src":"4669:344:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6624,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4857:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4868:6:26","memberName":"length","nodeType":"MemberAccess","src":"4857:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4878:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4857:22:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":6628,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6608,"src":"4883:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4890:4:26","memberName":"code","nodeType":"MemberAccess","src":"4883:11:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:6:26","memberName":"length","nodeType":"MemberAccess","src":"4883:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4905:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4883:23:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4857:49:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6639,"nodeType":"IfStatement","src":"4853:119:26","trueBody":{"id":6638,"nodeType":"Block","src":"4908:64:26","statements":[{"errorCall":{"arguments":[{"id":6635,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6608,"src":"4950:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6634,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6438,"src":"4933:16:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:24:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6637,"nodeType":"RevertStatement","src":"4926:31:26"}]}},{"expression":{"id":6640,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4992:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6616,"id":6641,"nodeType":"Return","src":"4985:17:26"}]},"id":6643,"nodeType":"IfStatement","src":"4605:408:26","trueBody":{"id":6623,"nodeType":"Block","src":"4619:44:26","statements":[{"expression":{"arguments":[{"id":6620,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4641:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6619,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"4633:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4633:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6622,"nodeType":"ExpressionStatement","src":"4633:19:26"}]}}]},"documentation":{"id":6606,"nodeType":"StructuredDocumentation","src":"4175:257:26","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":6645,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"4446:26:26","nodeType":"FunctionDefinition","parameters":{"id":6613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6608,"mutability":"mutable","name":"target","nameLocation":"4490:6:26","nodeType":"VariableDeclaration","scope":6645,"src":"4482:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6607,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6610,"mutability":"mutable","name":"success","nameLocation":"4511:7:26","nodeType":"VariableDeclaration","scope":6645,"src":"4506:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6609,"name":"bool","nodeType":"ElementaryTypeName","src":"4506:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6612,"mutability":"mutable","name":"returndata","nameLocation":"4541:10:26","nodeType":"VariableDeclaration","scope":6645,"src":"4528:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6611,"name":"bytes","nodeType":"ElementaryTypeName","src":"4528:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4472:85:26"},"returnParameters":{"id":6616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6645,"src":"4581:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6614,"name":"bytes","nodeType":"ElementaryTypeName","src":"4581:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4580:14:26"},"scope":6688,"src":"4437:582:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6666,"nodeType":"Block","src":"5323:122:26","statements":[{"condition":{"id":6656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5337:8:26","subExpression":{"id":6655,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6648,"src":"5338:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6664,"nodeType":"Block","src":"5397:42:26","statements":[{"expression":{"id":6662,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6650,"src":"5418:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6654,"id":6663,"nodeType":"Return","src":"5411:17:26"}]},"id":6665,"nodeType":"IfStatement","src":"5333:106:26","trueBody":{"id":6661,"nodeType":"Block","src":"5347:44:26","statements":[{"expression":{"arguments":[{"id":6658,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6650,"src":"5369:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6657,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"5361:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5361:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6660,"nodeType":"ExpressionStatement","src":"5361:19:26"}]}}]},"documentation":{"id":6646,"nodeType":"StructuredDocumentation","src":"5025:191:26","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":6667,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"5230:16:26","nodeType":"FunctionDefinition","parameters":{"id":6651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6648,"mutability":"mutable","name":"success","nameLocation":"5252:7:26","nodeType":"VariableDeclaration","scope":6667,"src":"5247:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6647,"name":"bool","nodeType":"ElementaryTypeName","src":"5247:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6650,"mutability":"mutable","name":"returndata","nameLocation":"5274:10:26","nodeType":"VariableDeclaration","scope":6667,"src":"5261:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6649,"name":"bytes","nodeType":"ElementaryTypeName","src":"5261:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5246:39:26"},"returnParameters":{"id":6654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6653,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6667,"src":"5309:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6652,"name":"bytes","nodeType":"ElementaryTypeName","src":"5309:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5308:14:26"},"scope":6688,"src":"5221:224:26","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6686,"nodeType":"Block","src":"5614:432:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6673,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"5690:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5701:6:26","memberName":"length","nodeType":"MemberAccess","src":"5690:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5710:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5690:21:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6684,"nodeType":"Block","src":"5989:51:26","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6679,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"6010:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6017:10:26","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":6731,"src":"6010:17:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":6682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6010:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6683,"nodeType":"RevertStatement","src":"6003:26:26"}]},"id":6685,"nodeType":"IfStatement","src":"5686:354:26","trueBody":{"id":6678,"nodeType":"Block","src":"5713:270:26","statements":[{"AST":{"nodeType":"YulBlock","src":"5840:133:26","statements":[{"nodeType":"YulVariableDeclaration","src":"5858:40:26","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"5887:10:26"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5881:5:26"},"nodeType":"YulFunctionCall","src":"5881:17:26"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"5862:15:26","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5926:2:26","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"5930:10:26"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5922:3:26"},"nodeType":"YulFunctionCall","src":"5922:19:26"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"5943:15:26"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5915:6:26"},"nodeType":"YulFunctionCall","src":"5915:44:26"},"nodeType":"YulExpressionStatement","src":"5915:44:26"}]},"evmVersion":"paris","externalReferences":[{"declaration":6670,"isOffset":false,"isSlot":false,"src":"5887:10:26","valueSize":1},{"declaration":6670,"isOffset":false,"isSlot":false,"src":"5930:10:26","valueSize":1}],"flags":["memory-safe"],"id":6677,"nodeType":"InlineAssembly","src":"5815:158:26"}]}}]},"documentation":{"id":6668,"nodeType":"StructuredDocumentation","src":"5451:103:26","text":" @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}."},"id":6687,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"5568:7:26","nodeType":"FunctionDefinition","parameters":{"id":6671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6670,"mutability":"mutable","name":"returndata","nameLocation":"5589:10:26","nodeType":"VariableDeclaration","scope":6687,"src":"5576:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6669,"name":"bytes","nodeType":"ElementaryTypeName","src":"5576:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5575:25:26"},"returnParameters":{"id":6672,"nodeType":"ParameterList","parameters":[],"src":"5614:0:26"},"scope":6688,"src":"5559:487:26","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":6689,"src":"233:5815:26","usedErrors":[6438],"usedEvents":[]}],"src":"101:5948:26"},"id":26},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[6718]},"id":6719,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6690,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:27"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":6691,"nodeType":"StructuredDocumentation","src":"127:496:27","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":6718,"linearizedBaseContracts":[6718],"name":"Context","nameLocation":"642:7:27","nodeType":"ContractDefinition","nodes":[{"body":{"id":6699,"nodeType":"Block","src":"718:34:27","statements":[{"expression":{"expression":{"id":6696,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:27","memberName":"sender","nodeType":"MemberAccess","src":"735:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6695,"id":6698,"nodeType":"Return","src":"728:17:27"}]},"id":6700,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:27","nodeType":"FunctionDefinition","parameters":{"id":6692,"nodeType":"ParameterList","parameters":[],"src":"675:2:27"},"returnParameters":{"id":6695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6700,"src":"709:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6693,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:27"},"scope":6718,"src":"656:96:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6708,"nodeType":"Block","src":"825:32:27","statements":[{"expression":{"expression":{"id":6705,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:27","memberName":"data","nodeType":"MemberAccess","src":"842:8:27","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":6704,"id":6707,"nodeType":"Return","src":"835:15:27"}]},"id":6709,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:27","nodeType":"FunctionDefinition","parameters":{"id":6701,"nodeType":"ParameterList","parameters":[],"src":"775:2:27"},"returnParameters":{"id":6704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6709,"src":"809:14:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6702,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:27"},"scope":6718,"src":"758:99:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6716,"nodeType":"Block","src":"935:25:27","statements":[{"expression":{"hexValue":"30","id":6714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6713,"id":6715,"nodeType":"Return","src":"945:8:27"}]},"id":6717,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:27","nodeType":"FunctionDefinition","parameters":{"id":6710,"nodeType":"ParameterList","parameters":[],"src":"892:2:27"},"returnParameters":{"id":6713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6717,"src":"926:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6711,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:27"},"scope":6718,"src":"863:97:27","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":6719,"src":"624:338:27","usedErrors":[],"usedEvents":[]}],"src":"101:862:27"},"id":27},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[6740]},"id":6741,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6720,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:28"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":6721,"nodeType":"StructuredDocumentation","src":"126:284:28","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":6740,"linearizedBaseContracts":[6740],"name":"Errors","nameLocation":"419:6:28","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6722,"nodeType":"StructuredDocumentation","src":"432:94:28","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":6728,"name":"InsufficientBalance","nameLocation":"537:19:28","nodeType":"ErrorDefinition","parameters":{"id":6727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6724,"mutability":"mutable","name":"balance","nameLocation":"565:7:28","nodeType":"VariableDeclaration","scope":6728,"src":"557:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6723,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6726,"mutability":"mutable","name":"needed","nameLocation":"582:6:28","nodeType":"VariableDeclaration","scope":6728,"src":"574:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6725,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:28"},"src":"531:59:28"},{"documentation":{"id":6729,"nodeType":"StructuredDocumentation","src":"596:89:28","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":6731,"name":"FailedCall","nameLocation":"696:10:28","nodeType":"ErrorDefinition","parameters":{"id":6730,"nodeType":"ParameterList","parameters":[],"src":"706:2:28"},"src":"690:19:28"},{"documentation":{"id":6732,"nodeType":"StructuredDocumentation","src":"715:46:28","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":6734,"name":"FailedDeployment","nameLocation":"772:16:28","nodeType":"ErrorDefinition","parameters":{"id":6733,"nodeType":"ParameterList","parameters":[],"src":"788:2:28"},"src":"766:25:28"},{"documentation":{"id":6735,"nodeType":"StructuredDocumentation","src":"797:58:28","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":6739,"name":"MissingPrecompile","nameLocation":"866:17:28","nodeType":"ErrorDefinition","parameters":{"id":6738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6739,"src":"884:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6736,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:28"},"src":"860:33:28"}],"scope":6741,"src":"411:484:28","usedErrors":[6728,6731,6734,6739],"usedEvents":[]}],"src":"100:796:28"},"id":28},"@openzeppelin/contracts/utils/Nonces.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","exportedSymbols":{"Nonces":[6808]},"id":6809,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6742,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:29"},{"abstract":true,"baseContracts":[],"canonicalName":"Nonces","contractDependencies":[],"contractKind":"contract","documentation":{"id":6743,"nodeType":"StructuredDocumentation","src":"125:83:29","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":6808,"linearizedBaseContracts":[6808],"name":"Nonces","nameLocation":"227:6:29","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6744,"nodeType":"StructuredDocumentation","src":"240:90:29","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":6750,"name":"InvalidAccountNonce","nameLocation":"341:19:29","nodeType":"ErrorDefinition","parameters":{"id":6749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6746,"mutability":"mutable","name":"account","nameLocation":"369:7:29","nodeType":"VariableDeclaration","scope":6750,"src":"361:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6745,"name":"address","nodeType":"ElementaryTypeName","src":"361:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6748,"mutability":"mutable","name":"currentNonce","nameLocation":"386:12:29","nodeType":"VariableDeclaration","scope":6750,"src":"378:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6747,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"360:39:29"},"src":"335:65:29"},{"constant":false,"id":6754,"mutability":"mutable","name":"_nonces","nameLocation":"450:7:29","nodeType":"VariableDeclaration","scope":6808,"src":"406:51:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":6753,"keyName":"account","keyNameLocation":"422:7:29","keyType":{"id":6751,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"406:35:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":6752,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"body":{"id":6766,"nodeType":"Block","src":"607:38:29","statements":[{"expression":{"baseExpression":{"id":6762,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"624:7:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6764,"indexExpression":{"id":6763,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6757,"src":"632:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"624:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6761,"id":6765,"nodeType":"Return","src":"617:21:29"}]},"documentation":{"id":6755,"nodeType":"StructuredDocumentation","src":"464:69:29","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":6767,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"547:6:29","nodeType":"FunctionDefinition","parameters":{"id":6758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6757,"mutability":"mutable","name":"owner","nameLocation":"562:5:29","nodeType":"VariableDeclaration","scope":6767,"src":"554:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6756,"name":"address","nodeType":"ElementaryTypeName","src":"554:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"553:15:29"},"returnParameters":{"id":6761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6767,"src":"598:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6759,"name":"uint256","nodeType":"ElementaryTypeName","src":"598:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"597:9:29"},"scope":6808,"src":"538:107:29","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6781,"nodeType":"Block","src":"828:326:29","statements":[{"id":6780,"nodeType":"UncheckedBlock","src":"1031:117:29","statements":[{"expression":{"id":6778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1121:16:29","subExpression":{"baseExpression":{"id":6775,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"1121:7:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6777,"indexExpression":{"id":6776,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6770,"src":"1129:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1121:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6774,"id":6779,"nodeType":"Return","src":"1114:23:29"}]}]},"documentation":{"id":6768,"nodeType":"StructuredDocumentation","src":"651:103:29","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":6782,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"768:9:29","nodeType":"FunctionDefinition","parameters":{"id":6771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6770,"mutability":"mutable","name":"owner","nameLocation":"786:5:29","nodeType":"VariableDeclaration","scope":6782,"src":"778:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6769,"name":"address","nodeType":"ElementaryTypeName","src":"778:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"777:15:29"},"returnParameters":{"id":6774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6782,"src":"819:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6772,"name":"uint256","nodeType":"ElementaryTypeName","src":"819:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:9:29"},"scope":6808,"src":"759:395:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6806,"nodeType":"Block","src":"1338:149:29","statements":[{"assignments":[6791],"declarations":[{"constant":false,"id":6791,"mutability":"mutable","name":"current","nameLocation":"1356:7:29","nodeType":"VariableDeclaration","scope":6806,"src":"1348:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6790,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6795,"initialValue":{"arguments":[{"id":6793,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6785,"src":"1376:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6792,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"1366:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":6794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1348:34:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6796,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6787,"src":"1396:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6797,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6791,"src":"1405:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1396:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6805,"nodeType":"IfStatement","src":"1392:89:29","trueBody":{"id":6804,"nodeType":"Block","src":"1414:67:29","statements":[{"errorCall":{"arguments":[{"id":6800,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6785,"src":"1455:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6801,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6791,"src":"1462:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6799,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6750,"src":"1435:19:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) pure"}},"id":6802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1435:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6803,"nodeType":"RevertStatement","src":"1428:42:29"}]}}]},"documentation":{"id":6783,"nodeType":"StructuredDocumentation","src":"1160:100:29","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":6807,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"1274:16:29","nodeType":"FunctionDefinition","parameters":{"id":6788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6785,"mutability":"mutable","name":"owner","nameLocation":"1299:5:29","nodeType":"VariableDeclaration","scope":6807,"src":"1291:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6784,"name":"address","nodeType":"ElementaryTypeName","src":"1291:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6787,"mutability":"mutable","name":"nonce","nameLocation":"1314:5:29","nodeType":"VariableDeclaration","scope":6807,"src":"1306:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6786,"name":"uint256","nodeType":"ElementaryTypeName","src":"1306:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1290:30:29"},"returnParameters":{"id":6789,"nodeType":"ParameterList","parameters":[],"src":"1338:0:29"},"scope":6808,"src":"1265:222:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":6809,"src":"209:1280:29","usedErrors":[6750],"usedEvents":[]}],"src":"99:1391:29"},"id":29},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[6860]},"id":6861,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6810,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:30"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":6811,"nodeType":"StructuredDocumentation","src":"125:489:30","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":6860,"linearizedBaseContracts":[6860],"name":"Panic","nameLocation":"665:5:30","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":6812,"nodeType":"StructuredDocumentation","src":"677:36:30","text":"@dev generic / unspecified error"},"id":6815,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:30","nodeType":"VariableDeclaration","scope":6860,"src":"718:40:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6813,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":6814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":6816,"nodeType":"StructuredDocumentation","src":"764:37:30","text":"@dev used by the assert() builtin"},"id":6819,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:30","nodeType":"VariableDeclaration","scope":6860,"src":"806:39:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6817,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":6818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":6820,"nodeType":"StructuredDocumentation","src":"851:41:30","text":"@dev arithmetic underflow or overflow"},"id":6823,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:30","nodeType":"VariableDeclaration","scope":6860,"src":"897:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6821,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":6822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:30","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":6824,"nodeType":"StructuredDocumentation","src":"950:35:30","text":"@dev division or modulo by zero"},"id":6827,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:30","nodeType":"VariableDeclaration","scope":6860,"src":"990:49:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6825,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":6826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:30","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":6828,"nodeType":"StructuredDocumentation","src":"1045:30:30","text":"@dev enum conversion error"},"id":6831,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:30","nodeType":"VariableDeclaration","scope":6860,"src":"1080:54:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6829,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":6830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:30","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":6832,"nodeType":"StructuredDocumentation","src":"1140:36:30","text":"@dev invalid encoding in storage"},"id":6835,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:30","nodeType":"VariableDeclaration","scope":6860,"src":"1181:55:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6833,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":6834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:30","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":6836,"nodeType":"StructuredDocumentation","src":"1242:24:30","text":"@dev empty array pop"},"id":6839,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:30","nodeType":"VariableDeclaration","scope":6860,"src":"1271:48:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6837,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":6838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:30","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":6840,"nodeType":"StructuredDocumentation","src":"1325:35:30","text":"@dev array out of bounds access"},"id":6843,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:30","nodeType":"VariableDeclaration","scope":6860,"src":"1365:52:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6841,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":6842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:30","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":6844,"nodeType":"StructuredDocumentation","src":"1423:65:30","text":"@dev resource error (too large allocation or too large array)"},"id":6847,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:30","nodeType":"VariableDeclaration","scope":6860,"src":"1493:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6845,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":6846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:30","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":6848,"nodeType":"StructuredDocumentation","src":"1546:42:30","text":"@dev calling invalid internal function"},"id":6851,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:30","nodeType":"VariableDeclaration","scope":6860,"src":"1593:58:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6849,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":6850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:30","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":6858,"nodeType":"Block","src":"1819:151:30","statements":[{"AST":{"nodeType":"YulBlock","src":"1854:110:30","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1875:4:30","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1881:10:30","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1868:6:30"},"nodeType":"YulFunctionCall","src":"1868:24:30"},"nodeType":"YulExpressionStatement","src":"1868:24:30"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1912:4:30","type":"","value":"0x20"},{"name":"code","nodeType":"YulIdentifier","src":"1918:4:30"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1905:6:30"},"nodeType":"YulFunctionCall","src":"1905:18:30"},"nodeType":"YulExpressionStatement","src":"1905:18:30"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1943:4:30","type":"","value":"0x1c"},{"kind":"number","nodeType":"YulLiteral","src":"1949:4:30","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1936:6:30"},"nodeType":"YulFunctionCall","src":"1936:18:30"},"nodeType":"YulExpressionStatement","src":"1936:18:30"}]},"evmVersion":"paris","externalReferences":[{"declaration":6854,"isOffset":false,"isSlot":false,"src":"1918:4:30","valueSize":1}],"flags":["memory-safe"],"id":6857,"nodeType":"InlineAssembly","src":"1829:135:30"}]},"documentation":{"id":6852,"nodeType":"StructuredDocumentation","src":"1658:113:30","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":6859,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:30","nodeType":"FunctionDefinition","parameters":{"id":6855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6854,"mutability":"mutable","name":"code","nameLocation":"1799:4:30","nodeType":"VariableDeclaration","scope":6859,"src":"1791:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6853,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:30"},"returnParameters":{"id":6856,"nodeType":"ParameterList","parameters":[],"src":"1819:0:30"},"scope":6860,"src":"1776:194:30","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":6861,"src":"657:1315:30","usedErrors":[],"usedEvents":[]}],"src":"99:1874:30"},"id":30},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","exportedSymbols":{"ShortString":[6866],"ShortStrings":[7077],"StorageSlot":[7201]},"id":7078,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6862,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:31"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":6864,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7078,"sourceUnit":7202,"src":"132:46:31","symbolAliases":[{"foreign":{"id":6863,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"140:11:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"canonicalName":"ShortString","id":6866,"name":"ShortString","nameLocation":"353:11:31","nodeType":"UserDefinedValueTypeDefinition","src":"348:28:31","underlyingType":{"id":6865,"name":"bytes32","nodeType":"ElementaryTypeName","src":"368:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"abstract":false,"baseContracts":[],"canonicalName":"ShortStrings","contractDependencies":[],"contractKind":"library","documentation":{"id":6867,"nodeType":"StructuredDocumentation","src":"378:876:31","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":7077,"linearizedBaseContracts":[7077],"name":"ShortStrings","nameLocation":"1263:12:31","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":6870,"mutability":"constant","name":"FALLBACK_SENTINEL","nameLocation":"1370:17:31","nodeType":"VariableDeclaration","scope":7077,"src":"1345:111:31","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6868,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1345:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030304646","id":6869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:66:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0x00000000000000000000000000000000000000000000000000000000000000FF"},"visibility":"private"},{"errorSelector":"305a27a9","id":6874,"name":"StringTooLong","nameLocation":"1469:13:31","nodeType":"ErrorDefinition","parameters":{"id":6873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6872,"mutability":"mutable","name":"str","nameLocation":"1490:3:31","nodeType":"VariableDeclaration","scope":6874,"src":"1483:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6871,"name":"string","nodeType":"ElementaryTypeName","src":"1483:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1482:12:31"},"src":"1463:32:31"},{"errorSelector":"b3512b0c","id":6876,"name":"InvalidShortString","nameLocation":"1506:18:31","nodeType":"ErrorDefinition","parameters":{"id":6875,"nodeType":"ParameterList","parameters":[],"src":"1524:2:31"},"src":"1500:27:31"},{"body":{"id":6919,"nodeType":"Block","src":"1786:208:31","statements":[{"assignments":[6886],"declarations":[{"constant":false,"id":6886,"mutability":"mutable","name":"bstr","nameLocation":"1809:4:31","nodeType":"VariableDeclaration","scope":6919,"src":"1796:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6885,"name":"bytes","nodeType":"ElementaryTypeName","src":"1796:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6891,"initialValue":{"arguments":[{"id":6889,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"1822:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":6887,"name":"bytes","nodeType":"ElementaryTypeName","src":"1816:5:31","typeDescriptions":{}}},"id":6890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:10:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1796:30:31"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6892,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1840:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1845:6:31","memberName":"length","nodeType":"MemberAccess","src":"1840:11:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":6894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1854:2:31","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"1840:16:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6901,"nodeType":"IfStatement","src":"1836:72:31","trueBody":{"id":6900,"nodeType":"Block","src":"1858:50:31","statements":[{"errorCall":{"arguments":[{"id":6897,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"1893:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6896,"name":"StringTooLong","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6874,"src":"1879:13:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":6898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1879:18:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6899,"nodeType":"RevertStatement","src":"1872:25:31"}]}},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":6910,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1965:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1957:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":6908,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1957:7:31","typeDescriptions":{}}},"id":6911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1957:13:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6906,"name":"uint256","nodeType":"ElementaryTypeName","src":"1949:7:31","typeDescriptions":{}}},"id":6912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:22:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":6913,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1974:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1979:6:31","memberName":"length","nodeType":"MemberAccess","src":"1974:11:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1949:36:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1941:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":6904,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1941:7:31","typeDescriptions":{}}},"id":6916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1941:45:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6902,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"1924:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":6903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1936:4:31","memberName":"wrap","nodeType":"MemberAccess","src":"1924:16:31","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":6917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1924:63:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6884,"id":6918,"nodeType":"Return","src":"1917:70:31"}]},"documentation":{"id":6877,"nodeType":"StructuredDocumentation","src":"1533:170:31","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":6920,"implemented":true,"kind":"function","modifiers":[],"name":"toShortString","nameLocation":"1717:13:31","nodeType":"FunctionDefinition","parameters":{"id":6880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6879,"mutability":"mutable","name":"str","nameLocation":"1745:3:31","nodeType":"VariableDeclaration","scope":6920,"src":"1731:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6878,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1730:19:31"},"returnParameters":{"id":6884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6920,"src":"1773:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6882,"nodeType":"UserDefinedTypeName","pathNode":{"id":6881,"name":"ShortString","nameLocations":["1773:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"1773:11:31"},"referencedDeclaration":6866,"src":"1773:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"1772:13:31"},"scope":7077,"src":"1708:286:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6945,"nodeType":"Block","src":"2152:304:31","statements":[{"assignments":[6930],"declarations":[{"constant":false,"id":6930,"mutability":"mutable","name":"len","nameLocation":"2170:3:31","nodeType":"VariableDeclaration","scope":6945,"src":"2162:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6929,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6934,"initialValue":{"arguments":[{"id":6932,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6924,"src":"2187:4:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":6931,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6978,"src":"2176:10:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":6933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2176:16:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2162:30:31"},{"assignments":[6936],"declarations":[{"constant":false,"id":6936,"mutability":"mutable","name":"str","nameLocation":"2294:3:31","nodeType":"VariableDeclaration","scope":6945,"src":"2280:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6935,"name":"string","nodeType":"ElementaryTypeName","src":"2280:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":6941,"initialValue":{"arguments":[{"hexValue":"3332","id":6939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2311:2:31","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":6938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2300:10:31","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":6937,"name":"string","nodeType":"ElementaryTypeName","src":"2304:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":6940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2300:14:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2280:34:31"},{"AST":{"nodeType":"YulBlock","src":"2349:81:31","statements":[{"expression":{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2370:3:31"},{"name":"len","nodeType":"YulIdentifier","src":"2375:3:31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2363:6:31"},"nodeType":"YulFunctionCall","src":"2363:16:31"},"nodeType":"YulExpressionStatement","src":"2363:16:31"},{"expression":{"arguments":[{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2403:3:31"},{"kind":"number","nodeType":"YulLiteral","src":"2408:4:31","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2399:3:31"},"nodeType":"YulFunctionCall","src":"2399:14:31"},{"name":"sstr","nodeType":"YulIdentifier","src":"2415:4:31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2392:6:31"},"nodeType":"YulFunctionCall","src":"2392:28:31"},"nodeType":"YulExpressionStatement","src":"2392:28:31"}]},"evmVersion":"paris","externalReferences":[{"declaration":6930,"isOffset":false,"isSlot":false,"src":"2375:3:31","valueSize":1},{"declaration":6924,"isOffset":false,"isSlot":false,"src":"2415:4:31","valueSize":1},{"declaration":6936,"isOffset":false,"isSlot":false,"src":"2370:3:31","valueSize":1},{"declaration":6936,"isOffset":false,"isSlot":false,"src":"2403:3:31","valueSize":1}],"flags":["memory-safe"],"id":6942,"nodeType":"InlineAssembly","src":"2324:106:31"},{"expression":{"id":6943,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6936,"src":"2446:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":6928,"id":6944,"nodeType":"Return","src":"2439:10:31"}]},"documentation":{"id":6921,"nodeType":"StructuredDocumentation","src":"2000:73:31","text":" @dev Decode a `ShortString` back to a \"normal\" string."},"id":6946,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"2087:8:31","nodeType":"FunctionDefinition","parameters":{"id":6925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6924,"mutability":"mutable","name":"sstr","nameLocation":"2108:4:31","nodeType":"VariableDeclaration","scope":6946,"src":"2096:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6923,"nodeType":"UserDefinedTypeName","pathNode":{"id":6922,"name":"ShortString","nameLocations":["2096:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2096:11:31"},"referencedDeclaration":6866,"src":"2096:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2095:18:31"},"returnParameters":{"id":6928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6927,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6946,"src":"2137:13:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6926,"name":"string","nodeType":"ElementaryTypeName","src":"2137:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2136:15:31"},"scope":7077,"src":"2078:378:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6977,"nodeType":"Block","src":"2598:175:31","statements":[{"assignments":[6956],"declarations":[{"constant":false,"id":6956,"mutability":"mutable","name":"result","nameLocation":"2616:6:31","nodeType":"VariableDeclaration","scope":6977,"src":"2608:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6955,"name":"uint256","nodeType":"ElementaryTypeName","src":"2608:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6966,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":6961,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6950,"src":"2652:4:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":6959,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"2633:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":6960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2645:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"2633:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":6962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2633:24:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2625:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6957,"name":"uint256","nodeType":"ElementaryTypeName","src":"2625:7:31","typeDescriptions":{}}},"id":6963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2625:33:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646","id":6964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2661:4:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xFF"},"src":"2625:40:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2608:57:31"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6967,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6956,"src":"2679:6:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":6968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2688:2:31","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"2679:11:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6974,"nodeType":"IfStatement","src":"2675:69:31","trueBody":{"id":6973,"nodeType":"Block","src":"2692:52:31","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":6970,"name":"InvalidShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6876,"src":"2713:18:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":6971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2713:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6972,"nodeType":"RevertStatement","src":"2706:27:31"}]}},{"expression":{"id":6975,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6956,"src":"2760:6:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6954,"id":6976,"nodeType":"Return","src":"2753:13:31"}]},"documentation":{"id":6947,"nodeType":"StructuredDocumentation","src":"2462:61:31","text":" @dev Return the length of a `ShortString`."},"id":6978,"implemented":true,"kind":"function","modifiers":[],"name":"byteLength","nameLocation":"2537:10:31","nodeType":"FunctionDefinition","parameters":{"id":6951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6950,"mutability":"mutable","name":"sstr","nameLocation":"2560:4:31","nodeType":"VariableDeclaration","scope":6978,"src":"2548:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6949,"nodeType":"UserDefinedTypeName","pathNode":{"id":6948,"name":"ShortString","nameLocations":["2548:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2548:11:31"},"referencedDeclaration":6866,"src":"2548:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2547:18:31"},"returnParameters":{"id":6954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6953,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6978,"src":"2589:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6952,"name":"uint256","nodeType":"ElementaryTypeName","src":"2589:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2588:9:31"},"scope":7077,"src":"2528:245:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7017,"nodeType":"Block","src":"2996:231:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3016:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3010:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":6989,"name":"bytes","nodeType":"ElementaryTypeName","src":"3010:5:31","typeDescriptions":{}}},"id":6992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3010:12:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3023:6:31","memberName":"length","nodeType":"MemberAccess","src":"3010:19:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":6994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:2:31","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"3010:24:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7015,"nodeType":"Block","src":"3094:127:31","statements":[{"expression":{"id":7008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":7004,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6983,"src":"3134:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"expression":{"id":7001,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"3108:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$7201_$","typeString":"type(library StorageSlot)"}},"id":7003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3120:13:31","memberName":"getStringSlot","nodeType":"MemberAccess","referencedDeclaration":7178,"src":"3108:25:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_storage_ptr_$returns$_t_struct$_StringSlot_$7098_storage_ptr_$","typeString":"function (string storage pointer) pure returns (struct StorageSlot.StringSlot storage pointer)"}},"id":7005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3108:32:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot storage pointer"}},"id":7006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3141:5:31","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":7097,"src":"3108:38:31","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7007,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3149:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3108:46:31","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":7009,"nodeType":"ExpressionStatement","src":"3108:46:31"},{"expression":{"arguments":[{"id":7012,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3192:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":7010,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"3175:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3187:4:31","memberName":"wrap","nodeType":"MemberAccess","src":"3175:16:31","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":7013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3175:35:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6988,"id":7014,"nodeType":"Return","src":"3168:42:31"}]},"id":7016,"nodeType":"IfStatement","src":"3006:215:31","trueBody":{"id":7000,"nodeType":"Block","src":"3036:52:31","statements":[{"expression":{"arguments":[{"id":6997,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3071:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6996,"name":"toShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6920,"src":"3057:13:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (string memory) pure returns (ShortString)"}},"id":6998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3057:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6988,"id":6999,"nodeType":"Return","src":"3050:27:31"}]}}]},"documentation":{"id":6979,"nodeType":"StructuredDocumentation","src":"2779:103:31","text":" @dev Encode a string into a `ShortString`, or write it to storage if it is too long."},"id":7018,"implemented":true,"kind":"function","modifiers":[],"name":"toShortStringWithFallback","nameLocation":"2896:25:31","nodeType":"FunctionDefinition","parameters":{"id":6984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6981,"mutability":"mutable","name":"value","nameLocation":"2936:5:31","nodeType":"VariableDeclaration","scope":7018,"src":"2922:19:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6980,"name":"string","nodeType":"ElementaryTypeName","src":"2922:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6983,"mutability":"mutable","name":"store","nameLocation":"2958:5:31","nodeType":"VariableDeclaration","scope":7018,"src":"2943:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":6982,"name":"string","nodeType":"ElementaryTypeName","src":"2943:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2921:43:31"},"returnParameters":{"id":6988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7018,"src":"2983:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6986,"nodeType":"UserDefinedTypeName","pathNode":{"id":6985,"name":"ShortString","nameLocations":["2983:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2983:11:31"},"referencedDeclaration":6866,"src":"2983:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2982:13:31"},"scope":7077,"src":"2887:340:31","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7044,"nodeType":"Block","src":"3467:158:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7031,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"3500:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":7029,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"3481:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3493:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"3481:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3481:25:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7033,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3510:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3481:46:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7042,"nodeType":"Block","src":"3582:37:31","statements":[{"expression":{"id":7040,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7024,"src":"3603:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}},"functionReturnParameters":7028,"id":7041,"nodeType":"Return","src":"3596:12:31"}]},"id":7043,"nodeType":"IfStatement","src":"3477:142:31","trueBody":{"id":7039,"nodeType":"Block","src":"3529:47:31","statements":[{"expression":{"arguments":[{"id":7036,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"3559:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":7035,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6946,"src":"3550:8:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_string_memory_ptr_$","typeString":"function (ShortString) pure returns (string memory)"}},"id":7037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3550:15:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7028,"id":7038,"nodeType":"Return","src":"3543:22:31"}]}}]},"documentation":{"id":7019,"nodeType":"StructuredDocumentation","src":"3233:120:31","text":" @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}."},"id":7045,"implemented":true,"kind":"function","modifiers":[],"name":"toStringWithFallback","nameLocation":"3367:20:31","nodeType":"FunctionDefinition","parameters":{"id":7025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7022,"mutability":"mutable","name":"value","nameLocation":"3400:5:31","nodeType":"VariableDeclaration","scope":7045,"src":"3388:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":7021,"nodeType":"UserDefinedTypeName","pathNode":{"id":7020,"name":"ShortString","nameLocations":["3388:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"3388:11:31"},"referencedDeclaration":6866,"src":"3388:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7024,"mutability":"mutable","name":"store","nameLocation":"3422:5:31","nodeType":"VariableDeclaration","scope":7045,"src":"3407:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7023,"name":"string","nodeType":"ElementaryTypeName","src":"3407:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3387:41:31"},"returnParameters":{"id":7028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7045,"src":"3452:13:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7026,"name":"string","nodeType":"ElementaryTypeName","src":"3452:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3451:15:31"},"scope":7077,"src":"3358:267:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7075,"nodeType":"Block","src":"4105:174:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7058,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7049,"src":"4138:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":7056,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"4119:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4131:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"4119:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4119:25:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7060,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"4148:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4119:46:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7073,"nodeType":"Block","src":"4222:51:31","statements":[{"expression":{"expression":{"arguments":[{"id":7069,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7051,"src":"4249:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"id":7068,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4243:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7067,"name":"bytes","nodeType":"ElementaryTypeName","src":"4243:5:31","typeDescriptions":{}}},"id":7070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4243:12:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":7071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4256:6:31","memberName":"length","nodeType":"MemberAccess","src":"4243:19:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7055,"id":7072,"nodeType":"Return","src":"4236:26:31"}]},"id":7074,"nodeType":"IfStatement","src":"4115:158:31","trueBody":{"id":7066,"nodeType":"Block","src":"4167:49:31","statements":[{"expression":{"arguments":[{"id":7063,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7049,"src":"4199:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":7062,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6978,"src":"4188:10:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":7064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4188:17:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7055,"id":7065,"nodeType":"Return","src":"4181:24:31"}]}}]},"documentation":{"id":7046,"nodeType":"StructuredDocumentation","src":"3631:364:31","text":" @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n {setWithFallback}.\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":7076,"implemented":true,"kind":"function","modifiers":[],"name":"byteLengthWithFallback","nameLocation":"4009:22:31","nodeType":"FunctionDefinition","parameters":{"id":7052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7049,"mutability":"mutable","name":"value","nameLocation":"4044:5:31","nodeType":"VariableDeclaration","scope":7076,"src":"4032:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":7048,"nodeType":"UserDefinedTypeName","pathNode":{"id":7047,"name":"ShortString","nameLocations":["4032:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"4032:11:31"},"referencedDeclaration":6866,"src":"4032:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7051,"mutability":"mutable","name":"store","nameLocation":"4066:5:31","nodeType":"VariableDeclaration","scope":7076,"src":"4051:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7050,"name":"string","nodeType":"ElementaryTypeName","src":"4051:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4031:41:31"},"returnParameters":{"id":7055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7054,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7076,"src":"4096:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7053,"name":"uint256","nodeType":"ElementaryTypeName","src":"4096:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4095:9:31"},"scope":7077,"src":"4000:279:31","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7078,"src":"1255:3026:31","usedErrors":[6874,6876],"usedEvents":[]}],"src":"106:4176:31"},"id":31},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[7201]},"id":7202,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7079,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:32"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":7080,"nodeType":"StructuredDocumentation","src":"219:1187:32","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":7201,"linearizedBaseContracts":[7201],"name":"StorageSlot","nameLocation":"1415:11:32","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":7083,"members":[{"constant":false,"id":7082,"mutability":"mutable","name":"value","nameLocation":"1470:5:32","nodeType":"VariableDeclaration","scope":7083,"src":"1462:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7081,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:32","nodeType":"StructDefinition","scope":7201,"src":"1433:49:32","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":7086,"members":[{"constant":false,"id":7085,"mutability":"mutable","name":"value","nameLocation":"1522:5:32","nodeType":"VariableDeclaration","scope":7086,"src":"1517:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7084,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:32","nodeType":"StructDefinition","scope":7201,"src":"1488:46:32","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":7089,"members":[{"constant":false,"id":7088,"mutability":"mutable","name":"value","nameLocation":"1577:5:32","nodeType":"VariableDeclaration","scope":7089,"src":"1569:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7087,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:32","nodeType":"StructDefinition","scope":7201,"src":"1540:49:32","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":7092,"members":[{"constant":false,"id":7091,"mutability":"mutable","name":"value","nameLocation":"1632:5:32","nodeType":"VariableDeclaration","scope":7092,"src":"1624:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7090,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:32","nodeType":"StructDefinition","scope":7201,"src":"1595:49:32","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":7095,"members":[{"constant":false,"id":7094,"mutability":"mutable","name":"value","nameLocation":"1685:5:32","nodeType":"VariableDeclaration","scope":7095,"src":"1678:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7093,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:32","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:32","nodeType":"StructDefinition","scope":7201,"src":"1650:47:32","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":7098,"members":[{"constant":false,"id":7097,"mutability":"mutable","name":"value","nameLocation":"1738:5:32","nodeType":"VariableDeclaration","scope":7098,"src":"1731:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7096,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:32","nodeType":"StructDefinition","scope":7201,"src":"1703:47:32","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":7101,"members":[{"constant":false,"id":7100,"mutability":"mutable","name":"value","nameLocation":"1789:5:32","nodeType":"VariableDeclaration","scope":7101,"src":"1783:11:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7099,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:32","nodeType":"StructDefinition","scope":7201,"src":"1756:45:32","visibility":"public"},{"body":{"id":7111,"nodeType":"Block","src":"1983:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2018:38:32","statements":[{"nodeType":"YulAssignment","src":"2032:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2042:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2032:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7108,"isOffset":false,"isSlot":true,"src":"2032:6:32","suffix":"slot","valueSize":1},{"declaration":7104,"isOffset":false,"isSlot":false,"src":"2042:4:32","valueSize":1}],"flags":["memory-safe"],"id":7110,"nodeType":"InlineAssembly","src":"1993:63:32"}]},"documentation":{"id":7102,"nodeType":"StructuredDocumentation","src":"1807:87:32","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":7112,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:32","nodeType":"FunctionDefinition","parameters":{"id":7105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7104,"mutability":"mutable","name":"slot","nameLocation":"1931:4:32","nodeType":"VariableDeclaration","scope":7112,"src":"1923:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7103,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:32"},"returnParameters":{"id":7109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7108,"mutability":"mutable","name":"r","nameLocation":"1980:1:32","nodeType":"VariableDeclaration","scope":7112,"src":"1960:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7083_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":7107,"nodeType":"UserDefinedTypeName","pathNode":{"id":7106,"name":"AddressSlot","nameLocations":["1960:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7083,"src":"1960:11:32"},"referencedDeclaration":7083,"src":"1960:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7083_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:32"},"scope":7201,"src":"1899:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7122,"nodeType":"Block","src":"2243:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2278:38:32","statements":[{"nodeType":"YulAssignment","src":"2292:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2302:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2292:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7119,"isOffset":false,"isSlot":true,"src":"2292:6:32","suffix":"slot","valueSize":1},{"declaration":7115,"isOffset":false,"isSlot":false,"src":"2302:4:32","valueSize":1}],"flags":["memory-safe"],"id":7121,"nodeType":"InlineAssembly","src":"2253:63:32"}]},"documentation":{"id":7113,"nodeType":"StructuredDocumentation","src":"2068:86:32","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":7123,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:32","nodeType":"FunctionDefinition","parameters":{"id":7116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7115,"mutability":"mutable","name":"slot","nameLocation":"2191:4:32","nodeType":"VariableDeclaration","scope":7123,"src":"2183:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7114,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:32"},"returnParameters":{"id":7120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7119,"mutability":"mutable","name":"r","nameLocation":"2240:1:32","nodeType":"VariableDeclaration","scope":7123,"src":"2220:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7086_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":7118,"nodeType":"UserDefinedTypeName","pathNode":{"id":7117,"name":"BooleanSlot","nameLocations":["2220:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7086,"src":"2220:11:32"},"referencedDeclaration":7086,"src":"2220:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7086_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:32"},"scope":7201,"src":"2159:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7133,"nodeType":"Block","src":"2503:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2538:38:32","statements":[{"nodeType":"YulAssignment","src":"2552:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2562:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2552:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7130,"isOffset":false,"isSlot":true,"src":"2552:6:32","suffix":"slot","valueSize":1},{"declaration":7126,"isOffset":false,"isSlot":false,"src":"2562:4:32","valueSize":1}],"flags":["memory-safe"],"id":7132,"nodeType":"InlineAssembly","src":"2513:63:32"}]},"documentation":{"id":7124,"nodeType":"StructuredDocumentation","src":"2328:86:32","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":7134,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:32","nodeType":"FunctionDefinition","parameters":{"id":7127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7126,"mutability":"mutable","name":"slot","nameLocation":"2451:4:32","nodeType":"VariableDeclaration","scope":7134,"src":"2443:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:32"},"returnParameters":{"id":7131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7130,"mutability":"mutable","name":"r","nameLocation":"2500:1:32","nodeType":"VariableDeclaration","scope":7134,"src":"2480:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7089_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":7129,"nodeType":"UserDefinedTypeName","pathNode":{"id":7128,"name":"Bytes32Slot","nameLocations":["2480:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7089,"src":"2480:11:32"},"referencedDeclaration":7089,"src":"2480:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7089_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:32"},"scope":7201,"src":"2419:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7144,"nodeType":"Block","src":"2763:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2798:38:32","statements":[{"nodeType":"YulAssignment","src":"2812:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2822:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2812:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7141,"isOffset":false,"isSlot":true,"src":"2812:6:32","suffix":"slot","valueSize":1},{"declaration":7137,"isOffset":false,"isSlot":false,"src":"2822:4:32","valueSize":1}],"flags":["memory-safe"],"id":7143,"nodeType":"InlineAssembly","src":"2773:63:32"}]},"documentation":{"id":7135,"nodeType":"StructuredDocumentation","src":"2588:86:32","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":7145,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:32","nodeType":"FunctionDefinition","parameters":{"id":7138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7137,"mutability":"mutable","name":"slot","nameLocation":"2711:4:32","nodeType":"VariableDeclaration","scope":7145,"src":"2703:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7136,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:32"},"returnParameters":{"id":7142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7141,"mutability":"mutable","name":"r","nameLocation":"2760:1:32","nodeType":"VariableDeclaration","scope":7145,"src":"2740:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7092_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":7140,"nodeType":"UserDefinedTypeName","pathNode":{"id":7139,"name":"Uint256Slot","nameLocations":["2740:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7092,"src":"2740:11:32"},"referencedDeclaration":7092,"src":"2740:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7092_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:32"},"scope":7201,"src":"2679:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7155,"nodeType":"Block","src":"3020:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3055:38:32","statements":[{"nodeType":"YulAssignment","src":"3069:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3079:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3069:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7152,"isOffset":false,"isSlot":true,"src":"3069:6:32","suffix":"slot","valueSize":1},{"declaration":7148,"isOffset":false,"isSlot":false,"src":"3079:4:32","valueSize":1}],"flags":["memory-safe"],"id":7154,"nodeType":"InlineAssembly","src":"3030:63:32"}]},"documentation":{"id":7146,"nodeType":"StructuredDocumentation","src":"2848:85:32","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":7156,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:32","nodeType":"FunctionDefinition","parameters":{"id":7149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7148,"mutability":"mutable","name":"slot","nameLocation":"2969:4:32","nodeType":"VariableDeclaration","scope":7156,"src":"2961:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:32"},"returnParameters":{"id":7153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7152,"mutability":"mutable","name":"r","nameLocation":"3017:1:32","nodeType":"VariableDeclaration","scope":7156,"src":"2998:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7095_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":7151,"nodeType":"UserDefinedTypeName","pathNode":{"id":7150,"name":"Int256Slot","nameLocations":["2998:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7095,"src":"2998:10:32"},"referencedDeclaration":7095,"src":"2998:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7095_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:32"},"scope":7201,"src":"2938:161:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7166,"nodeType":"Block","src":"3277:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3312:38:32","statements":[{"nodeType":"YulAssignment","src":"3326:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3336:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3326:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7163,"isOffset":false,"isSlot":true,"src":"3326:6:32","suffix":"slot","valueSize":1},{"declaration":7159,"isOffset":false,"isSlot":false,"src":"3336:4:32","valueSize":1}],"flags":["memory-safe"],"id":7165,"nodeType":"InlineAssembly","src":"3287:63:32"}]},"documentation":{"id":7157,"nodeType":"StructuredDocumentation","src":"3105:85:32","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":7167,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:32","nodeType":"FunctionDefinition","parameters":{"id":7160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7159,"mutability":"mutable","name":"slot","nameLocation":"3226:4:32","nodeType":"VariableDeclaration","scope":7167,"src":"3218:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:32"},"returnParameters":{"id":7164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7163,"mutability":"mutable","name":"r","nameLocation":"3274:1:32","nodeType":"VariableDeclaration","scope":7167,"src":"3255:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7162,"nodeType":"UserDefinedTypeName","pathNode":{"id":7161,"name":"StringSlot","nameLocations":["3255:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7098,"src":"3255:10:32"},"referencedDeclaration":7098,"src":"3255:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:32"},"scope":7201,"src":"3195:161:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7177,"nodeType":"Block","src":"3558:85:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3593:44:32","statements":[{"nodeType":"YulAssignment","src":"3607:20:32","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"3617:10:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3607:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7174,"isOffset":false,"isSlot":true,"src":"3607:6:32","suffix":"slot","valueSize":1},{"declaration":7170,"isOffset":false,"isSlot":true,"src":"3617:10:32","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7176,"nodeType":"InlineAssembly","src":"3568:69:32"}]},"documentation":{"id":7168,"nodeType":"StructuredDocumentation","src":"3362:101:32","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":7178,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:32","nodeType":"FunctionDefinition","parameters":{"id":7171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7170,"mutability":"mutable","name":"store","nameLocation":"3506:5:32","nodeType":"VariableDeclaration","scope":7178,"src":"3491:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7169,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:32"},"returnParameters":{"id":7175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7174,"mutability":"mutable","name":"r","nameLocation":"3555:1:32","nodeType":"VariableDeclaration","scope":7178,"src":"3536:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7173,"nodeType":"UserDefinedTypeName","pathNode":{"id":7172,"name":"StringSlot","nameLocations":["3536:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7098,"src":"3536:10:32"},"referencedDeclaration":7098,"src":"3536:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:32"},"scope":7201,"src":"3468:175:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7188,"nodeType":"Block","src":"3818:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3853:38:32","statements":[{"nodeType":"YulAssignment","src":"3867:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3877:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3867:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7185,"isOffset":false,"isSlot":true,"src":"3867:6:32","suffix":"slot","valueSize":1},{"declaration":7181,"isOffset":false,"isSlot":false,"src":"3877:4:32","valueSize":1}],"flags":["memory-safe"],"id":7187,"nodeType":"InlineAssembly","src":"3828:63:32"}]},"documentation":{"id":7179,"nodeType":"StructuredDocumentation","src":"3649:84:32","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":7189,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:32","nodeType":"FunctionDefinition","parameters":{"id":7182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7181,"mutability":"mutable","name":"slot","nameLocation":"3768:4:32","nodeType":"VariableDeclaration","scope":7189,"src":"3760:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:32"},"returnParameters":{"id":7186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7185,"mutability":"mutable","name":"r","nameLocation":"3815:1:32","nodeType":"VariableDeclaration","scope":7189,"src":"3797:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7184,"nodeType":"UserDefinedTypeName","pathNode":{"id":7183,"name":"BytesSlot","nameLocations":["3797:9:32"],"nodeType":"IdentifierPath","referencedDeclaration":7101,"src":"3797:9:32"},"referencedDeclaration":7101,"src":"3797:9:32","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:32"},"scope":7201,"src":"3738:159:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7199,"nodeType":"Block","src":"4094:85:32","statements":[{"AST":{"nodeType":"YulBlock","src":"4129:44:32","statements":[{"nodeType":"YulAssignment","src":"4143:20:32","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"4153:10:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"4143:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7196,"isOffset":false,"isSlot":true,"src":"4143:6:32","suffix":"slot","valueSize":1},{"declaration":7192,"isOffset":false,"isSlot":true,"src":"4153:10:32","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7198,"nodeType":"InlineAssembly","src":"4104:69:32"}]},"documentation":{"id":7190,"nodeType":"StructuredDocumentation","src":"3903:99:32","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":7200,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:32","nodeType":"FunctionDefinition","parameters":{"id":7193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7192,"mutability":"mutable","name":"store","nameLocation":"4043:5:32","nodeType":"VariableDeclaration","scope":7200,"src":"4029:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7191,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:32"},"returnParameters":{"id":7197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7196,"mutability":"mutable","name":"r","nameLocation":"4091:1:32","nodeType":"VariableDeclaration","scope":7200,"src":"4073:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7195,"nodeType":"UserDefinedTypeName","pathNode":{"id":7194,"name":"BytesSlot","nameLocations":["4073:9:32"],"nodeType":"IdentifierPath","referencedDeclaration":7101,"src":"4073:9:32"},"referencedDeclaration":7101,"src":"4073:9:32","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:32"},"scope":7201,"src":"4007:172:32","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7202,"src":"1407:2774:32","usedErrors":[],"usedEvents":[]}],"src":"193:3989:32"},"id":32},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[10800],"SafeCast":[12565],"SignedMath":[12709],"Strings":[8401]},"id":8402,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7203,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:33"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":7205,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":10801,"src":"127:37:33","symbolAliases":[{"foreign":{"id":7204,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"135:4:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":7207,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":12566,"src":"165:45:33","symbolAliases":[{"foreign":{"id":7206,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"173:8:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":7209,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":12710,"src":"211:49:33","symbolAliases":[{"foreign":{"id":7208,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12709,"src":"219:10:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":7210,"nodeType":"StructuredDocumentation","src":"262:34:33","text":" @dev String operations."},"fullyImplemented":true,"id":8401,"linearizedBaseContracts":[8401],"name":"Strings","nameLocation":"305:7:33","nodeType":"ContractDefinition","nodes":[{"global":false,"id":7212,"libraryName":{"id":7211,"name":"SafeCast","nameLocations":["325:8:33"],"nodeType":"IdentifierPath","referencedDeclaration":12565,"src":"325:8:33"},"nodeType":"UsingForDirective","src":"319:21:33"},{"constant":true,"id":7215,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:33","nodeType":"VariableDeclaration","scope":8401,"src":"346:56:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":7213,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:33","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":7214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":7218,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:33","nodeType":"VariableDeclaration","scope":8401,"src":"408:42:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7216,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":7217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:33","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"documentation":{"id":7219,"nodeType":"StructuredDocumentation","src":"457:81:33","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":7225,"name":"StringsInsufficientHexLength","nameLocation":"549:28:33","nodeType":"ErrorDefinition","parameters":{"id":7224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7221,"mutability":"mutable","name":"value","nameLocation":"586:5:33","nodeType":"VariableDeclaration","scope":7225,"src":"578:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7220,"name":"uint256","nodeType":"ElementaryTypeName","src":"578:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7223,"mutability":"mutable","name":"length","nameLocation":"601:6:33","nodeType":"VariableDeclaration","scope":7225,"src":"593:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7222,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"577:31:33"},"src":"543:66:33"},{"documentation":{"id":7226,"nodeType":"StructuredDocumentation","src":"615:108:33","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":7228,"name":"StringsInvalidChar","nameLocation":"734:18:33","nodeType":"ErrorDefinition","parameters":{"id":7227,"nodeType":"ParameterList","parameters":[],"src":"752:2:33"},"src":"728:27:33"},{"documentation":{"id":7229,"nodeType":"StructuredDocumentation","src":"761:84:33","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":7231,"name":"StringsInvalidAddressFormat","nameLocation":"856:27:33","nodeType":"ErrorDefinition","parameters":{"id":7230,"nodeType":"ParameterList","parameters":[],"src":"883:2:33"},"src":"850:36:33"},{"body":{"id":7278,"nodeType":"Block","src":"1058:561:33","statements":[{"id":7277,"nodeType":"UncheckedBlock","src":"1068:545:33","statements":[{"assignments":[7240],"declarations":[{"constant":false,"id":7240,"mutability":"mutable","name":"length","nameLocation":"1100:6:33","nodeType":"VariableDeclaration","scope":7277,"src":"1092:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7239,"name":"uint256","nodeType":"ElementaryTypeName","src":"1092:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7247,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7243,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1120:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7241,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"1109:4:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":7242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1114:5:33","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":10572,"src":"1109:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1109:17:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1129:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1109:21:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1092:38:33"},{"assignments":[7249],"declarations":[{"constant":false,"id":7249,"mutability":"mutable","name":"buffer","nameLocation":"1158:6:33","nodeType":"VariableDeclaration","scope":7277,"src":"1144:20:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7248,"name":"string","nodeType":"ElementaryTypeName","src":"1144:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":7254,"initialValue":{"arguments":[{"id":7252,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"1178:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1167:10:33","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":7250,"name":"string","nodeType":"ElementaryTypeName","src":"1171:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":7253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1167:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1144:41:33"},{"assignments":[7256],"declarations":[{"constant":false,"id":7256,"mutability":"mutable","name":"ptr","nameLocation":"1207:3:33","nodeType":"VariableDeclaration","scope":7277,"src":"1199:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7255,"name":"uint256","nodeType":"ElementaryTypeName","src":"1199:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7257,"nodeType":"VariableDeclarationStatement","src":"1199:11:33"},{"AST":{"nodeType":"YulBlock","src":"1249:67:33","statements":[{"nodeType":"YulAssignment","src":"1267:35:33","value":{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"1278:6:33"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1290:2:33","type":"","value":"32"},{"name":"length","nodeType":"YulIdentifier","src":"1294:6:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1286:3:33"},"nodeType":"YulFunctionCall","src":"1286:15:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1274:3:33"},"nodeType":"YulFunctionCall","src":"1274:28:33"},"variableNames":[{"name":"ptr","nodeType":"YulIdentifier","src":"1267:3:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7249,"isOffset":false,"isSlot":false,"src":"1278:6:33","valueSize":1},{"declaration":7240,"isOffset":false,"isSlot":false,"src":"1294:6:33","valueSize":1},{"declaration":7256,"isOffset":false,"isSlot":false,"src":"1267:3:33","valueSize":1}],"flags":["memory-safe"],"id":7258,"nodeType":"InlineAssembly","src":"1224:92:33"},{"body":{"id":7273,"nodeType":"Block","src":"1342:234:33","statements":[{"expression":{"id":7261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1360:5:33","subExpression":{"id":7260,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7256,"src":"1360:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7262,"nodeType":"ExpressionStatement","src":"1360:5:33"},{"AST":{"nodeType":"YulBlock","src":"1408:86:33","statements":[{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"1438:3:33"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1452:5:33"},{"kind":"number","nodeType":"YulLiteral","src":"1459:2:33","type":"","value":"10"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"1448:3:33"},"nodeType":"YulFunctionCall","src":"1448:14:33"},{"name":"HEX_DIGITS","nodeType":"YulIdentifier","src":"1464:10:33"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"1443:4:33"},"nodeType":"YulFunctionCall","src":"1443:32:33"}],"functionName":{"name":"mstore8","nodeType":"YulIdentifier","src":"1430:7:33"},"nodeType":"YulFunctionCall","src":"1430:46:33"},"nodeType":"YulExpressionStatement","src":"1430:46:33"}]},"evmVersion":"paris","externalReferences":[{"declaration":7215,"isOffset":false,"isSlot":false,"src":"1464:10:33","valueSize":1},{"declaration":7256,"isOffset":false,"isSlot":false,"src":"1438:3:33","valueSize":1},{"declaration":7234,"isOffset":false,"isSlot":false,"src":"1452:5:33","valueSize":1}],"flags":["memory-safe"],"id":7263,"nodeType":"InlineAssembly","src":"1383:111:33"},{"expression":{"id":7266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1511:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":7265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1520:2:33","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1511:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7267,"nodeType":"ExpressionStatement","src":"1511:11:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1544:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1553:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1544:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7272,"nodeType":"IfStatement","src":"1540:21:33","trueBody":{"id":7271,"nodeType":"Break","src":"1556:5:33"}}]},"condition":{"hexValue":"74727565","id":7259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1336:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":7274,"nodeType":"WhileStatement","src":"1329:247:33"},{"expression":{"id":7275,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7249,"src":"1596:6:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7238,"id":7276,"nodeType":"Return","src":"1589:13:33"}]}]},"documentation":{"id":7232,"nodeType":"StructuredDocumentation","src":"892:90:33","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":7279,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"996:8:33","nodeType":"FunctionDefinition","parameters":{"id":7235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7234,"mutability":"mutable","name":"value","nameLocation":"1013:5:33","nodeType":"VariableDeclaration","scope":7279,"src":"1005:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7233,"name":"uint256","nodeType":"ElementaryTypeName","src":"1005:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1004:15:33"},"returnParameters":{"id":7238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7237,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7279,"src":"1043:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7236,"name":"string","nodeType":"ElementaryTypeName","src":"1043:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1042:15:33"},"scope":8401,"src":"987:632:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7304,"nodeType":"Block","src":"1795:92:33","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7290,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7282,"src":"1826:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":7291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1834:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1826:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":7294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1844:2:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":7295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1826:20:33","trueExpression":{"hexValue":"2d","id":7293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1838:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":7299,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7282,"src":"1872:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":7297,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12709,"src":"1857:10:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$12709_$","typeString":"type(library SignedMath)"}},"id":7298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1868:3:33","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":12708,"src":"1857:14:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":7300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1857:21:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7296,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7279,"src":"1848:8:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":7301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:31:33","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":7288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1812:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7287,"name":"string","nodeType":"ElementaryTypeName","src":"1812:6:33","typeDescriptions":{}}},"id":7289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:33","memberName":"concat","nodeType":"MemberAccess","src":"1812:13:33","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":7302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:68:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7286,"id":7303,"nodeType":"Return","src":"1805:75:33"}]},"documentation":{"id":7280,"nodeType":"StructuredDocumentation","src":"1625:89:33","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":7305,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"1728:14:33","nodeType":"FunctionDefinition","parameters":{"id":7283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7282,"mutability":"mutable","name":"value","nameLocation":"1750:5:33","nodeType":"VariableDeclaration","scope":7305,"src":"1743:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7281,"name":"int256","nodeType":"ElementaryTypeName","src":"1743:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1742:14:33"},"returnParameters":{"id":7286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7305,"src":"1780:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7284,"name":"string","nodeType":"ElementaryTypeName","src":"1780:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1779:15:33"},"scope":8401,"src":"1719:168:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7324,"nodeType":"Block","src":"2066:100:33","statements":[{"id":7323,"nodeType":"UncheckedBlock","src":"2076:84:33","statements":[{"expression":{"arguments":[{"id":7314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7308,"src":"2119:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7317,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7308,"src":"2138:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7315,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"2126:4:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":7316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2131:6:33","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":10743,"src":"2126:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2126:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2147:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2126:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7313,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7408,"src":"2107:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2107:42:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7312,"id":7322,"nodeType":"Return","src":"2100:49:33"}]}]},"documentation":{"id":7306,"nodeType":"StructuredDocumentation","src":"1893:94:33","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":7325,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2001:11:33","nodeType":"FunctionDefinition","parameters":{"id":7309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7308,"mutability":"mutable","name":"value","nameLocation":"2021:5:33","nodeType":"VariableDeclaration","scope":7325,"src":"2013:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7307,"name":"uint256","nodeType":"ElementaryTypeName","src":"2013:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2012:15:33"},"returnParameters":{"id":7312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7325,"src":"2051:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7310,"name":"string","nodeType":"ElementaryTypeName","src":"2051:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2050:15:33"},"scope":8401,"src":"1992:174:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7407,"nodeType":"Block","src":"2379:435:33","statements":[{"assignments":[7336],"declarations":[{"constant":false,"id":7336,"mutability":"mutable","name":"localValue","nameLocation":"2397:10:33","nodeType":"VariableDeclaration","scope":7407,"src":"2389:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2389:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7338,"initialValue":{"id":7337,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7328,"src":"2410:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2389:26:33"},{"assignments":[7340],"declarations":[{"constant":false,"id":7340,"mutability":"mutable","name":"buffer","nameLocation":"2438:6:33","nodeType":"VariableDeclaration","scope":7407,"src":"2425:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7339,"name":"bytes","nodeType":"ElementaryTypeName","src":"2425:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7349,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2457:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7344,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2461:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2457:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":7346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2470:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2457:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2447:9:33","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":7341,"name":"bytes","nodeType":"ElementaryTypeName","src":"2451:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":7348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2447:25:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2425:47:33"},{"expression":{"id":7354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7350,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2482:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7352,"indexExpression":{"hexValue":"30","id":7351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2489:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2482:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":7353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2494:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2482:15:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7355,"nodeType":"ExpressionStatement","src":"2482:15:33"},{"expression":{"id":7360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7356,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2507:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7358,"indexExpression":{"hexValue":"31","id":7357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2514:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2507:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":7359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2519:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2507:15:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7361,"nodeType":"ExpressionStatement","src":"2507:15:33"},{"body":{"id":7390,"nodeType":"Block","src":"2577:95:33","statements":[{"expression":{"id":7384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7376,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2591:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7378,"indexExpression":{"id":7377,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2598:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2591:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":7379,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7215,"src":"2603:10:33","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":7383,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7380,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2614:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2627:3:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2614:16:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2603:28:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2591:40:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7385,"nodeType":"ExpressionStatement","src":"2591:40:33"},{"expression":{"id":7388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7386,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2645:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2660:1:33","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2645:16:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7389,"nodeType":"ExpressionStatement","src":"2645:16:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7370,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2565:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2569:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2565:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7391,"initializationExpression":{"assignments":[7363],"declarations":[{"constant":false,"id":7363,"mutability":"mutable","name":"i","nameLocation":"2545:1:33","nodeType":"VariableDeclaration","scope":7391,"src":"2537:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7362,"name":"uint256","nodeType":"ElementaryTypeName","src":"2537:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7369,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2549:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7365,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2553:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2549:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2549:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2537:26:33"},"loopExpression":{"expression":{"id":7374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2572:3:33","subExpression":{"id":7373,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2574:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7375,"nodeType":"ExpressionStatement","src":"2572:3:33"},"nodeType":"ForStatement","src":"2532:140:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7392,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2685:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2699:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2685:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7401,"nodeType":"IfStatement","src":"2681:96:33","trueBody":{"id":7400,"nodeType":"Block","src":"2702:75:33","statements":[{"errorCall":{"arguments":[{"id":7396,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7328,"src":"2752:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7397,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2759:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7395,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"2723:28:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":7398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7399,"nodeType":"RevertStatement","src":"2716:50:33"}]}},{"expression":{"arguments":[{"id":7404,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2800:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2793:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7402,"name":"string","nodeType":"ElementaryTypeName","src":"2793:6:33","typeDescriptions":{}}},"id":7405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2793:14:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7334,"id":7406,"nodeType":"Return","src":"2786:21:33"}]},"documentation":{"id":7326,"nodeType":"StructuredDocumentation","src":"2172:112:33","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":7408,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2298:11:33","nodeType":"FunctionDefinition","parameters":{"id":7331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7328,"mutability":"mutable","name":"value","nameLocation":"2318:5:33","nodeType":"VariableDeclaration","scope":7408,"src":"2310:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7327,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7330,"mutability":"mutable","name":"length","nameLocation":"2333:6:33","nodeType":"VariableDeclaration","scope":7408,"src":"2325:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7329,"name":"uint256","nodeType":"ElementaryTypeName","src":"2325:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2309:31:33"},"returnParameters":{"id":7334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7408,"src":"2364:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7332,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2363:15:33"},"scope":8401,"src":"2289:525:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7427,"nodeType":"Block","src":"3046:75:33","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":7421,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7411,"src":"3091:4:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3083:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7419,"name":"uint160","nodeType":"ElementaryTypeName","src":"3083:7:33","typeDescriptions":{}}},"id":7422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3083:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":7418,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3075:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7417,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:33","typeDescriptions":{}}},"id":7423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:22:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7424,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"3099:14:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":7416,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7408,"src":"3063:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3063:51:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7415,"id":7426,"nodeType":"Return","src":"3056:58:33"}]},"documentation":{"id":7409,"nodeType":"StructuredDocumentation","src":"2820:148:33","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":7428,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2982:11:33","nodeType":"FunctionDefinition","parameters":{"id":7412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7411,"mutability":"mutable","name":"addr","nameLocation":"3002:4:33","nodeType":"VariableDeclaration","scope":7428,"src":"2994:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7410,"name":"address","nodeType":"ElementaryTypeName","src":"2994:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2993:14:33"},"returnParameters":{"id":7415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7428,"src":"3031:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7413,"name":"string","nodeType":"ElementaryTypeName","src":"3031:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3030:15:33"},"scope":8401,"src":"2973:148:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7492,"nodeType":"Block","src":"3378:642:33","statements":[{"assignments":[7437],"declarations":[{"constant":false,"id":7437,"mutability":"mutable","name":"buffer","nameLocation":"3401:6:33","nodeType":"VariableDeclaration","scope":7492,"src":"3388:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7436,"name":"bytes","nodeType":"ElementaryTypeName","src":"3388:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7444,"initialValue":{"arguments":[{"arguments":[{"id":7441,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7431,"src":"3428:4:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7440,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7428,"src":"3416:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":7442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:17:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3410:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7438,"name":"bytes","nodeType":"ElementaryTypeName","src":"3410:5:33","typeDescriptions":{}}},"id":7443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3410:24:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3388:46:33"},{"assignments":[7446],"declarations":[{"constant":false,"id":7446,"mutability":"mutable","name":"hashValue","nameLocation":"3527:9:33","nodeType":"VariableDeclaration","scope":7492,"src":"3519:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7445,"name":"uint256","nodeType":"ElementaryTypeName","src":"3519:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7447,"nodeType":"VariableDeclarationStatement","src":"3519:17:33"},{"AST":{"nodeType":"YulBlock","src":"3571:78:33","statements":[{"nodeType":"YulAssignment","src":"3585:54:33","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3602:2:33","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"3620:6:33"},{"kind":"number","nodeType":"YulLiteral","src":"3628:4:33","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3616:3:33"},"nodeType":"YulFunctionCall","src":"3616:17:33"},{"kind":"number","nodeType":"YulLiteral","src":"3635:2:33","type":"","value":"40"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3606:9:33"},"nodeType":"YulFunctionCall","src":"3606:32:33"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3598:3:33"},"nodeType":"YulFunctionCall","src":"3598:41:33"},"variableNames":[{"name":"hashValue","nodeType":"YulIdentifier","src":"3585:9:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7437,"isOffset":false,"isSlot":false,"src":"3620:6:33","valueSize":1},{"declaration":7446,"isOffset":false,"isSlot":false,"src":"3585:9:33","valueSize":1}],"flags":["memory-safe"],"id":7448,"nodeType":"InlineAssembly","src":"3546:103:33"},{"body":{"id":7485,"nodeType":"Block","src":"3692:291:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7459,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7446,"src":"3798:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3810:3:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"3798:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":7462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3816:1:33","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"3798:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":7471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":7466,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"3827:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7468,"indexExpression":{"id":7467,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3834:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3827:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":7465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3821:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":7464,"name":"uint8","nodeType":"ElementaryTypeName","src":"3821:5:33","typeDescriptions":{}}},"id":7469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3821:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":7470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3840:2:33","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"3821:21:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3798:44:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7480,"nodeType":"IfStatement","src":"3794:150:33","trueBody":{"id":7479,"nodeType":"Block","src":"3844:100:33","statements":[{"expression":{"id":7477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7473,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"3912:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7475,"indexExpression":{"id":7474,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3919:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3912:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":7476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3925:4:33","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"3912:17:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7478,"nodeType":"ExpressionStatement","src":"3912:17:33"}]}},{"expression":{"id":7483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7481,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7446,"src":"3957:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3971:1:33","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3957:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7484,"nodeType":"ExpressionStatement","src":"3957:15:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7453,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3680:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3684:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3680:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7486,"initializationExpression":{"assignments":[7450],"declarations":[{"constant":false,"id":7450,"mutability":"mutable","name":"i","nameLocation":"3672:1:33","nodeType":"VariableDeclaration","scope":7486,"src":"3664:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7449,"name":"uint256","nodeType":"ElementaryTypeName","src":"3664:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7452,"initialValue":{"hexValue":"3431","id":7451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3676:2:33","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3664:14:33"},"loopExpression":{"expression":{"id":7457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"3687:3:33","subExpression":{"id":7456,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3689:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7458,"nodeType":"ExpressionStatement","src":"3687:3:33"},"nodeType":"ForStatement","src":"3659:324:33"},{"expression":{"arguments":[{"id":7489,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"4006:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3999:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7487,"name":"string","nodeType":"ElementaryTypeName","src":"3999:6:33","typeDescriptions":{}}},"id":7490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3999:14:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7435,"id":7491,"nodeType":"Return","src":"3992:21:33"}]},"documentation":{"id":7429,"nodeType":"StructuredDocumentation","src":"3127:165:33","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":7493,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3306:19:33","nodeType":"FunctionDefinition","parameters":{"id":7432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7431,"mutability":"mutable","name":"addr","nameLocation":"3334:4:33","nodeType":"VariableDeclaration","scope":7493,"src":"3326:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7430,"name":"address","nodeType":"ElementaryTypeName","src":"3326:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3325:14:33"},"returnParameters":{"id":7435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7434,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7493,"src":"3363:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7433,"name":"string","nodeType":"ElementaryTypeName","src":"3363:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3362:15:33"},"scope":8401,"src":"3297:723:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7529,"nodeType":"Block","src":"4175:104:33","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":7505,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"4198:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7504,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4192:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7503,"name":"bytes","nodeType":"ElementaryTypeName","src":"4192:5:33","typeDescriptions":{}}},"id":7506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4192:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4201:6:33","memberName":"length","nodeType":"MemberAccess","src":"4192:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":7510,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7498,"src":"4217:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4211:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7508,"name":"bytes","nodeType":"ElementaryTypeName","src":"4211:5:33","typeDescriptions":{}}},"id":7511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4211:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4220:6:33","memberName":"length","nodeType":"MemberAccess","src":"4211:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4192:34:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":7517,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"4246:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4240:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7515,"name":"bytes","nodeType":"ElementaryTypeName","src":"4240:5:33","typeDescriptions":{}}},"id":7518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4240:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7514,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4230:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4230:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":7523,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7498,"src":"4269:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7521,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:33","typeDescriptions":{}}},"id":7524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7520,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4253:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4253:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4230:42:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4192:80:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7502,"id":7528,"nodeType":"Return","src":"4185:87:33"}]},"documentation":{"id":7494,"nodeType":"StructuredDocumentation","src":"4026:66:33","text":" @dev Returns true if the two strings are equal."},"id":7530,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4106:5:33","nodeType":"FunctionDefinition","parameters":{"id":7499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7496,"mutability":"mutable","name":"a","nameLocation":"4126:1:33","nodeType":"VariableDeclaration","scope":7530,"src":"4112:15:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7495,"name":"string","nodeType":"ElementaryTypeName","src":"4112:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7498,"mutability":"mutable","name":"b","nameLocation":"4143:1:33","nodeType":"VariableDeclaration","scope":7530,"src":"4129:15:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7497,"name":"string","nodeType":"ElementaryTypeName","src":"4129:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4111:34:33"},"returnParameters":{"id":7502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7501,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7530,"src":"4169:4:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7500,"name":"bool","nodeType":"ElementaryTypeName","src":"4169:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4168:6:33"},"scope":8401,"src":"4097:182:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7548,"nodeType":"Block","src":"4576:64:33","statements":[{"expression":{"arguments":[{"id":7539,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7533,"src":"4603:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4610:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7543,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7533,"src":"4619:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4613:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7541,"name":"bytes","nodeType":"ElementaryTypeName","src":"4613:5:33","typeDescriptions":{}}},"id":7544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4613:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4626:6:33","memberName":"length","nodeType":"MemberAccess","src":"4613:19:33","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":7538,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[7549,7580],"referencedDeclaration":7580,"src":"4593:9:33","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":7546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4593:40:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7537,"id":7547,"nodeType":"Return","src":"4586:47:33"}]},"documentation":{"id":7531,"nodeType":"StructuredDocumentation","src":"4285:214:33","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":7549,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4513:9:33","nodeType":"FunctionDefinition","parameters":{"id":7534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7533,"mutability":"mutable","name":"input","nameLocation":"4537:5:33","nodeType":"VariableDeclaration","scope":7549,"src":"4523:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7532,"name":"string","nodeType":"ElementaryTypeName","src":"4523:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4522:21:33"},"returnParameters":{"id":7537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7549,"src":"4567:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7535,"name":"uint256","nodeType":"ElementaryTypeName","src":"4567:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4566:9:33"},"scope":8401,"src":"4504:136:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7579,"nodeType":"Block","src":"5038:153:33","statements":[{"assignments":[7562,7564],"declarations":[{"constant":false,"id":7562,"mutability":"mutable","name":"success","nameLocation":"5054:7:33","nodeType":"VariableDeclaration","scope":7579,"src":"5049:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7561,"name":"bool","nodeType":"ElementaryTypeName","src":"5049:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7564,"mutability":"mutable","name":"value","nameLocation":"5071:5:33","nodeType":"VariableDeclaration","scope":7579,"src":"5063:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7563,"name":"uint256","nodeType":"ElementaryTypeName","src":"5063:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7570,"initialValue":{"arguments":[{"id":7566,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7552,"src":"5093:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7567,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7554,"src":"5100:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7568,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7556,"src":"5107:3:33","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":7565,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[7601,7638],"referencedDeclaration":7638,"src":"5080:12:33","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":7569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:31:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5048:63:33"},{"condition":{"id":7572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5125:8:33","subExpression":{"id":7571,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7562,"src":"5126:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7576,"nodeType":"IfStatement","src":"5121:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7573,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"5142:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7575,"nodeType":"RevertStatement","src":"5135:27:33"}},{"expression":{"id":7577,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7564,"src":"5179:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7560,"id":7578,"nodeType":"Return","src":"5172:12:33"}]},"documentation":{"id":7550,"nodeType":"StructuredDocumentation","src":"4646:287:33","text":" @dev Variant of {parseUint} 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":7580,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4947:9:33","nodeType":"FunctionDefinition","parameters":{"id":7557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7552,"mutability":"mutable","name":"input","nameLocation":"4971:5:33","nodeType":"VariableDeclaration","scope":7580,"src":"4957:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7551,"name":"string","nodeType":"ElementaryTypeName","src":"4957:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7554,"mutability":"mutable","name":"begin","nameLocation":"4986:5:33","nodeType":"VariableDeclaration","scope":7580,"src":"4978:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7553,"name":"uint256","nodeType":"ElementaryTypeName","src":"4978:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7556,"mutability":"mutable","name":"end","nameLocation":"5001:3:33","nodeType":"VariableDeclaration","scope":7580,"src":"4993:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7555,"name":"uint256","nodeType":"ElementaryTypeName","src":"4993:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4956:49:33"},"returnParameters":{"id":7560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7559,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7580,"src":"5029:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7558,"name":"uint256","nodeType":"ElementaryTypeName","src":"5029:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5028:9:33"},"scope":8401,"src":"4938:253:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7600,"nodeType":"Block","src":"5512:83:33","statements":[{"expression":{"arguments":[{"id":7591,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7583,"src":"5558:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5565:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7595,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7583,"src":"5574:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5568:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7593,"name":"bytes","nodeType":"ElementaryTypeName","src":"5568:5:33","typeDescriptions":{}}},"id":7596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5568:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5581:6:33","memberName":"length","nodeType":"MemberAccess","src":"5568:19:33","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":7590,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7708,"src":"5529:28:33","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":7598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:59:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7589,"id":7599,"nodeType":"Return","src":"5522:66:33"}]},"documentation":{"id":7581,"nodeType":"StructuredDocumentation","src":"5197:215:33","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":7601,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5426:12:33","nodeType":"FunctionDefinition","parameters":{"id":7584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7583,"mutability":"mutable","name":"input","nameLocation":"5453:5:33","nodeType":"VariableDeclaration","scope":7601,"src":"5439:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7582,"name":"string","nodeType":"ElementaryTypeName","src":"5439:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5438:21:33"},"returnParameters":{"id":7589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7586,"mutability":"mutable","name":"success","nameLocation":"5488:7:33","nodeType":"VariableDeclaration","scope":7601,"src":"5483:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7585,"name":"bool","nodeType":"ElementaryTypeName","src":"5483:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7588,"mutability":"mutable","name":"value","nameLocation":"5505:5:33","nodeType":"VariableDeclaration","scope":7601,"src":"5497:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7587,"name":"uint256","nodeType":"ElementaryTypeName","src":"5497:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5482:29:33"},"scope":8401,"src":"5417:178:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7637,"nodeType":"Block","src":"5997:144:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7615,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6011:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7618,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7604,"src":"6023:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6017:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7616,"name":"bytes","nodeType":"ElementaryTypeName","src":"6017:5:33","typeDescriptions":{}}},"id":7619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6017:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6030:6:33","memberName":"length","nodeType":"MemberAccess","src":"6017:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6011:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7622,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7606,"src":"6040:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7623,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6048:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6040:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6011:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7630,"nodeType":"IfStatement","src":"6007:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6061:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6068:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7628,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6060:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7614,"id":7629,"nodeType":"Return","src":"6053:17:33"}},{"expression":{"arguments":[{"id":7632,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7604,"src":"6116:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7633,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7606,"src":"6123:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7634,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6130:3:33","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":7631,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7708,"src":"6087:28:33","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":7635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6087:47:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7614,"id":7636,"nodeType":"Return","src":"6080:54:33"}]},"documentation":{"id":7602,"nodeType":"StructuredDocumentation","src":"5601:238:33","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":7638,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5853:12:33","nodeType":"FunctionDefinition","parameters":{"id":7609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7604,"mutability":"mutable","name":"input","nameLocation":"5889:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5875:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7603,"name":"string","nodeType":"ElementaryTypeName","src":"5875:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7606,"mutability":"mutable","name":"begin","nameLocation":"5912:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5904:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7605,"name":"uint256","nodeType":"ElementaryTypeName","src":"5904:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7608,"mutability":"mutable","name":"end","nameLocation":"5935:3:33","nodeType":"VariableDeclaration","scope":7638,"src":"5927:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7607,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5865:79:33"},"returnParameters":{"id":7614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7611,"mutability":"mutable","name":"success","nameLocation":"5973:7:33","nodeType":"VariableDeclaration","scope":7638,"src":"5968:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7610,"name":"bool","nodeType":"ElementaryTypeName","src":"5968:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7613,"mutability":"mutable","name":"value","nameLocation":"5990:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5982:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7612,"name":"uint256","nodeType":"ElementaryTypeName","src":"5982:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5967:29:33"},"scope":8401,"src":"5844:297:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7707,"nodeType":"Block","src":"6521:347:33","statements":[{"assignments":[7653],"declarations":[{"constant":false,"id":7653,"mutability":"mutable","name":"buffer","nameLocation":"6544:6:33","nodeType":"VariableDeclaration","scope":7707,"src":"6531:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7652,"name":"bytes","nodeType":"ElementaryTypeName","src":"6531:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7658,"initialValue":{"arguments":[{"id":7656,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7641,"src":"6559:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6553:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7654,"name":"bytes","nodeType":"ElementaryTypeName","src":"6553:5:33","typeDescriptions":{}}},"id":7657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6553:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6531:34:33"},{"assignments":[7660],"declarations":[{"constant":false,"id":7660,"mutability":"mutable","name":"result","nameLocation":"6584:6:33","nodeType":"VariableDeclaration","scope":7707,"src":"6576:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7659,"name":"uint256","nodeType":"ElementaryTypeName","src":"6576:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7662,"initialValue":{"hexValue":"30","id":7661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6593:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6576:18:33"},{"body":{"id":7701,"nodeType":"Block","src":"6642:189:33","statements":[{"assignments":[7674],"declarations":[{"constant":false,"id":7674,"mutability":"mutable","name":"chr","nameLocation":"6662:3:33","nodeType":"VariableDeclaration","scope":7701,"src":"6656:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7673,"name":"uint8","nodeType":"ElementaryTypeName","src":"6656:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":7684,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":7679,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7653,"src":"6711:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":7680,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6719:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7678,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"6688:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":7681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6688:33:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6681:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7676,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6681:6:33","typeDescriptions":{}}},"id":7682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6681:41:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":7675,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"6668:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":7683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6668:55:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6656:67:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":7687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7685,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"6741:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":7686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6747:1:33","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"6741:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7692,"nodeType":"IfStatement","src":"6737:30:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6758:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6765:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6757:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7651,"id":7691,"nodeType":"Return","src":"6750:17:33"}},{"expression":{"id":7695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7693,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6781:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":7694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6791:2:33","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"6781:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7696,"nodeType":"ExpressionStatement","src":"6781:12:33"},{"expression":{"id":7699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7697,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6807:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":7698,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"6817:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6807:13:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7700,"nodeType":"ExpressionStatement","src":"6807:13:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7667,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6628:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7668,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7645,"src":"6632:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6628:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7702,"initializationExpression":{"assignments":[7664],"declarations":[{"constant":false,"id":7664,"mutability":"mutable","name":"i","nameLocation":"6617:1:33","nodeType":"VariableDeclaration","scope":7702,"src":"6609:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7663,"name":"uint256","nodeType":"ElementaryTypeName","src":"6609:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7666,"initialValue":{"id":7665,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7643,"src":"6621:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6609:17:33"},"loopExpression":{"expression":{"id":7671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6637:3:33","subExpression":{"id":7670,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6639:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7672,"nodeType":"ExpressionStatement","src":"6637:3:33"},"nodeType":"ForStatement","src":"6604:227:33"},{"expression":{"components":[{"hexValue":"74727565","id":7703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6848:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":7704,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6854:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":7705,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6847:14:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7651,"id":7706,"nodeType":"Return","src":"6840:21:33"}]},"documentation":{"id":7639,"nodeType":"StructuredDocumentation","src":"6147:201:33","text":" @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":7708,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6362:28:33","nodeType":"FunctionDefinition","parameters":{"id":7646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7641,"mutability":"mutable","name":"input","nameLocation":"6414:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6400:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7640,"name":"string","nodeType":"ElementaryTypeName","src":"6400:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7643,"mutability":"mutable","name":"begin","nameLocation":"6437:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6429:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7642,"name":"uint256","nodeType":"ElementaryTypeName","src":"6429:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7645,"mutability":"mutable","name":"end","nameLocation":"6460:3:33","nodeType":"VariableDeclaration","scope":7708,"src":"6452:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7644,"name":"uint256","nodeType":"ElementaryTypeName","src":"6452:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6390:79:33"},"returnParameters":{"id":7651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7648,"mutability":"mutable","name":"success","nameLocation":"6497:7:33","nodeType":"VariableDeclaration","scope":7708,"src":"6492:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7647,"name":"bool","nodeType":"ElementaryTypeName","src":"6492:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7650,"mutability":"mutable","name":"value","nameLocation":"6514:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6506:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7649,"name":"uint256","nodeType":"ElementaryTypeName","src":"6506:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6491:29:33"},"scope":8401,"src":"6353:515:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":7726,"nodeType":"Block","src":"7165:63:33","statements":[{"expression":{"arguments":[{"id":7717,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7711,"src":"7191:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7198:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7721,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7711,"src":"7207:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7201:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7719,"name":"bytes","nodeType":"ElementaryTypeName","src":"7201:5:33","typeDescriptions":{}}},"id":7722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7201:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7214:6:33","memberName":"length","nodeType":"MemberAccess","src":"7201:19:33","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":7716,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[7727,7758],"referencedDeclaration":7758,"src":"7182:8:33","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":7724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7182:39:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7715,"id":7725,"nodeType":"Return","src":"7175:46:33"}]},"documentation":{"id":7709,"nodeType":"StructuredDocumentation","src":"6874:216:33","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":7727,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7104:8:33","nodeType":"FunctionDefinition","parameters":{"id":7712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7711,"mutability":"mutable","name":"input","nameLocation":"7127:5:33","nodeType":"VariableDeclaration","scope":7727,"src":"7113:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7710,"name":"string","nodeType":"ElementaryTypeName","src":"7113:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7112:21:33"},"returnParameters":{"id":7715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7727,"src":"7157:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7713,"name":"int256","nodeType":"ElementaryTypeName","src":"7157:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7156:8:33"},"scope":8401,"src":"7095:133:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7757,"nodeType":"Block","src":"7633:151:33","statements":[{"assignments":[7740,7742],"declarations":[{"constant":false,"id":7740,"mutability":"mutable","name":"success","nameLocation":"7649:7:33","nodeType":"VariableDeclaration","scope":7757,"src":"7644:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7739,"name":"bool","nodeType":"ElementaryTypeName","src":"7644:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7742,"mutability":"mutable","name":"value","nameLocation":"7665:5:33","nodeType":"VariableDeclaration","scope":7757,"src":"7658:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7741,"name":"int256","nodeType":"ElementaryTypeName","src":"7658:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":7748,"initialValue":{"arguments":[{"id":7744,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7730,"src":"7686:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7745,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7732,"src":"7693:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7746,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7734,"src":"7700:3:33","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":7743,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[7779,7821],"referencedDeclaration":7821,"src":"7674:11:33","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":7747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:30:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7643:61:33"},{"condition":{"id":7750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7718:8:33","subExpression":{"id":7749,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7740,"src":"7719:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7754,"nodeType":"IfStatement","src":"7714:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7751,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"7735:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7735:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7753,"nodeType":"RevertStatement","src":"7728:27:33"}},{"expression":{"id":7755,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7742,"src":"7772:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7738,"id":7756,"nodeType":"Return","src":"7765:12:33"}]},"documentation":{"id":7728,"nodeType":"StructuredDocumentation","src":"7234:296:33","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":7758,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7544:8:33","nodeType":"FunctionDefinition","parameters":{"id":7735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7730,"mutability":"mutable","name":"input","nameLocation":"7567:5:33","nodeType":"VariableDeclaration","scope":7758,"src":"7553:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7729,"name":"string","nodeType":"ElementaryTypeName","src":"7553:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7732,"mutability":"mutable","name":"begin","nameLocation":"7582:5:33","nodeType":"VariableDeclaration","scope":7758,"src":"7574:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7731,"name":"uint256","nodeType":"ElementaryTypeName","src":"7574:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7734,"mutability":"mutable","name":"end","nameLocation":"7597:3:33","nodeType":"VariableDeclaration","scope":7758,"src":"7589:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7733,"name":"uint256","nodeType":"ElementaryTypeName","src":"7589:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7552:49:33"},"returnParameters":{"id":7738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7758,"src":"7625:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7736,"name":"int256","nodeType":"ElementaryTypeName","src":"7625:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7624:8:33"},"scope":8401,"src":"7535:249:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7778,"nodeType":"Block","src":"8175:82:33","statements":[{"expression":{"arguments":[{"id":7769,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7761,"src":"8220:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8227:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7773,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7761,"src":"8236:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7772,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8230:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7771,"name":"bytes","nodeType":"ElementaryTypeName","src":"8230:5:33","typeDescriptions":{}}},"id":7774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8230:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8243:6:33","memberName":"length","nodeType":"MemberAccess","src":"8230:19:33","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":7768,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"8192:27:33","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":7776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8192:58:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7767,"id":7777,"nodeType":"Return","src":"8185:65:33"}]},"documentation":{"id":7759,"nodeType":"StructuredDocumentation","src":"7790:287:33","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":7779,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8091:11:33","nodeType":"FunctionDefinition","parameters":{"id":7762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7761,"mutability":"mutable","name":"input","nameLocation":"8117:5:33","nodeType":"VariableDeclaration","scope":7779,"src":"8103:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7760,"name":"string","nodeType":"ElementaryTypeName","src":"8103:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8102:21:33"},"returnParameters":{"id":7767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7764,"mutability":"mutable","name":"success","nameLocation":"8152:7:33","nodeType":"VariableDeclaration","scope":7779,"src":"8147:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7763,"name":"bool","nodeType":"ElementaryTypeName","src":"8147:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7766,"mutability":"mutable","name":"value","nameLocation":"8168:5:33","nodeType":"VariableDeclaration","scope":7779,"src":"8161:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7765,"name":"int256","nodeType":"ElementaryTypeName","src":"8161:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8146:28:33"},"scope":8401,"src":"8082:175:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":7784,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8288:14:33","nodeType":"VariableDeclaration","scope":8401,"src":"8263:50:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7780,"name":"uint256","nodeType":"ElementaryTypeName","src":"8263:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":7783,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8305:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":7782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8310:3:33","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8305:8:33","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":7820,"nodeType":"Block","src":"8779:143:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7798,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8793:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7801,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"8805:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8799:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7799,"name":"bytes","nodeType":"ElementaryTypeName","src":"8799:5:33","typeDescriptions":{}}},"id":7802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8799:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8812:6:33","memberName":"length","nodeType":"MemberAccess","src":"8799:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8793:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7805,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7789,"src":"8822:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7806,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8830:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8822:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8793:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7813,"nodeType":"IfStatement","src":"8789:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8843:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8850:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7811,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8842:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7797,"id":7812,"nodeType":"Return","src":"8835:17:33"}},{"expression":{"arguments":[{"id":7815,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"8897:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7816,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7789,"src":"8904:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7817,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8911:3:33","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":7814,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"8869:27:33","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":7818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8869:46:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7797,"id":7819,"nodeType":"Return","src":"8862:53:33"}]},"documentation":{"id":7785,"nodeType":"StructuredDocumentation","src":"8320:303:33","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":7821,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8637:11:33","nodeType":"FunctionDefinition","parameters":{"id":7792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7787,"mutability":"mutable","name":"input","nameLocation":"8672:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8658:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7786,"name":"string","nodeType":"ElementaryTypeName","src":"8658:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7789,"mutability":"mutable","name":"begin","nameLocation":"8695:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8687:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7788,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7791,"mutability":"mutable","name":"end","nameLocation":"8718:3:33","nodeType":"VariableDeclaration","scope":7821,"src":"8710:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7790,"name":"uint256","nodeType":"ElementaryTypeName","src":"8710:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8648:79:33"},"returnParameters":{"id":7797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7794,"mutability":"mutable","name":"success","nameLocation":"8756:7:33","nodeType":"VariableDeclaration","scope":7821,"src":"8751:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7793,"name":"bool","nodeType":"ElementaryTypeName","src":"8751:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7796,"mutability":"mutable","name":"value","nameLocation":"8772:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8765:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7795,"name":"int256","nodeType":"ElementaryTypeName","src":"8765:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8750:28:33"},"scope":8401,"src":"8628:294:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7941,"nodeType":"Block","src":"9299:812:33","statements":[{"assignments":[7836],"declarations":[{"constant":false,"id":7836,"mutability":"mutable","name":"buffer","nameLocation":"9322:6:33","nodeType":"VariableDeclaration","scope":7941,"src":"9309:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7835,"name":"bytes","nodeType":"ElementaryTypeName","src":"9309:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7841,"initialValue":{"arguments":[{"id":7839,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7824,"src":"9337:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9331:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7837,"name":"bytes","nodeType":"ElementaryTypeName","src":"9331:5:33","typeDescriptions":{}}},"id":7840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9309:34:33"},{"assignments":[7843],"declarations":[{"constant":false,"id":7843,"mutability":"mutable","name":"sign","nameLocation":"9407:4:33","nodeType":"VariableDeclaration","scope":7941,"src":"9400:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":7842,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9400:6:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":7859,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7844,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9414:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7845,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7828,"src":"9423:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9414:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":7854,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7836,"src":"9471:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":7855,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9479:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7853,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"9448:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":7856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9448:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9441:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7851,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9441:6:33","typeDescriptions":{}}},"id":7857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9441:45:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9414:72:33","trueExpression":{"arguments":[{"hexValue":"30","id":7849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9436:1:33","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":7848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9429:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7847,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9429:6:33","typeDescriptions":{}}},"id":7850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9429:9:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9400:86:33"},{"assignments":[7861],"declarations":[{"constant":false,"id":7861,"mutability":"mutable","name":"positiveSign","nameLocation":"9572:12:33","nodeType":"VariableDeclaration","scope":7941,"src":"9567:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7860,"name":"bool","nodeType":"ElementaryTypeName","src":"9567:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7868,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":7867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7862,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"9587:4:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":7865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9602:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":7864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9595:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7863,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9595:6:33","typeDescriptions":{}}},"id":7866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9595:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9587:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9567:39:33"},{"assignments":[7870],"declarations":[{"constant":false,"id":7870,"mutability":"mutable","name":"negativeSign","nameLocation":"9621:12:33","nodeType":"VariableDeclaration","scope":7941,"src":"9616:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7869,"name":"bool","nodeType":"ElementaryTypeName","src":"9616:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7877,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":7876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7871,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"9636:4:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":7874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9651:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":7873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9644:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7872,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9644:6:33","typeDescriptions":{}}},"id":7875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9644:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9636:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9616:39:33"},{"assignments":[7879],"declarations":[{"constant":false,"id":7879,"mutability":"mutable","name":"offset","nameLocation":"9673:6:33","nodeType":"VariableDeclaration","scope":7941,"src":"9665:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7878,"name":"uint256","nodeType":"ElementaryTypeName","src":"9665:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7886,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7880,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"9683:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":7881,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9699:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9683:28:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":7883,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9682:30:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9713:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"9682:37:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":7885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9682:39:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9665:56:33"},{"assignments":[7888,7890],"declarations":[{"constant":false,"id":7888,"mutability":"mutable","name":"absSuccess","nameLocation":"9738:10:33","nodeType":"VariableDeclaration","scope":7941,"src":"9733:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7887,"name":"bool","nodeType":"ElementaryTypeName","src":"9733:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7890,"mutability":"mutable","name":"absValue","nameLocation":"9758:8:33","nodeType":"VariableDeclaration","scope":7941,"src":"9750:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7889,"name":"uint256","nodeType":"ElementaryTypeName","src":"9750:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7898,"initialValue":{"arguments":[{"id":7892,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7824,"src":"9783:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7893,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9790:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":7894,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7879,"src":"9798:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9790:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7896,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7828,"src":"9806:3:33","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":7891,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[7601,7638],"referencedDeclaration":7638,"src":"9770:12:33","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":7897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9770:40:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9732:78:33"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7899,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7888,"src":"9825:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7900,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9839:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7901,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7784,"src":"9850:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9839:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9825:39:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7919,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7888,"src":"9967:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":7920,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9981:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:26:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7922,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9997:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7923,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7784,"src":"10009:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9997:26:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:56:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10095:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10102:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7937,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10094:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7834,"id":7938,"nodeType":"Return","src":"10087:17:33"},"id":7939,"nodeType":"IfStatement","src":"9963:141:33","trueBody":{"id":7934,"nodeType":"Block","src":"10025:56:33","statements":[{"expression":{"components":[{"hexValue":"74727565","id":7926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10047:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":7929,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10058:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7928,"name":"int256","nodeType":"ElementaryTypeName","src":"10058:6:33","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":7927,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10053:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10053:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":7931,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10066:3:33","memberName":"min","nodeType":"MemberAccess","src":"10053:16:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7932,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10046:24:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7834,"id":7933,"nodeType":"Return","src":"10039:31:33"}]}},"id":7940,"nodeType":"IfStatement","src":"9821:283:33","trueBody":{"id":7918,"nodeType":"Block","src":"9866:91:33","statements":[{"expression":{"components":[{"hexValue":"74727565","id":7904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9888:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":7905,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9894:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":7913,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9936:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9929:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7911,"name":"int256","nodeType":"ElementaryTypeName","src":"9929:6:33","typeDescriptions":{}}},"id":7914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9929:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":7915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9894:51:33","trueExpression":{"id":7910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9909:17:33","subExpression":{"arguments":[{"id":7908,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9917:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9910:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7906,"name":"int256","nodeType":"ElementaryTypeName","src":"9910:6:33","typeDescriptions":{}}},"id":7909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9910:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7916,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9887:59:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7834,"id":7917,"nodeType":"Return","src":"9880:66:33"}]}}]},"documentation":{"id":7822,"nodeType":"StructuredDocumentation","src":"8928:200:33","text":" @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":7942,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9142:27:33","nodeType":"FunctionDefinition","parameters":{"id":7829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7824,"mutability":"mutable","name":"input","nameLocation":"9193:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9179:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7823,"name":"string","nodeType":"ElementaryTypeName","src":"9179:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7826,"mutability":"mutable","name":"begin","nameLocation":"9216:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9208:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7825,"name":"uint256","nodeType":"ElementaryTypeName","src":"9208:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7828,"mutability":"mutable","name":"end","nameLocation":"9239:3:33","nodeType":"VariableDeclaration","scope":7942,"src":"9231:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7827,"name":"uint256","nodeType":"ElementaryTypeName","src":"9231:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9169:79:33"},"returnParameters":{"id":7834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7831,"mutability":"mutable","name":"success","nameLocation":"9276:7:33","nodeType":"VariableDeclaration","scope":7942,"src":"9271:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7830,"name":"bool","nodeType":"ElementaryTypeName","src":"9271:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7833,"mutability":"mutable","name":"value","nameLocation":"9292:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9285:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7832,"name":"int256","nodeType":"ElementaryTypeName","src":"9285:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9270:28:33"},"scope":8401,"src":"9133:978:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":7960,"nodeType":"Block","src":"10456:67:33","statements":[{"expression":{"arguments":[{"id":7951,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7945,"src":"10486:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10493:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7955,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7945,"src":"10502:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10496:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7953,"name":"bytes","nodeType":"ElementaryTypeName","src":"10496:5:33","typeDescriptions":{}}},"id":7956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10496:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10509:6:33","memberName":"length","nodeType":"MemberAccess","src":"10496:19:33","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":7950,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[7961,7992],"referencedDeclaration":7992,"src":"10473:12:33","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":7958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10473:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7949,"id":7959,"nodeType":"Return","src":"10466:50:33"}]},"documentation":{"id":7943,"nodeType":"StructuredDocumentation","src":"10117:259:33","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":7961,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10390:12:33","nodeType":"FunctionDefinition","parameters":{"id":7946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7945,"mutability":"mutable","name":"input","nameLocation":"10417:5:33","nodeType":"VariableDeclaration","scope":7961,"src":"10403:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7944,"name":"string","nodeType":"ElementaryTypeName","src":"10403:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10402:21:33"},"returnParameters":{"id":7949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7961,"src":"10447:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7947,"name":"uint256","nodeType":"ElementaryTypeName","src":"10447:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10446:9:33"},"scope":8401,"src":"10381:142:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7991,"nodeType":"Block","src":"10937:156:33","statements":[{"assignments":[7974,7976],"declarations":[{"constant":false,"id":7974,"mutability":"mutable","name":"success","nameLocation":"10953:7:33","nodeType":"VariableDeclaration","scope":7991,"src":"10948:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7973,"name":"bool","nodeType":"ElementaryTypeName","src":"10948:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7976,"mutability":"mutable","name":"value","nameLocation":"10970:5:33","nodeType":"VariableDeclaration","scope":7991,"src":"10962:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7975,"name":"uint256","nodeType":"ElementaryTypeName","src":"10962:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7982,"initialValue":{"arguments":[{"id":7978,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"10995:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7979,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7966,"src":"11002:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7980,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7968,"src":"11009:3:33","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":7977,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[8013,8050],"referencedDeclaration":8050,"src":"10979:15:33","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":7981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10979:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10947:66:33"},{"condition":{"id":7984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11027:8:33","subExpression":{"id":7983,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7974,"src":"11028:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7988,"nodeType":"IfStatement","src":"11023:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7985,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"11044:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11044:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7987,"nodeType":"RevertStatement","src":"11037:27:33"}},{"expression":{"id":7989,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7976,"src":"11081:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7972,"id":7990,"nodeType":"Return","src":"11074:12:33"}]},"documentation":{"id":7962,"nodeType":"StructuredDocumentation","src":"10529:300:33","text":" @dev Variant of {parseHexUint} 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":7992,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10843:12:33","nodeType":"FunctionDefinition","parameters":{"id":7969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7964,"mutability":"mutable","name":"input","nameLocation":"10870:5:33","nodeType":"VariableDeclaration","scope":7992,"src":"10856:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7963,"name":"string","nodeType":"ElementaryTypeName","src":"10856:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7966,"mutability":"mutable","name":"begin","nameLocation":"10885:5:33","nodeType":"VariableDeclaration","scope":7992,"src":"10877:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7965,"name":"uint256","nodeType":"ElementaryTypeName","src":"10877:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7968,"mutability":"mutable","name":"end","nameLocation":"10900:3:33","nodeType":"VariableDeclaration","scope":7992,"src":"10892:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7967,"name":"uint256","nodeType":"ElementaryTypeName","src":"10892:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10855:49:33"},"returnParameters":{"id":7972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7992,"src":"10928:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7970,"name":"uint256","nodeType":"ElementaryTypeName","src":"10928:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10927:9:33"},"scope":8401,"src":"10834:259:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8012,"nodeType":"Block","src":"11420:86:33","statements":[{"expression":{"arguments":[{"id":8003,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7995,"src":"11469:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11476:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8007,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7995,"src":"11485:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11479:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8005,"name":"bytes","nodeType":"ElementaryTypeName","src":"11479:5:33","typeDescriptions":{}}},"id":8008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11479:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11492:6:33","memberName":"length","nodeType":"MemberAccess","src":"11479:19:33","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":8002,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"11437:31:33","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":8010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11437:62:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8001,"id":8011,"nodeType":"Return","src":"11430:69:33"}]},"documentation":{"id":7993,"nodeType":"StructuredDocumentation","src":"11099:218:33","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":8013,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11331:15:33","nodeType":"FunctionDefinition","parameters":{"id":7996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7995,"mutability":"mutable","name":"input","nameLocation":"11361:5:33","nodeType":"VariableDeclaration","scope":8013,"src":"11347:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7994,"name":"string","nodeType":"ElementaryTypeName","src":"11347:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11346:21:33"},"returnParameters":{"id":8001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7998,"mutability":"mutable","name":"success","nameLocation":"11396:7:33","nodeType":"VariableDeclaration","scope":8013,"src":"11391:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7997,"name":"bool","nodeType":"ElementaryTypeName","src":"11391:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8000,"mutability":"mutable","name":"value","nameLocation":"11413:5:33","nodeType":"VariableDeclaration","scope":8013,"src":"11405:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7999,"name":"uint256","nodeType":"ElementaryTypeName","src":"11405:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11390:29:33"},"scope":8401,"src":"11322:184:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8049,"nodeType":"Block","src":"11914:147:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8027,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"11928:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8030,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"11940:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11934:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8028,"name":"bytes","nodeType":"ElementaryTypeName","src":"11934:5:33","typeDescriptions":{}}},"id":8031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11934:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11947:6:33","memberName":"length","nodeType":"MemberAccess","src":"11934:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11928:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8034,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8018,"src":"11957:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8035,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"11965:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11957:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11928:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8042,"nodeType":"IfStatement","src":"11924:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11978:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11985:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8040,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11977:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8026,"id":8041,"nodeType":"Return","src":"11970:17:33"}},{"expression":{"arguments":[{"id":8044,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"12036:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8045,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8018,"src":"12043:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8046,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"12050:3:33","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":8043,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"12004:31:33","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":8047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12004:50:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8026,"id":8048,"nodeType":"Return","src":"11997:57:33"}]},"documentation":{"id":8014,"nodeType":"StructuredDocumentation","src":"11512:241:33","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":8050,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11767:15:33","nodeType":"FunctionDefinition","parameters":{"id":8021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8016,"mutability":"mutable","name":"input","nameLocation":"11806:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11792:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8015,"name":"string","nodeType":"ElementaryTypeName","src":"11792:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8018,"mutability":"mutable","name":"begin","nameLocation":"11829:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11821:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8017,"name":"uint256","nodeType":"ElementaryTypeName","src":"11821:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8020,"mutability":"mutable","name":"end","nameLocation":"11852:3:33","nodeType":"VariableDeclaration","scope":8050,"src":"11844:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8019,"name":"uint256","nodeType":"ElementaryTypeName","src":"11844:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11782:79:33"},"returnParameters":{"id":8026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8023,"mutability":"mutable","name":"success","nameLocation":"11890:7:33","nodeType":"VariableDeclaration","scope":8050,"src":"11885:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8022,"name":"bool","nodeType":"ElementaryTypeName","src":"11885:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8025,"mutability":"mutable","name":"value","nameLocation":"11907:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11899:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8024,"name":"uint256","nodeType":"ElementaryTypeName","src":"11899:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11884:29:33"},"scope":8401,"src":"11758:303:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8152,"nodeType":"Block","src":"12447:880:33","statements":[{"assignments":[8065],"declarations":[{"constant":false,"id":8065,"mutability":"mutable","name":"buffer","nameLocation":"12470:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12457:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8064,"name":"bytes","nodeType":"ElementaryTypeName","src":"12457:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8070,"initialValue":{"arguments":[{"id":8068,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8053,"src":"12485:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12479:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8066,"name":"bytes","nodeType":"ElementaryTypeName","src":"12479:5:33","typeDescriptions":{}}},"id":8069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12457:34:33"},{"assignments":[8072],"declarations":[{"constant":false,"id":8072,"mutability":"mutable","name":"hasPrefix","nameLocation":"12544:9:33","nodeType":"VariableDeclaration","scope":8152,"src":"12539:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8071,"name":"bool","nodeType":"ElementaryTypeName","src":"12539:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8092,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8073,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8057,"src":"12557:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8074,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12563:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12571:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12563:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12557:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8078,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12556:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":8082,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8065,"src":"12607:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8083,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12615:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8081,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"12584:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12577:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8079,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12577:6:33","typeDescriptions":{}}},"id":8085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12577:45:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12633:4:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8087,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12626:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8086,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12626:6:33","typeDescriptions":{}}},"id":8089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12626:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12577:61:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12556:82:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12539:99:33"},{"assignments":[8094],"declarations":[{"constant":false,"id":8094,"mutability":"mutable","name":"offset","nameLocation":"12727:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12719:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8093,"name":"uint256","nodeType":"ElementaryTypeName","src":"12719:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8100,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8095,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8072,"src":"12736:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12746:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"12736:16:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12736:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12757:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12736:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12719:39:33"},{"assignments":[8102],"declarations":[{"constant":false,"id":8102,"mutability":"mutable","name":"result","nameLocation":"12777:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12769:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8101,"name":"uint256","nodeType":"ElementaryTypeName","src":"12769:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8104,"initialValue":{"hexValue":"30","id":8103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12786:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12769:18:33"},{"body":{"id":8146,"nodeType":"Block","src":"12844:446:33","statements":[{"assignments":[8118],"declarations":[{"constant":false,"id":8118,"mutability":"mutable","name":"chr","nameLocation":"12864:3:33","nodeType":"VariableDeclaration","scope":8146,"src":"12858:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8117,"name":"uint8","nodeType":"ElementaryTypeName","src":"12858:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8128,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":8123,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8065,"src":"12913:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8124,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12921:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8122,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"12890:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12890:33:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12883:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8120,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12883:6:33","typeDescriptions":{}}},"id":8126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:41:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8119,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"12870:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":8127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12870:55:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12858:67:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8129,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"12943:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":8130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12949:2:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"12943:8:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8136,"nodeType":"IfStatement","src":"12939:31:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12961:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12968:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8134,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8063,"id":8135,"nodeType":"Return","src":"12953:17:33"}},{"expression":{"id":8139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8137,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"12984:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":8138,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12994:2:33","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12984:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8140,"nodeType":"ExpressionStatement","src":"12984:12:33"},{"id":8145,"nodeType":"UncheckedBlock","src":"13010:270:33","statements":[{"expression":{"id":8143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8141,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"13252:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":8142,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"13262:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13252:13:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8144,"nodeType":"ExpressionStatement","src":"13252:13:33"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8111,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12830:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8112,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8057,"src":"12834:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12830:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8147,"initializationExpression":{"assignments":[8106],"declarations":[{"constant":false,"id":8106,"mutability":"mutable","name":"i","nameLocation":"12810:1:33","nodeType":"VariableDeclaration","scope":8147,"src":"12802:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8105,"name":"uint256","nodeType":"ElementaryTypeName","src":"12802:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8110,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8107,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12814:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8108,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"12822:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12814:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12802:26:33"},"loopExpression":{"expression":{"id":8115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12839:3:33","subExpression":{"id":8114,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12841:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8116,"nodeType":"ExpressionStatement","src":"12839:3:33"},"nodeType":"ForStatement","src":"12797:493:33"},{"expression":{"components":[{"hexValue":"74727565","id":8148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13307:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8149,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"13313:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8150,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13306:14:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8063,"id":8151,"nodeType":"Return","src":"13299:21:33"}]},"documentation":{"id":8051,"nodeType":"StructuredDocumentation","src":"12067:204:33","text":" @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":8153,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12285:31:33","nodeType":"FunctionDefinition","parameters":{"id":8058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8053,"mutability":"mutable","name":"input","nameLocation":"12340:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12326:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8052,"name":"string","nodeType":"ElementaryTypeName","src":"12326:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8055,"mutability":"mutable","name":"begin","nameLocation":"12363:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12355:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8054,"name":"uint256","nodeType":"ElementaryTypeName","src":"12355:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8057,"mutability":"mutable","name":"end","nameLocation":"12386:3:33","nodeType":"VariableDeclaration","scope":8153,"src":"12378:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8056,"name":"uint256","nodeType":"ElementaryTypeName","src":"12378:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12316:79:33"},"returnParameters":{"id":8063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8060,"mutability":"mutable","name":"success","nameLocation":"12423:7:33","nodeType":"VariableDeclaration","scope":8153,"src":"12418:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8059,"name":"bool","nodeType":"ElementaryTypeName","src":"12418:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8062,"mutability":"mutable","name":"value","nameLocation":"12440:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12432:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8061,"name":"uint256","nodeType":"ElementaryTypeName","src":"12432:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12417:29:33"},"scope":8401,"src":"12276:1051:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8171,"nodeType":"Block","src":"13625:67:33","statements":[{"expression":{"arguments":[{"id":8162,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"13655:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13662:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8166,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"13671:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8165,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13665:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8164,"name":"bytes","nodeType":"ElementaryTypeName","src":"13665:5:33","typeDescriptions":{}}},"id":8167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13665:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13678:6:33","memberName":"length","nodeType":"MemberAccess","src":"13665:19:33","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":8161,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[8172,8203],"referencedDeclaration":8203,"src":"13642:12:33","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":8169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13642:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8160,"id":8170,"nodeType":"Return","src":"13635:50:33"}]},"documentation":{"id":8154,"nodeType":"StructuredDocumentation","src":"13333:212:33","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":8172,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13559:12:33","nodeType":"FunctionDefinition","parameters":{"id":8157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8156,"mutability":"mutable","name":"input","nameLocation":"13586:5:33","nodeType":"VariableDeclaration","scope":8172,"src":"13572:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8155,"name":"string","nodeType":"ElementaryTypeName","src":"13572:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13571:21:33"},"returnParameters":{"id":8160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8159,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8172,"src":"13616:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8158,"name":"address","nodeType":"ElementaryTypeName","src":"13616:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13615:9:33"},"scope":8401,"src":"13550:142:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8202,"nodeType":"Block","src":"14058:165:33","statements":[{"assignments":[8185,8187],"declarations":[{"constant":false,"id":8185,"mutability":"mutable","name":"success","nameLocation":"14074:7:33","nodeType":"VariableDeclaration","scope":8202,"src":"14069:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8184,"name":"bool","nodeType":"ElementaryTypeName","src":"14069:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8187,"mutability":"mutable","name":"value","nameLocation":"14091:5:33","nodeType":"VariableDeclaration","scope":8202,"src":"14083:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8186,"name":"address","nodeType":"ElementaryTypeName","src":"14083:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8193,"initialValue":{"arguments":[{"id":8189,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8175,"src":"14116:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8190,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8177,"src":"14123:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8191,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8179,"src":"14130:3:33","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":8188,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8224,8328],"referencedDeclaration":8328,"src":"14100:15:33","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":8192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14100:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14068:66:33"},{"condition":{"id":8195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14148:8:33","subExpression":{"id":8194,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8185,"src":"14149:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8199,"nodeType":"IfStatement","src":"14144:50:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8196,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"14165:27:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14165:29:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8198,"nodeType":"RevertStatement","src":"14158:36:33"}},{"expression":{"id":8200,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8187,"src":"14211:5:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8183,"id":8201,"nodeType":"Return","src":"14204:12:33"}]},"documentation":{"id":8173,"nodeType":"StructuredDocumentation","src":"13698:252:33","text":" @dev Variant of {parseAddress} 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":8203,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13964:12:33","nodeType":"FunctionDefinition","parameters":{"id":8180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8175,"mutability":"mutable","name":"input","nameLocation":"13991:5:33","nodeType":"VariableDeclaration","scope":8203,"src":"13977:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8174,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8177,"mutability":"mutable","name":"begin","nameLocation":"14006:5:33","nodeType":"VariableDeclaration","scope":8203,"src":"13998:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8176,"name":"uint256","nodeType":"ElementaryTypeName","src":"13998:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8179,"mutability":"mutable","name":"end","nameLocation":"14021:3:33","nodeType":"VariableDeclaration","scope":8203,"src":"14013:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8178,"name":"uint256","nodeType":"ElementaryTypeName","src":"14013:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13976:49:33"},"returnParameters":{"id":8183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8203,"src":"14049:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8181,"name":"address","nodeType":"ElementaryTypeName","src":"14049:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14048:9:33"},"scope":8401,"src":"13955:268:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8223,"nodeType":"Block","src":"14523:70:33","statements":[{"expression":{"arguments":[{"id":8214,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8206,"src":"14556:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14563:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8218,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8206,"src":"14572:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14566:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8216,"name":"bytes","nodeType":"ElementaryTypeName","src":"14566:5:33","typeDescriptions":{}}},"id":8219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14566:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14579:6:33","memberName":"length","nodeType":"MemberAccess","src":"14566:19:33","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":8213,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8224,8328],"referencedDeclaration":8328,"src":"14540:15:33","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":8221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14540:46:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8212,"id":8222,"nodeType":"Return","src":"14533:53:33"}]},"documentation":{"id":8204,"nodeType":"StructuredDocumentation","src":"14229:191:33","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} requirements."},"id":8224,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14434:15:33","nodeType":"FunctionDefinition","parameters":{"id":8207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8206,"mutability":"mutable","name":"input","nameLocation":"14464:5:33","nodeType":"VariableDeclaration","scope":8224,"src":"14450:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8205,"name":"string","nodeType":"ElementaryTypeName","src":"14450:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14449:21:33"},"returnParameters":{"id":8212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8209,"mutability":"mutable","name":"success","nameLocation":"14499:7:33","nodeType":"VariableDeclaration","scope":8224,"src":"14494:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8208,"name":"bool","nodeType":"ElementaryTypeName","src":"14494:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8211,"mutability":"mutable","name":"value","nameLocation":"14516:5:33","nodeType":"VariableDeclaration","scope":8224,"src":"14508:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8210,"name":"address","nodeType":"ElementaryTypeName","src":"14508:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14493:29:33"},"scope":8401,"src":"14425:168:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8327,"nodeType":"Block","src":"14963:733:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8238,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"14977:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8241,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"14989:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8240,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14983:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8239,"name":"bytes","nodeType":"ElementaryTypeName","src":"14983:5:33","typeDescriptions":{}}},"id":8242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14983:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14996:6:33","memberName":"length","nodeType":"MemberAccess","src":"14983:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14977:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8245,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15006:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8246,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15014:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15006:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14977:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8256,"nodeType":"IfStatement","src":"14973:72:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15027:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15042:1:33","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":8251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15034:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8250,"name":"address","nodeType":"ElementaryTypeName","src":"15034:7:33","typeDescriptions":{}}},"id":8253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15034:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8254,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15026:19:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8255,"nodeType":"Return","src":"15019:26:33"}},{"assignments":[8258],"declarations":[{"constant":false,"id":8258,"mutability":"mutable","name":"hasPrefix","nameLocation":"15061:9:33","nodeType":"VariableDeclaration","scope":8327,"src":"15056:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8257,"name":"bool","nodeType":"ElementaryTypeName","src":"15056:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8281,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8259,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15074:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8260,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15080:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15088:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15080:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15074:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8264,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15073:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":8270,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"15130:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8268,"name":"bytes","nodeType":"ElementaryTypeName","src":"15124:5:33","typeDescriptions":{}}},"id":8271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8272,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15138:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8267,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"15101:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15101:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15094:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8265,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15094:6:33","typeDescriptions":{}}},"id":8274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15094:51:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15156:4:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15149:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8275,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15149:6:33","typeDescriptions":{}}},"id":8278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15149:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15094:67:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15073:88:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15056:105:33"},{"assignments":[8283],"declarations":[{"constant":false,"id":8283,"mutability":"mutable","name":"expectedLength","nameLocation":"15250:14:33","nodeType":"VariableDeclaration","scope":8327,"src":"15242:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8282,"name":"uint256","nodeType":"ElementaryTypeName","src":"15242:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8291,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":8284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15267:2:33","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8285,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8258,"src":"15272:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15282:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"15272:16:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15272:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15293:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15272:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15267:27:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15242:52:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8292,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15359:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8293,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15365:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8295,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8283,"src":"15374:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:29:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8325,"nodeType":"Block","src":"15639:51:33","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15661:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15676:1:33","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":8320,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15668:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8319,"name":"address","nodeType":"ElementaryTypeName","src":"15668:7:33","typeDescriptions":{}}},"id":8322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15668:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8323,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15660:19:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8324,"nodeType":"Return","src":"15653:26:33"}]},"id":8326,"nodeType":"IfStatement","src":"15355:335:33","trueBody":{"id":8317,"nodeType":"Block","src":"15390:243:33","statements":[{"assignments":[8298,8300],"declarations":[{"constant":false,"id":8298,"mutability":"mutable","name":"s","nameLocation":"15511:1:33","nodeType":"VariableDeclaration","scope":8317,"src":"15506:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8297,"name":"bool","nodeType":"ElementaryTypeName","src":"15506:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8300,"mutability":"mutable","name":"v","nameLocation":"15522:1:33","nodeType":"VariableDeclaration","scope":8317,"src":"15514:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8299,"name":"uint256","nodeType":"ElementaryTypeName","src":"15514:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8306,"initialValue":{"arguments":[{"id":8302,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"15559:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8303,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15566:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8304,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15573:3:33","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":8301,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"15527:31:33","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":8305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15527:50:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15505:72:33"},{"expression":{"components":[{"id":8307,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8298,"src":"15599:1:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":8312,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8300,"src":"15618:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15610:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":8310,"name":"uint160","nodeType":"ElementaryTypeName","src":"15610:7:33","typeDescriptions":{}}},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15610:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":8309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15602:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8308,"name":"address","nodeType":"ElementaryTypeName","src":"15602:7:33","typeDescriptions":{}}},"id":8314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15602:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8315,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15598:24:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8316,"nodeType":"Return","src":"15591:31:33"}]}}]},"documentation":{"id":8225,"nodeType":"StructuredDocumentation","src":"14599:203:33","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} requirements."},"id":8328,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14816:15:33","nodeType":"FunctionDefinition","parameters":{"id":8232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8227,"mutability":"mutable","name":"input","nameLocation":"14855:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14841:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8226,"name":"string","nodeType":"ElementaryTypeName","src":"14841:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8229,"mutability":"mutable","name":"begin","nameLocation":"14878:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14870:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8228,"name":"uint256","nodeType":"ElementaryTypeName","src":"14870:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8231,"mutability":"mutable","name":"end","nameLocation":"14901:3:33","nodeType":"VariableDeclaration","scope":8328,"src":"14893:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8230,"name":"uint256","nodeType":"ElementaryTypeName","src":"14893:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14831:79:33"},"returnParameters":{"id":8237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8234,"mutability":"mutable","name":"success","nameLocation":"14939:7:33","nodeType":"VariableDeclaration","scope":8328,"src":"14934:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8233,"name":"bool","nodeType":"ElementaryTypeName","src":"14934:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8236,"mutability":"mutable","name":"value","nameLocation":"14956:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14948:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8235,"name":"address","nodeType":"ElementaryTypeName","src":"14948:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14933:29:33"},"scope":8401,"src":"14807:889:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8387,"nodeType":"Block","src":"15765:461:33","statements":[{"assignments":[8336],"declarations":[{"constant":false,"id":8336,"mutability":"mutable","name":"value","nameLocation":"15781:5:33","nodeType":"VariableDeclaration","scope":8387,"src":"15775:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8335,"name":"uint8","nodeType":"ElementaryTypeName","src":"15775:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8341,"initialValue":{"arguments":[{"id":8339,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8330,"src":"15795:3:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15789:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8337,"name":"uint8","nodeType":"ElementaryTypeName","src":"15789:5:33","typeDescriptions":{}}},"id":8340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15789:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"15775:24:33"},{"id":8384,"nodeType":"UncheckedBlock","src":"15959:238:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"15987:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":8343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15995:2:33","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"15987:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16001:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":8346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16009:2:33","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16001:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15987:24:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16047:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":8354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16055:2:33","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16047:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8356,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16061:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":8357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16069:3:33","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16061:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16047:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16108:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":8365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16116:2:33","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16108:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8367,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16122:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":8368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16130:2:33","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16122:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16108:24:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":8377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16176:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8376,"name":"uint8","nodeType":"ElementaryTypeName","src":"16176:5:33","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":8375,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16171:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16171:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":8379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16183:3:33","memberName":"max","nodeType":"MemberAccess","src":"16171:15:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8334,"id":8380,"nodeType":"Return","src":"16164:22:33"},"id":8381,"nodeType":"IfStatement","src":"16104:82:33","trueBody":{"expression":{"id":8373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8371,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16134:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":8372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16143:2:33","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16134:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8374,"nodeType":"ExpressionStatement","src":"16134:11:33"}},"id":8382,"nodeType":"IfStatement","src":"16043:143:33","trueBody":{"expression":{"id":8362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8360,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16074:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":8361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16083:2:33","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16074:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8363,"nodeType":"ExpressionStatement","src":"16074:11:33"}},"id":8383,"nodeType":"IfStatement","src":"15983:203:33","trueBody":{"expression":{"id":8351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8349,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16013:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":8350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16022:2:33","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16013:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8352,"nodeType":"ExpressionStatement","src":"16013:11:33"}}]},{"expression":{"id":8385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16214:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8334,"id":8386,"nodeType":"Return","src":"16207:12:33"}]},"id":8388,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"15711:12:33","nodeType":"FunctionDefinition","parameters":{"id":8331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8330,"mutability":"mutable","name":"chr","nameLocation":"15731:3:33","nodeType":"VariableDeclaration","scope":8388,"src":"15724:10:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8329,"name":"bytes1","nodeType":"ElementaryTypeName","src":"15724:6:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"15723:12:33"},"returnParameters":{"id":8334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8388,"src":"15758:5:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8332,"name":"uint8","nodeType":"ElementaryTypeName","src":"15758:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"15757:7:33"},"scope":8401,"src":"15702:524:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8399,"nodeType":"Block","src":"16611:225:33","statements":[{"AST":{"nodeType":"YulBlock","src":"16760:70:33","statements":[{"nodeType":"YulAssignment","src":"16774:46:33","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"16793:6:33"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16805:4:33","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"16811:6:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16801:3:33"},"nodeType":"YulFunctionCall","src":"16801:17:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16789:3:33"},"nodeType":"YulFunctionCall","src":"16789:30:33"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16783:5:33"},"nodeType":"YulFunctionCall","src":"16783:37:33"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"16774:5:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8391,"isOffset":false,"isSlot":false,"src":"16793:6:33","valueSize":1},{"declaration":8393,"isOffset":false,"isSlot":false,"src":"16811:6:33","valueSize":1},{"declaration":8396,"isOffset":false,"isSlot":false,"src":"16774:5:33","valueSize":1}],"flags":["memory-safe"],"id":8398,"nodeType":"InlineAssembly","src":"16735:95:33"}]},"documentation":{"id":8389,"nodeType":"StructuredDocumentation","src":"16232:268:33","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":8400,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"16514:22:33","nodeType":"FunctionDefinition","parameters":{"id":8394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8391,"mutability":"mutable","name":"buffer","nameLocation":"16550:6:33","nodeType":"VariableDeclaration","scope":8400,"src":"16537:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8390,"name":"bytes","nodeType":"ElementaryTypeName","src":"16537:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":8393,"mutability":"mutable","name":"offset","nameLocation":"16566:6:33","nodeType":"VariableDeclaration","scope":8400,"src":"16558:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8392,"name":"uint256","nodeType":"ElementaryTypeName","src":"16558:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16536:37:33"},"returnParameters":{"id":8397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8396,"mutability":"mutable","name":"value","nameLocation":"16604:5:33","nodeType":"VariableDeclaration","scope":8400,"src":"16596:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8395,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16596:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16595:15:33"},"scope":8401,"src":"16505:331:33","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":8402,"src":"297:16541:33","usedErrors":[7225,7228,7231],"usedEvents":[]}],"src":"101:16738:33"},"id":33},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[8749]},"id":8750,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8403,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:34"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":8404,"nodeType":"StructuredDocumentation","src":"138:205:34","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":8749,"linearizedBaseContracts":[8749],"name":"ECDSA","nameLocation":"352:5:34","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":8409,"members":[{"id":8405,"name":"NoError","nameLocation":"392:7:34","nodeType":"EnumValue","src":"392:7:34"},{"id":8406,"name":"InvalidSignature","nameLocation":"409:16:34","nodeType":"EnumValue","src":"409:16:34"},{"id":8407,"name":"InvalidSignatureLength","nameLocation":"435:22:34","nodeType":"EnumValue","src":"435:22:34"},{"id":8408,"name":"InvalidSignatureS","nameLocation":"467:17:34","nodeType":"EnumValue","src":"467:17:34"}],"name":"RecoverError","nameLocation":"369:12:34","nodeType":"EnumDefinition","src":"364:126:34"},{"documentation":{"id":8410,"nodeType":"StructuredDocumentation","src":"496:63:34","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":8412,"name":"ECDSAInvalidSignature","nameLocation":"570:21:34","nodeType":"ErrorDefinition","parameters":{"id":8411,"nodeType":"ParameterList","parameters":[],"src":"591:2:34"},"src":"564:30:34"},{"documentation":{"id":8413,"nodeType":"StructuredDocumentation","src":"600:60:34","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":8417,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:34","nodeType":"ErrorDefinition","parameters":{"id":8416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8415,"mutability":"mutable","name":"length","nameLocation":"707:6:34","nodeType":"VariableDeclaration","scope":8417,"src":"699:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8414,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:34"},"src":"665:50:34"},{"documentation":{"id":8418,"nodeType":"StructuredDocumentation","src":"721:85:34","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":8422,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:34","nodeType":"ErrorDefinition","parameters":{"id":8421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8420,"mutability":"mutable","name":"s","nameLocation":"848:1:34","nodeType":"VariableDeclaration","scope":8422,"src":"840:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8419,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:34"},"src":"811:40:34"},{"body":{"id":8474,"nodeType":"Block","src":"2285:622:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8437,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8427,"src":"2299:9:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:34","memberName":"length","nodeType":"MemberAccess","src":"2299:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":8439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:34","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8472,"nodeType":"Block","src":"2793:108:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:34","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":8460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8459,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:34","typeDescriptions":{}}},"id":8462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8463,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"2827:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:34","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":8407,"src":"2827:35:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":8467,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8427,"src":"2872:9:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:34","memberName":"length","nodeType":"MemberAccess","src":"2872:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8465,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:34","typeDescriptions":{}}},"id":8469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8470,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8436,"id":8471,"nodeType":"Return","src":"2807:83:34"}]},"id":8473,"nodeType":"IfStatement","src":"2295:606:34","trueBody":{"id":8458,"nodeType":"Block","src":"2323:464:34","statements":[{"assignments":[8442],"declarations":[{"constant":false,"id":8442,"mutability":"mutable","name":"r","nameLocation":"2345:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2337:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8441,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8443,"nodeType":"VariableDeclarationStatement","src":"2337:9:34"},{"assignments":[8445],"declarations":[{"constant":false,"id":8445,"mutability":"mutable","name":"s","nameLocation":"2368:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2360:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8444,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8446,"nodeType":"VariableDeclarationStatement","src":"2360:9:34"},{"assignments":[8448],"declarations":[{"constant":false,"id":8448,"mutability":"mutable","name":"v","nameLocation":"2389:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2383:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8447,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8449,"nodeType":"VariableDeclarationStatement","src":"2383:7:34"},{"AST":{"nodeType":"YulBlock","src":"2560:171:34","statements":[{"nodeType":"YulAssignment","src":"2578:32:34","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2593:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2604:4:34","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2589:3:34"},"nodeType":"YulFunctionCall","src":"2589:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2583:5:34"},"nodeType":"YulFunctionCall","src":"2583:27:34"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"2578:1:34"}]},{"nodeType":"YulAssignment","src":"2627:32:34","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2642:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2653:4:34","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2638:3:34"},"nodeType":"YulFunctionCall","src":"2638:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2632:5:34"},"nodeType":"YulFunctionCall","src":"2632:27:34"},"variableNames":[{"name":"s","nodeType":"YulIdentifier","src":"2627:1:34"}]},{"nodeType":"YulAssignment","src":"2676:41:34","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2686:1:34","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2699:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2710:4:34","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2695:3:34"},"nodeType":"YulFunctionCall","src":"2695:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2689:5:34"},"nodeType":"YulFunctionCall","src":"2689:27:34"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"2681:4:34"},"nodeType":"YulFunctionCall","src":"2681:36:34"},"variableNames":[{"name":"v","nodeType":"YulIdentifier","src":"2676:1:34"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8442,"isOffset":false,"isSlot":false,"src":"2578:1:34","valueSize":1},{"declaration":8445,"isOffset":false,"isSlot":false,"src":"2627:1:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2593:9:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2642:9:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2699:9:34","valueSize":1},{"declaration":8448,"isOffset":false,"isSlot":false,"src":"2676:1:34","valueSize":1}],"flags":["memory-safe"],"id":8450,"nodeType":"InlineAssembly","src":"2535:196:34"},{"expression":{"arguments":[{"id":8452,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8425,"src":"2762:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8453,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8448,"src":"2768:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8454,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8442,"src":"2771:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8455,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8445,"src":"2774:1:34","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":8451,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"2751:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8436,"id":8457,"nodeType":"Return","src":"2744:32:34"}]}}]},"documentation":{"id":8423,"nodeType":"StructuredDocumentation","src":"857:1267:34","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":8475,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:34","nodeType":"FunctionDefinition","parameters":{"id":8428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8425,"mutability":"mutable","name":"hash","nameLocation":"2166:4:34","nodeType":"VariableDeclaration","scope":8475,"src":"2158:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8424,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8427,"mutability":"mutable","name":"signature","nameLocation":"2193:9:34","nodeType":"VariableDeclaration","scope":8475,"src":"2180:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8426,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:34"},"returnParameters":{"id":8436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8430,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:34","nodeType":"VariableDeclaration","scope":8475,"src":"2232:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8429,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8433,"mutability":"mutable","name":"err","nameLocation":"2264:3:34","nodeType":"VariableDeclaration","scope":8475,"src":"2251:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8432,"nodeType":"UserDefinedTypeName","pathNode":{"id":8431,"name":"RecoverError","nameLocations":["2251:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"2251:12:34"},"referencedDeclaration":8409,"src":"2251:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8435,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:34","nodeType":"VariableDeclaration","scope":8475,"src":"2269:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8434,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:34"},"scope":8749,"src":"2129:778:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8504,"nodeType":"Block","src":"3801:168:34","statements":[{"assignments":[8486,8489,8491],"declarations":[{"constant":false,"id":8486,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:34","nodeType":"VariableDeclaration","scope":8504,"src":"3812:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8485,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8489,"mutability":"mutable","name":"error","nameLocation":"3844:5:34","nodeType":"VariableDeclaration","scope":8504,"src":"3831:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8488,"nodeType":"UserDefinedTypeName","pathNode":{"id":8487,"name":"RecoverError","nameLocations":["3831:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"3831:12:34"},"referencedDeclaration":8409,"src":"3831:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8491,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:34","nodeType":"VariableDeclaration","scope":8504,"src":"3851:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8490,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8496,"initialValue":{"arguments":[{"id":8493,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8478,"src":"3882:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8494,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8480,"src":"3888:9:34","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":8492,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8475,"src":"3871:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:34"},{"expression":{"arguments":[{"id":8498,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"3920:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8499,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8491,"src":"3927:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8497,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"3908:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8501,"nodeType":"ExpressionStatement","src":"3908:28:34"},{"expression":{"id":8502,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8486,"src":"3953:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8484,"id":8503,"nodeType":"Return","src":"3946:16:34"}]},"documentation":{"id":8476,"nodeType":"StructuredDocumentation","src":"2913:796:34","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":8505,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:34","nodeType":"FunctionDefinition","parameters":{"id":8481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8478,"mutability":"mutable","name":"hash","nameLocation":"3739:4:34","nodeType":"VariableDeclaration","scope":8505,"src":"3731:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8477,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8480,"mutability":"mutable","name":"signature","nameLocation":"3758:9:34","nodeType":"VariableDeclaration","scope":8505,"src":"3745:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8479,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:34"},"returnParameters":{"id":8484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8483,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8505,"src":"3792:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8482,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:34"},"scope":8749,"src":"3714:255:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8554,"nodeType":"Block","src":"4348:342:34","statements":[{"id":8553,"nodeType":"UncheckedBlock","src":"4358:326:34","statements":[{"assignments":[8523],"declarations":[{"constant":false,"id":8523,"mutability":"mutable","name":"s","nameLocation":"4390:1:34","nodeType":"VariableDeclaration","scope":8553,"src":"4382:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8522,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8530,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8524,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8512,"src":"4394:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":8527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:34","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":8526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8525,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:34","typeDescriptions":{}}},"id":8528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:34"},{"assignments":[8532],"declarations":[{"constant":false,"id":8532,"mutability":"mutable","name":"v","nameLocation":"4591:1:34","nodeType":"VariableDeclaration","scope":8553,"src":"4585:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8531,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8545,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8537,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8512,"src":"4610:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8535,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:34","typeDescriptions":{}}},"id":8538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":8539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:34","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8541,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":8542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:34","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8533,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:34","typeDescriptions":{}}},"id":8544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:34"},{"expression":{"arguments":[{"id":8547,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"4659:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8548,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8532,"src":"4665:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8549,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"4668:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8550,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8523,"src":"4671:1:34","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":8546,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"4648:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8521,"id":8552,"nodeType":"Return","src":"4641:32:34"}]}]},"documentation":{"id":8506,"nodeType":"StructuredDocumentation","src":"3975:205:34","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":8555,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:34","nodeType":"FunctionDefinition","parameters":{"id":8513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8508,"mutability":"mutable","name":"hash","nameLocation":"4222:4:34","nodeType":"VariableDeclaration","scope":8555,"src":"4214:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8507,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8510,"mutability":"mutable","name":"r","nameLocation":"4244:1:34","nodeType":"VariableDeclaration","scope":8555,"src":"4236:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8509,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8512,"mutability":"mutable","name":"vs","nameLocation":"4263:2:34","nodeType":"VariableDeclaration","scope":8555,"src":"4255:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8511,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:34"},"returnParameters":{"id":8521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8515,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:34","nodeType":"VariableDeclaration","scope":8555,"src":"4295:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8514,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8518,"mutability":"mutable","name":"err","nameLocation":"4327:3:34","nodeType":"VariableDeclaration","scope":8555,"src":"4314:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8517,"nodeType":"UserDefinedTypeName","pathNode":{"id":8516,"name":"RecoverError","nameLocations":["4314:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"4314:12:34"},"referencedDeclaration":8409,"src":"4314:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8520,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:34","nodeType":"VariableDeclaration","scope":8555,"src":"4332:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8519,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:34"},"scope":8749,"src":"4185:505:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8587,"nodeType":"Block","src":"4903:164:34","statements":[{"assignments":[8568,8571,8573],"declarations":[{"constant":false,"id":8568,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:34","nodeType":"VariableDeclaration","scope":8587,"src":"4914:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8567,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8571,"mutability":"mutable","name":"error","nameLocation":"4946:5:34","nodeType":"VariableDeclaration","scope":8587,"src":"4933:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8570,"nodeType":"UserDefinedTypeName","pathNode":{"id":8569,"name":"RecoverError","nameLocations":["4933:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"4933:12:34"},"referencedDeclaration":8409,"src":"4933:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8573,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:34","nodeType":"VariableDeclaration","scope":8587,"src":"4953:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8572,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8579,"initialValue":{"arguments":[{"id":8575,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8558,"src":"4984:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8576,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8560,"src":"4990:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8577,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8562,"src":"4993:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8574,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8555,"src":"4973:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:34"},{"expression":{"arguments":[{"id":8581,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8571,"src":"5018:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8582,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8573,"src":"5025:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8580,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"5006:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8584,"nodeType":"ExpressionStatement","src":"5006:28:34"},{"expression":{"id":8585,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8568,"src":"5051:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8566,"id":8586,"nodeType":"Return","src":"5044:16:34"}]},"documentation":{"id":8556,"nodeType":"StructuredDocumentation","src":"4696:116:34","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":8588,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:34","nodeType":"FunctionDefinition","parameters":{"id":8563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8558,"mutability":"mutable","name":"hash","nameLocation":"4842:4:34","nodeType":"VariableDeclaration","scope":8588,"src":"4834:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8557,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8560,"mutability":"mutable","name":"r","nameLocation":"4856:1:34","nodeType":"VariableDeclaration","scope":8588,"src":"4848:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8562,"mutability":"mutable","name":"vs","nameLocation":"4867:2:34","nodeType":"VariableDeclaration","scope":8588,"src":"4859:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8561,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:34"},"returnParameters":{"id":8566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8565,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8588,"src":"4894:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8564,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:34"},"scope":8749,"src":"4817:250:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8662,"nodeType":"Block","src":"5382:1372:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8609,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6278:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8607,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:34","typeDescriptions":{}}},"id":8610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":8611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:34","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8623,"nodeType":"IfStatement","src":"6266:164:34","trueBody":{"id":8622,"nodeType":"Block","src":"6351:79:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:34","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":8614,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8613,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:34","typeDescriptions":{}}},"id":8616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8617,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6385:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:34","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":8408,"src":"6385:30:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8619,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6417:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8620,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8621,"nodeType":"Return","src":"6365:54:34"}]}},{"assignments":[8625],"declarations":[{"constant":false,"id":8625,"mutability":"mutable","name":"signer","nameLocation":"6532:6:34","nodeType":"VariableDeclaration","scope":8662,"src":"6524:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8624,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8632,"initialValue":{"arguments":[{"id":8627,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"6551:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8628,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8593,"src":"6557:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8629,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"6560:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8630,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6563:1:34","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":8626,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6541:9:34","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":8631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:34"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8633,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"6579:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":8636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:34","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":8635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8634,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:34","typeDescriptions":{}}},"id":8637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8652,"nodeType":"IfStatement","src":"6575:113:34","trueBody":{"id":8651,"nodeType":"Block","src":"6601:87:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:34","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":8640,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8639,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:34","typeDescriptions":{}}},"id":8642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8643,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6635:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:34","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":8406,"src":"6635:29:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":8647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:34","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":8646,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8645,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:34","typeDescriptions":{}}},"id":8648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8649,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8650,"nodeType":"Return","src":"6615:62:34"}]}},{"expression":{"components":[{"id":8653,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"6706:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8654,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6714:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:34","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"6714:20:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":8658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:34","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":8657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8656,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:34","typeDescriptions":{}}},"id":8659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8660,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8661,"nodeType":"Return","src":"6698:49:34"}]},"documentation":{"id":8589,"nodeType":"StructuredDocumentation","src":"5073:125:34","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":8663,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:34","nodeType":"FunctionDefinition","parameters":{"id":8598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8591,"mutability":"mutable","name":"hash","nameLocation":"5240:4:34","nodeType":"VariableDeclaration","scope":8663,"src":"5232:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8593,"mutability":"mutable","name":"v","nameLocation":"5260:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5254:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8592,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8595,"mutability":"mutable","name":"r","nameLocation":"5279:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5271:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8594,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8597,"mutability":"mutable","name":"s","nameLocation":"5298:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5290:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8596,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:34"},"returnParameters":{"id":8606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8600,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:34","nodeType":"VariableDeclaration","scope":8663,"src":"5329:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8599,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8603,"mutability":"mutable","name":"err","nameLocation":"5361:3:34","nodeType":"VariableDeclaration","scope":8663,"src":"5348:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8602,"nodeType":"UserDefinedTypeName","pathNode":{"id":8601,"name":"RecoverError","nameLocations":["5348:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"5348:12:34"},"referencedDeclaration":8409,"src":"5348:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8605,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:34","nodeType":"VariableDeclaration","scope":8663,"src":"5366:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8604,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:34"},"scope":8749,"src":"5203:1551:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8698,"nodeType":"Block","src":"6981:166:34","statements":[{"assignments":[8678,8681,8683],"declarations":[{"constant":false,"id":8678,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:34","nodeType":"VariableDeclaration","scope":8698,"src":"6992:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8677,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8681,"mutability":"mutable","name":"error","nameLocation":"7024:5:34","nodeType":"VariableDeclaration","scope":8698,"src":"7011:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8680,"nodeType":"UserDefinedTypeName","pathNode":{"id":8679,"name":"RecoverError","nameLocations":["7011:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"7011:12:34"},"referencedDeclaration":8409,"src":"7011:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8683,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:34","nodeType":"VariableDeclaration","scope":8698,"src":"7031:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8690,"initialValue":{"arguments":[{"id":8685,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8666,"src":"7062:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8686,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8668,"src":"7068:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8687,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8670,"src":"7071:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8688,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8672,"src":"7074:1:34","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":8684,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"7051:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:34"},{"expression":{"arguments":[{"id":8692,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8681,"src":"7098:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8693,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8683,"src":"7105:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8691,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"7086:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8695,"nodeType":"ExpressionStatement","src":"7086:28:34"},{"expression":{"id":8696,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8678,"src":"7131:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8676,"id":8697,"nodeType":"Return","src":"7124:16:34"}]},"documentation":{"id":8664,"nodeType":"StructuredDocumentation","src":"6760:122:34","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":8699,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:34","nodeType":"FunctionDefinition","parameters":{"id":8673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8666,"mutability":"mutable","name":"hash","nameLocation":"6912:4:34","nodeType":"VariableDeclaration","scope":8699,"src":"6904:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8665,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8668,"mutability":"mutable","name":"v","nameLocation":"6924:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6918:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8667,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8670,"mutability":"mutable","name":"r","nameLocation":"6935:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6927:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8669,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8672,"mutability":"mutable","name":"s","nameLocation":"6946:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6938:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8671,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:34"},"returnParameters":{"id":8676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8699,"src":"6972:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8674,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:34"},"scope":8749,"src":"6887:260:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8747,"nodeType":"Block","src":"7352:460:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8708,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7366:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8709,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7375:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8710,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:34","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"7375:20:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8714,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7462:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8715,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7471:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8716,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:34","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":8406,"src":"7471:29:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8722,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7567:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8723,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7576:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8724,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:34","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":8407,"src":"7576:35:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8734,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7701:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8735,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7710:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:34","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":8408,"src":"7710:30:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8743,"nodeType":"IfStatement","src":"7697:109:34","trueBody":{"id":8742,"nodeType":"Block","src":"7742:64:34","statements":[{"errorCall":{"arguments":[{"id":8739,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8705,"src":"7786:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8738,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8422,"src":"7763:22:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":8740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8741,"nodeType":"RevertStatement","src":"7756:39:34"}]}},"id":8744,"nodeType":"IfStatement","src":"7563:243:34","trueBody":{"id":8733,"nodeType":"Block","src":"7613:78:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":8729,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8705,"src":"7670:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8727,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:34","typeDescriptions":{}}},"id":8730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8726,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8417,"src":"7634:27:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":8731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8732,"nodeType":"RevertStatement","src":"7627:53:34"}]}},"id":8745,"nodeType":"IfStatement","src":"7458:348:34","trueBody":{"id":8721,"nodeType":"Block","src":"7502:55:34","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8718,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8412,"src":"7523:21:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8720,"nodeType":"RevertStatement","src":"7516:30:34"}]}},"id":8746,"nodeType":"IfStatement","src":"7362:444:34","trueBody":{"id":8713,"nodeType":"Block","src":"7397:55:34","statements":[{"functionReturnParameters":8707,"id":8712,"nodeType":"Return","src":"7411:7:34"}]}}]},"documentation":{"id":8700,"nodeType":"StructuredDocumentation","src":"7153:122:34","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":8748,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:34","nodeType":"FunctionDefinition","parameters":{"id":8706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8703,"mutability":"mutable","name":"error","nameLocation":"7314:5:34","nodeType":"VariableDeclaration","scope":8748,"src":"7301:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8702,"nodeType":"UserDefinedTypeName","pathNode":{"id":8701,"name":"RecoverError","nameLocations":["7301:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"7301:12:34"},"referencedDeclaration":8409,"src":"7301:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8705,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:34","nodeType":"VariableDeclaration","scope":8748,"src":"7321:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:34"},"returnParameters":{"id":8707,"nodeType":"ParameterList","parameters":[],"src":"7352:0:34"},"scope":8749,"src":"7280:532:34","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":8750,"src":"344:7470:34","usedErrors":[8412,8417,8422],"usedEvents":[]}],"src":"112:7703:34"},"id":34},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","exportedSymbols":{"EIP712":[8976],"IERC5267":[5346],"MessageHashUtils":[9050],"ShortString":[6866],"ShortStrings":[7077]},"id":8977,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8751,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:35"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"./MessageHashUtils.sol","id":8753,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":9051,"src":"139:56:35","symbolAliases":[{"foreign":{"id":8752,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9050,"src":"147:16:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","file":"../ShortStrings.sol","id":8756,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":7078,"src":"196:62:35","symbolAliases":[{"foreign":{"id":8754,"name":"ShortStrings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7077,"src":"204:12:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8755,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"218:11:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"../../interfaces/IERC5267.sol","id":8758,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":5347,"src":"259:55:35","symbolAliases":[{"foreign":{"id":8757,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"267:8:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":8760,"name":"IERC5267","nameLocations":["1988:8:35"],"nodeType":"IdentifierPath","referencedDeclaration":5346,"src":"1988:8:35"},"id":8761,"nodeType":"InheritanceSpecifier","src":"1988:8:35"}],"canonicalName":"EIP712","contractDependencies":[],"contractKind":"contract","documentation":{"id":8759,"nodeType":"StructuredDocumentation","src":"316:1643:35","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":8976,"linearizedBaseContracts":[8976,5346],"name":"EIP712","nameLocation":"1978:6:35","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8763,"libraryName":{"id":8762,"name":"ShortStrings","nameLocations":["2009:12:35"],"nodeType":"IdentifierPath","referencedDeclaration":7077,"src":"2009:12:35"},"nodeType":"UsingForDirective","src":"2003:25:35"},{"constant":true,"id":8768,"mutability":"constant","name":"TYPE_HASH","nameLocation":"2059:9:35","nodeType":"VariableDeclaration","scope":8976,"src":"2034:140:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8764,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2034:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":8766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2089:84:35","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":8765,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2079:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2079:95:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8770,"mutability":"immutable","name":"_cachedDomainSeparator","nameLocation":"2399:22:35","nodeType":"VariableDeclaration","scope":8976,"src":"2373:48:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2373:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8772,"mutability":"immutable","name":"_cachedChainId","nameLocation":"2453:14:35","nodeType":"VariableDeclaration","scope":8976,"src":"2427:40:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8771,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":8774,"mutability":"immutable","name":"_cachedThis","nameLocation":"2499:11:35","nodeType":"VariableDeclaration","scope":8976,"src":"2473:37:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8773,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":false,"id":8776,"mutability":"immutable","name":"_hashedName","nameLocation":"2543:11:35","nodeType":"VariableDeclaration","scope":8976,"src":"2517:37:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8775,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2517:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8778,"mutability":"immutable","name":"_hashedVersion","nameLocation":"2586:14:35","nodeType":"VariableDeclaration","scope":8976,"src":"2560:40:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8777,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2560:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8781,"mutability":"immutable","name":"_name","nameLocation":"2637:5:35","nodeType":"VariableDeclaration","scope":8976,"src":"2607:35:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":8780,"nodeType":"UserDefinedTypeName","pathNode":{"id":8779,"name":"ShortString","nameLocations":["2607:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2607:11:35"},"referencedDeclaration":6866,"src":"2607:11:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":8784,"mutability":"immutable","name":"_version","nameLocation":"2678:8:35","nodeType":"VariableDeclaration","scope":8976,"src":"2648:38:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":8783,"nodeType":"UserDefinedTypeName","pathNode":{"id":8782,"name":"ShortString","nameLocations":["2648:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2648:11:35"},"referencedDeclaration":6866,"src":"2648:11:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":8786,"mutability":"mutable","name":"_nameFallback","nameLocation":"2707:13:35","nodeType":"VariableDeclaration","scope":8976,"src":"2692:28:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":8785,"name":"string","nodeType":"ElementaryTypeName","src":"2692:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":8788,"mutability":"mutable","name":"_versionFallback","nameLocation":"2741:16:35","nodeType":"VariableDeclaration","scope":8976,"src":"2726:31:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":8787,"name":"string","nodeType":"ElementaryTypeName","src":"2726:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":8845,"nodeType":"Block","src":"3383:376:35","statements":[{"expression":{"id":8801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8796,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"3393:5:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8799,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"3432:13:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8797,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8791,"src":"3401:4:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3406:25:35","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7018,"src":"3401:30:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":8800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3401:45:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"src":"3393:53:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8802,"nodeType":"ExpressionStatement","src":"3393:53:35"},{"expression":{"id":8808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8803,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"3456:8:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8806,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8788,"src":"3501:16:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8804,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8793,"src":"3467:7:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3475:25:35","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7018,"src":"3467:33:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":8807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3467:51:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"src":"3456:62:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8809,"nodeType":"ExpressionStatement","src":"3456:62:35"},{"expression":{"id":8817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8810,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8776,"src":"3528:11:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8814,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8791,"src":"3558:4:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3552:5:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8812,"name":"bytes","nodeType":"ElementaryTypeName","src":"3552:5:35","typeDescriptions":{}}},"id":8815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3552:11:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8811,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3542:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3542:22:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3528:36:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8818,"nodeType":"ExpressionStatement","src":"3528:36:35"},{"expression":{"id":8826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8819,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"3574:14:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8823,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8793,"src":"3607:7:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8822,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3601:5:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8821,"name":"bytes","nodeType":"ElementaryTypeName","src":"3601:5:35","typeDescriptions":{}}},"id":8824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3601:14:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8820,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3591:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3591:25:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3574:42:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8827,"nodeType":"ExpressionStatement","src":"3574:42:35"},{"expression":{"id":8831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8828,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8772,"src":"3627:14:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8829,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3644:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3650:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"3644:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3627:30:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8832,"nodeType":"ExpressionStatement","src":"3627:30:35"},{"expression":{"id":8836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8833,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8770,"src":"3667:22:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":8834,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8893,"src":"3692:21:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3692:23:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3667:48:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8837,"nodeType":"ExpressionStatement","src":"3667:48:35"},{"expression":{"id":8843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8838,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8774,"src":"3725:11:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8841,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3747:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8840,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3739:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8839,"name":"address","nodeType":"ElementaryTypeName","src":"3739:7:35","typeDescriptions":{}}},"id":8842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3739:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3725:27:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8844,"nodeType":"ExpressionStatement","src":"3725:27:35"}]},"documentation":{"id":8789,"nodeType":"StructuredDocumentation","src":"2764:559:35","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":8846,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8791,"mutability":"mutable","name":"name","nameLocation":"3354:4:35","nodeType":"VariableDeclaration","scope":8846,"src":"3340:18:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8790,"name":"string","nodeType":"ElementaryTypeName","src":"3340:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8793,"mutability":"mutable","name":"version","nameLocation":"3374:7:35","nodeType":"VariableDeclaration","scope":8846,"src":"3360:21:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8792,"name":"string","nodeType":"ElementaryTypeName","src":"3360:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3339:43:35"},"returnParameters":{"id":8795,"nodeType":"ParameterList","parameters":[],"src":"3383:0:35"},"scope":8976,"src":"3328:431:35","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8871,"nodeType":"Block","src":"3907:200:35","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8854,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3929:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3921:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8852,"name":"address","nodeType":"ElementaryTypeName","src":"3921:7:35","typeDescriptions":{}}},"id":8855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3921:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8856,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8774,"src":"3938:11:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3921:28:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8858,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3953:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3959:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"3953:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8860,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8772,"src":"3970:14:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3953:31:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3921:63:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8869,"nodeType":"Block","src":"4046:55:35","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8866,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8893,"src":"4067:21:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4067:23:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8851,"id":8868,"nodeType":"Return","src":"4060:30:35"}]},"id":8870,"nodeType":"IfStatement","src":"3917:184:35","trueBody":{"id":8865,"nodeType":"Block","src":"3986:54:35","statements":[{"expression":{"id":8863,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8770,"src":"4007:22:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8851,"id":8864,"nodeType":"Return","src":"4000:29:35"}]}}]},"documentation":{"id":8847,"nodeType":"StructuredDocumentation","src":"3765:75:35","text":" @dev Returns the domain separator for the current chain."},"id":8872,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3854:18:35","nodeType":"FunctionDefinition","parameters":{"id":8848,"nodeType":"ParameterList","parameters":[],"src":"3872:2:35"},"returnParameters":{"id":8851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8850,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8872,"src":"3898:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8849,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3898:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3897:9:35"},"scope":8976,"src":"3845:262:35","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8892,"nodeType":"Block","src":"4177:115:35","statements":[{"expression":{"arguments":[{"arguments":[{"id":8880,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8768,"src":"4215:9:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8881,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8776,"src":"4226:11:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8882,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"4239:14:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":8883,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4255:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4261:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"4255:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":8887,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4278:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4270:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8885,"name":"address","nodeType":"ElementaryTypeName","src":"4270:7:35","typeDescriptions":{}}},"id":8888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4270:13:35","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":8878,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4204:3:35","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4208:6:35","memberName":"encode","nodeType":"MemberAccess","src":"4204:10:35","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4204:80:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8877,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4194:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4194:91:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8876,"id":8891,"nodeType":"Return","src":"4187:98:35"}]},"id":8893,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4122:21:35","nodeType":"FunctionDefinition","parameters":{"id":8873,"nodeType":"ParameterList","parameters":[],"src":"4143:2:35"},"returnParameters":{"id":8876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8893,"src":"4168:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4168:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4167:9:35"},"scope":8976,"src":"4113:179:35","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":8908,"nodeType":"Block","src":"5003:90:35","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8903,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8872,"src":"5053:18:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5053:20:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8905,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8896,"src":"5075:10:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":8901,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9050,"src":"5020:16:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$9050_$","typeString":"type(library MessageHashUtils)"}},"id":8902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5037:15:35","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":9049,"src":"5020:32:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":8906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5020:66:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8900,"id":8907,"nodeType":"Return","src":"5013:73:35"}]},"documentation":{"id":8894,"nodeType":"StructuredDocumentation","src":"4298:614:35","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":8909,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"4926:16:35","nodeType":"FunctionDefinition","parameters":{"id":8897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8896,"mutability":"mutable","name":"structHash","nameLocation":"4951:10:35","nodeType":"VariableDeclaration","scope":8909,"src":"4943:18:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8895,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4943:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4942:20:35"},"returnParameters":{"id":8900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8909,"src":"4994:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8898,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4994:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4993:9:35"},"scope":8976,"src":"4917:176:35","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5345],"body":{"id":8950,"nodeType":"Block","src":"5472:229:35","statements":[{"expression":{"components":[{"hexValue":"0f","id":8928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5503:7:35","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":8929,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8963,"src":"5533:11:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":8930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5533:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8931,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8975,"src":"5560:14:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":8932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5560:16:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":8933,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5590:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5596:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"5590:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":8937,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5625:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5617:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8935,"name":"address","nodeType":"ElementaryTypeName","src":"5617:7:35","typeDescriptions":{}}},"id":8938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5617:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":8941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5652:1:35","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":8940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5644:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8939,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5644:7:35","typeDescriptions":{}}},"id":8942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5644:10:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":8946,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5682:1:35","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":8945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5668:13:35","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":8943,"name":"uint256","nodeType":"ElementaryTypeName","src":"5672:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8944,"nodeType":"ArrayTypeName","src":"5672:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":8947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5668:16:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":8948,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5489:205:35","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":8927,"id":8949,"nodeType":"Return","src":"5482:212:35"}]},"documentation":{"id":8910,"nodeType":"StructuredDocumentation","src":"5099:40:35","text":" @dev See {IERC-5267}."},"functionSelector":"84b0196e","id":8951,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5153:12:35","nodeType":"FunctionDefinition","parameters":{"id":8911,"nodeType":"ParameterList","parameters":[],"src":"5165:2:35"},"returnParameters":{"id":8927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8913,"mutability":"mutable","name":"fields","nameLocation":"5249:6:35","nodeType":"VariableDeclaration","scope":8951,"src":"5242:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8912,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5242:6:35","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":8915,"mutability":"mutable","name":"name","nameLocation":"5283:4:35","nodeType":"VariableDeclaration","scope":8951,"src":"5269:18:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8914,"name":"string","nodeType":"ElementaryTypeName","src":"5269:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8917,"mutability":"mutable","name":"version","nameLocation":"5315:7:35","nodeType":"VariableDeclaration","scope":8951,"src":"5301:21:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8916,"name":"string","nodeType":"ElementaryTypeName","src":"5301:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8919,"mutability":"mutable","name":"chainId","nameLocation":"5344:7:35","nodeType":"VariableDeclaration","scope":8951,"src":"5336:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8918,"name":"uint256","nodeType":"ElementaryTypeName","src":"5336:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8921,"mutability":"mutable","name":"verifyingContract","nameLocation":"5373:17:35","nodeType":"VariableDeclaration","scope":8951,"src":"5365:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8920,"name":"address","nodeType":"ElementaryTypeName","src":"5365:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8923,"mutability":"mutable","name":"salt","nameLocation":"5412:4:35","nodeType":"VariableDeclaration","scope":8951,"src":"5404:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8922,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5404:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8926,"mutability":"mutable","name":"extensions","nameLocation":"5447:10:35","nodeType":"VariableDeclaration","scope":8951,"src":"5430:27:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":8924,"name":"uint256","nodeType":"ElementaryTypeName","src":"5430:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8925,"nodeType":"ArrayTypeName","src":"5430:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5228:239:35"},"scope":8976,"src":"5144:557:35","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":8962,"nodeType":"Block","src":"6082:65:35","statements":[{"expression":{"arguments":[{"id":8959,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"6126:13:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8957,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"6099:5:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6105:20:35","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7045,"src":"6099:26:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":8960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6099:41:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8956,"id":8961,"nodeType":"Return","src":"6092:48:35"}]},"documentation":{"id":8952,"nodeType":"StructuredDocumentation","src":"5707:256:35","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":8963,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6030:11:35","nodeType":"FunctionDefinition","parameters":{"id":8953,"nodeType":"ParameterList","parameters":[],"src":"6041:2:35"},"returnParameters":{"id":8956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8955,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8963,"src":"6067:13:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8954,"name":"string","nodeType":"ElementaryTypeName","src":"6067:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6066:15:35"},"scope":8976,"src":"6021:126:35","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8974,"nodeType":"Block","src":"6537:71:35","statements":[{"expression":{"arguments":[{"id":8971,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8788,"src":"6584:16:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8969,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"6554:8:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6563:20:35","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7045,"src":"6554:29:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":8972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6554:47:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8968,"id":8973,"nodeType":"Return","src":"6547:54:35"}]},"documentation":{"id":8964,"nodeType":"StructuredDocumentation","src":"6153:262:35","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":8975,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6482:14:35","nodeType":"FunctionDefinition","parameters":{"id":8965,"nodeType":"ParameterList","parameters":[],"src":"6496:2:35"},"returnParameters":{"id":8968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8975,"src":"6522:13:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8966,"name":"string","nodeType":"ElementaryTypeName","src":"6522:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6521:15:35"},"scope":8976,"src":"6473:135:35","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":8977,"src":"1960:4650:35","usedErrors":[6874,6876],"usedEvents":[5326]}],"src":"113:6498:35"},"id":35},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[9050],"Strings":[8401]},"id":9051,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8978,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:36"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":8980,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9051,"sourceUnit":8402,"src":"149:39:36","symbolAliases":[{"foreign":{"id":8979,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"157:7:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":8981,"nodeType":"StructuredDocumentation","src":"190:330:36","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":9050,"linearizedBaseContracts":[9050],"name":"MessageHashUtils","nameLocation":"529:16:36","nodeType":"ContractDefinition","nodes":[{"body":{"id":8990,"nodeType":"Block","src":"1314:341:36","statements":[{"AST":{"nodeType":"YulBlock","src":"1349:300:36","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1370:4:36","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nodeType":"YulLiteral","src":"1376:34:36","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1363:6:36"},"nodeType":"YulFunctionCall","src":"1363:48:36"},"nodeType":"YulExpressionStatement","src":"1363:48:36"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1472:4:36","type":"","value":"0x1c"},{"name":"messageHash","nodeType":"YulIdentifier","src":"1478:11:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1465:6:36"},"nodeType":"YulFunctionCall","src":"1465:25:36"},"nodeType":"YulExpressionStatement","src":"1465:25:36"},{"nodeType":"YulAssignment","src":"1544:31:36","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1564:4:36","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1570:4:36","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"1554:9:36"},"nodeType":"YulFunctionCall","src":"1554:21:36"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"1544:6:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8987,"isOffset":false,"isSlot":false,"src":"1544:6:36","valueSize":1},{"declaration":8984,"isOffset":false,"isSlot":false,"src":"1478:11:36","valueSize":1}],"flags":["memory-safe"],"id":8989,"nodeType":"InlineAssembly","src":"1324:325:36"}]},"documentation":{"id":8982,"nodeType":"StructuredDocumentation","src":"552:665:36","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://eth.wiki/json-rpc/API#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":8991,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1231:22:36","nodeType":"FunctionDefinition","parameters":{"id":8985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8984,"mutability":"mutable","name":"messageHash","nameLocation":"1262:11:36","nodeType":"VariableDeclaration","scope":8991,"src":"1254:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8983,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1254:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1253:21:36"},"returnParameters":{"id":8988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8987,"mutability":"mutable","name":"digest","nameLocation":"1306:6:36","nodeType":"VariableDeclaration","scope":8991,"src":"1298:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8986,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1298:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1297:16:36"},"scope":9050,"src":"1222:433:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9016,"nodeType":"Block","src":"2207:143:36","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":9003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2259:32:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":9008,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8994,"src":"2316:7:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2324:6:36","memberName":"length","nodeType":"MemberAccess","src":"2316:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9006,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"2299:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$8401_$","typeString":"type(library Strings)"}},"id":9007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:8:36","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":7279,"src":"2299:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":9010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9005,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2293:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9004,"name":"bytes","nodeType":"ElementaryTypeName","src":"2293:5:36","typeDescriptions":{}}},"id":9011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2293:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9012,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8994,"src":"2334:7:36","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":9001,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2246:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9000,"name":"bytes","nodeType":"ElementaryTypeName","src":"2246:5:36","typeDescriptions":{}}},"id":9002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2252:6:36","memberName":"concat","nodeType":"MemberAccess","src":"2246:12:36","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:96:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8999,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2236:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2236:107:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8998,"id":9015,"nodeType":"Return","src":"2217:126:36"}]},"documentation":{"id":8992,"nodeType":"StructuredDocumentation","src":"1661:455:36","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://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":9017,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2130:22:36","nodeType":"FunctionDefinition","parameters":{"id":8995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8994,"mutability":"mutable","name":"message","nameLocation":"2166:7:36","nodeType":"VariableDeclaration","scope":9017,"src":"2153:20:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8993,"name":"bytes","nodeType":"ElementaryTypeName","src":"2153:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2152:22:36"},"returnParameters":{"id":8998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9017,"src":"2198:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8996,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2198:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2197:9:36"},"scope":9050,"src":"2121:229:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9036,"nodeType":"Block","src":"2804:80:36","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":9030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2848:10:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":9031,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"2860:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9032,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9022,"src":"2871:4:36","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":9028,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2831:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:12:36","memberName":"encodePacked","nodeType":"MemberAccess","src":"2831:16:36","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:45:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9027,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2821:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:56:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9026,"id":9035,"nodeType":"Return","src":"2814:63:36"}]},"documentation":{"id":9018,"nodeType":"StructuredDocumentation","src":"2356:332:36","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":9037,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2702:31:36","nodeType":"FunctionDefinition","parameters":{"id":9023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9020,"mutability":"mutable","name":"validator","nameLocation":"2742:9:36","nodeType":"VariableDeclaration","scope":9037,"src":"2734:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9019,"name":"address","nodeType":"ElementaryTypeName","src":"2734:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9022,"mutability":"mutable","name":"data","nameLocation":"2766:4:36","nodeType":"VariableDeclaration","scope":9037,"src":"2753:17:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9021,"name":"bytes","nodeType":"ElementaryTypeName","src":"2753:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2733:38:36"},"returnParameters":{"id":9026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9037,"src":"2795:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9024,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2795:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2794:9:36"},"scope":9050,"src":"2693:191:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9048,"nodeType":"Block","src":"3435:265:36","statements":[{"AST":{"nodeType":"YulBlock","src":"3470:224:36","statements":[{"nodeType":"YulVariableDeclaration","src":"3484:22:36","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3501:4:36","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3495:5:36"},"nodeType":"YulFunctionCall","src":"3495:11:36"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"3488:3:36","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3526:3:36"},{"hexValue":"1901","kind":"string","nodeType":"YulLiteral","src":"3531:10:36","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3519:6:36"},"nodeType":"YulFunctionCall","src":"3519:23:36"},"nodeType":"YulExpressionStatement","src":"3519:23:36"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3566:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3571:4:36","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3562:3:36"},"nodeType":"YulFunctionCall","src":"3562:14:36"},{"name":"domainSeparator","nodeType":"YulIdentifier","src":"3578:15:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3555:6:36"},"nodeType":"YulFunctionCall","src":"3555:39:36"},"nodeType":"YulExpressionStatement","src":"3555:39:36"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3618:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3623:4:36","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3614:3:36"},"nodeType":"YulFunctionCall","src":"3614:14:36"},{"name":"structHash","nodeType":"YulIdentifier","src":"3630:10:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3607:6:36"},"nodeType":"YulFunctionCall","src":"3607:34:36"},"nodeType":"YulExpressionStatement","src":"3607:34:36"},{"nodeType":"YulAssignment","src":"3654:30:36","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3674:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3679:4:36","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3664:9:36"},"nodeType":"YulFunctionCall","src":"3664:20:36"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"3654:6:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9045,"isOffset":false,"isSlot":false,"src":"3654:6:36","valueSize":1},{"declaration":9040,"isOffset":false,"isSlot":false,"src":"3578:15:36","valueSize":1},{"declaration":9042,"isOffset":false,"isSlot":false,"src":"3630:10:36","valueSize":1}],"flags":["memory-safe"],"id":9047,"nodeType":"InlineAssembly","src":"3445:249:36"}]},"documentation":{"id":9038,"nodeType":"StructuredDocumentation","src":"2890:431:36","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":9049,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3335:15:36","nodeType":"FunctionDefinition","parameters":{"id":9043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9040,"mutability":"mutable","name":"domainSeparator","nameLocation":"3359:15:36","nodeType":"VariableDeclaration","scope":9049,"src":"3351:23:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9039,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3351:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9042,"mutability":"mutable","name":"structHash","nameLocation":"3384:10:36","nodeType":"VariableDeclaration","scope":9049,"src":"3376:18:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3376:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3350:45:36"},"returnParameters":{"id":9046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9045,"mutability":"mutable","name":"digest","nameLocation":"3427:6:36","nodeType":"VariableDeclaration","scope":9049,"src":"3419:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9044,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3419:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3418:16:36"},"scope":9050,"src":"3326:374:36","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9051,"src":"521:3181:36","usedErrors":[],"usedEvents":[]}],"src":"123:3580:36"},"id":36},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","exportedSymbols":{"ECDSA":[8749],"IERC1271":[5317],"SignatureChecker":[9158]},"id":9159,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9052,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:37"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"./ECDSA.sol","id":9054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9159,"sourceUnit":8750,"src":"149:34:37","symbolAliases":[{"foreign":{"id":9053,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"157:5:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","file":"../../interfaces/IERC1271.sol","id":9056,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9159,"sourceUnit":5318,"src":"184:55:37","symbolAliases":[{"foreign":{"id":9055,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"192:8:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignatureChecker","contractDependencies":[],"contractKind":"library","documentation":{"id":9057,"nodeType":"StructuredDocumentation","src":"241:290:37","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":9158,"linearizedBaseContracts":[9158],"name":"SignatureChecker","nameLocation":"540:16:37","nodeType":"ContractDefinition","nodes":[{"body":{"id":9104,"nodeType":"Block","src":"1153:317:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9069,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1167:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1174:4:37","memberName":"code","nodeType":"MemberAccess","src":"1167:11:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1179:6:37","memberName":"length","nodeType":"MemberAccess","src":"1167:18:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1189:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1167:23:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9102,"nodeType":"Block","src":"1381:83:37","statements":[{"expression":{"arguments":[{"id":9097,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1429:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9098,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9062,"src":"1437:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9099,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9064,"src":"1443:9:37","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":9096,"name":"isValidERC1271SignatureNow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9157,"src":"1402:26:37","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":9100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1402:51:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9068,"id":9101,"nodeType":"Return","src":"1395:58:37"}]},"id":9103,"nodeType":"IfStatement","src":"1163:301:37","trueBody":{"id":9095,"nodeType":"Block","src":"1192:183:37","statements":[{"assignments":[9075,9078,null],"declarations":[{"constant":false,"id":9075,"mutability":"mutable","name":"recovered","nameLocation":"1215:9:37","nodeType":"VariableDeclaration","scope":9095,"src":"1207:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9074,"name":"address","nodeType":"ElementaryTypeName","src":"1207:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9078,"mutability":"mutable","name":"err","nameLocation":"1245:3:37","nodeType":"VariableDeclaration","scope":9095,"src":"1226:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9077,"nodeType":"UserDefinedTypeName","pathNode":{"id":9076,"name":"ECDSA.RecoverError","nameLocations":["1226:5:37","1232:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"1226:18:37"},"referencedDeclaration":8409,"src":"1226:18:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},null],"id":9084,"initialValue":{"arguments":[{"id":9081,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9062,"src":"1271:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9082,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9064,"src":"1277: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"}],"expression":{"id":9079,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"1254:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":9080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1260:10:37","memberName":"tryRecover","nodeType":"MemberAccess","referencedDeclaration":8475,"src":"1254:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1254:33:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"1206:81:37"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":9089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9085,"name":"err","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9078,"src":"1308:3:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9086,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"1315:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":9087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1321:12:37","memberName":"RecoverError","nodeType":"MemberAccess","referencedDeclaration":8409,"src":"1315:18:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:7:37","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"1315:26:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"1308:33:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9090,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9075,"src":"1345:9:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9091,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1358:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1345:19:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1308:56:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9068,"id":9094,"nodeType":"Return","src":"1301:63:37"}]}}]},"documentation":{"id":9058,"nodeType":"StructuredDocumentation","src":"563:473:37","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":9105,"implemented":true,"kind":"function","modifiers":[],"name":"isValidSignatureNow","nameLocation":"1050:19:37","nodeType":"FunctionDefinition","parameters":{"id":9065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9060,"mutability":"mutable","name":"signer","nameLocation":"1078:6:37","nodeType":"VariableDeclaration","scope":9105,"src":"1070:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9059,"name":"address","nodeType":"ElementaryTypeName","src":"1070:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9062,"mutability":"mutable","name":"hash","nameLocation":"1094:4:37","nodeType":"VariableDeclaration","scope":9105,"src":"1086:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1086:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9064,"mutability":"mutable","name":"signature","nameLocation":"1113:9:37","nodeType":"VariableDeclaration","scope":9105,"src":"1100:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9063,"name":"bytes","nodeType":"ElementaryTypeName","src":"1100:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1069:54:37"},"returnParameters":{"id":9068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9067,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9105,"src":"1147:4:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9066,"name":"bool","nodeType":"ElementaryTypeName","src":"1147:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1146:6:37"},"scope":9158,"src":"1041:429:37","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9156,"nodeType":"Block","src":"2026:309:37","statements":[{"assignments":[9118,9120],"declarations":[{"constant":false,"id":9118,"mutability":"mutable","name":"success","nameLocation":"2042:7:37","nodeType":"VariableDeclaration","scope":9156,"src":"2037:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9117,"name":"bool","nodeType":"ElementaryTypeName","src":"2037:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9120,"mutability":"mutable","name":"result","nameLocation":"2064:6:37","nodeType":"VariableDeclaration","scope":9156,"src":"2051:19:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9119,"name":"bytes","nodeType":"ElementaryTypeName","src":"2051:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9132,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":9125,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"2120:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5317_$","typeString":"type(contract IERC1271)"}},"id":9126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2129:16:37","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5316,"src":"2120:25:37","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":9127,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9110,"src":"2148:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9128,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9112,"src":"2154:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":9129,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2147:17:37","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":9123,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2105:3:37","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2109:10:37","memberName":"encodeCall","nodeType":"MemberAccess","src":"2105:14:37","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2105:60:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9121,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9108,"src":"2074:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2081:10:37","memberName":"staticcall","nodeType":"MemberAccess","src":"2074:17:37","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":9131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2074:101:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2036:139:37"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9133,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9118,"src":"2193:7:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9134,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"2216:6:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2223:6:37","memberName":"length","nodeType":"MemberAccess","src":"2216:13:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":9136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2233:2:37","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"2216:19:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:42:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9141,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"2262:6:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":9143,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2271:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9142,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2271:7:37","typeDescriptions":{}}}],"id":9144,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2270:9:37","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":9139,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2251:3:37","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2255:6:37","memberName":"decode","nodeType":"MemberAccess","src":"2251:10:37","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"expression":{"id":9148,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"2292:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5317_$","typeString":"type(contract IERC1271)"}},"id":9149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2301:16:37","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5316,"src":"2292:25:37","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":9150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2318:8:37","memberName":"selector","nodeType":"MemberAccess","src":"2292:34:37","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2284:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9146,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2284:7:37","typeDescriptions":{}}},"id":9151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2284:43:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2251:76:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:134:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9154,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2192:136:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9116,"id":9155,"nodeType":"Return","src":"2185:143:37"}]},"documentation":{"id":9106,"nodeType":"StructuredDocumentation","src":"1476:396:37","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":9157,"implemented":true,"kind":"function","modifiers":[],"name":"isValidERC1271SignatureNow","nameLocation":"1886:26:37","nodeType":"FunctionDefinition","parameters":{"id":9113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9108,"mutability":"mutable","name":"signer","nameLocation":"1930:6:37","nodeType":"VariableDeclaration","scope":9157,"src":"1922:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9107,"name":"address","nodeType":"ElementaryTypeName","src":"1922:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9110,"mutability":"mutable","name":"hash","nameLocation":"1954:4:37","nodeType":"VariableDeclaration","scope":9157,"src":"1946:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9109,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1946:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9112,"mutability":"mutable","name":"signature","nameLocation":"1981:9:37","nodeType":"VariableDeclaration","scope":9157,"src":"1968:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9111,"name":"bytes","nodeType":"ElementaryTypeName","src":"1968:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1912:84:37"},"returnParameters":{"id":9116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9157,"src":"2020:4:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9114,"name":"bool","nodeType":"ElementaryTypeName","src":"2020:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2019:6:37"},"scope":9158,"src":"1877:458:37","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9159,"src":"532:1805:37","usedErrors":[],"usedEvents":[]}],"src":"123:2215:37"},"id":37},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[9182],"IERC165":[9194]},"id":9183,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9160,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:38"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":9162,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9183,"sourceUnit":9195,"src":"140:38:38","symbolAliases":[{"foreign":{"id":9161,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"148:7:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9164,"name":"IERC165","nameLocations":["688:7:38"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"688:7:38"},"id":9165,"nodeType":"InheritanceSpecifier","src":"688:7:38"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":9163,"nodeType":"StructuredDocumentation","src":"180:479:38","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":9182,"linearizedBaseContracts":[9182,9194],"name":"ERC165","nameLocation":"678:6:38","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9193],"body":{"id":9180,"nodeType":"Block","src":"845:64:38","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9173,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9168,"src":"862:11:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":9175,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"882:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$9194_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$9194_$","typeString":"type(contract IERC165)"}],"id":9174,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"877:4:38","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"877:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$9194","typeString":"type(contract IERC165)"}},"id":9177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"891:11:38","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9172,"id":9179,"nodeType":"Return","src":"855:47:38"}]},"documentation":{"id":9166,"nodeType":"StructuredDocumentation","src":"702:56:38","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":9181,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:38","nodeType":"FunctionDefinition","parameters":{"id":9169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9168,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:38","nodeType":"VariableDeclaration","scope":9181,"src":"790:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9167,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:38"},"returnParameters":{"id":9172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9181,"src":"839:4:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9170,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:38"},"scope":9182,"src":"763:146:38","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":9183,"src":"660:251:38","usedErrors":[],"usedEvents":[]}],"src":"114:798:38"},"id":38},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[9194]},"id":9195,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9184,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:39"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":9185,"nodeType":"StructuredDocumentation","src":"141:280:39","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":9194,"linearizedBaseContracts":[9194],"name":"IERC165","nameLocation":"432:7:39","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9186,"nodeType":"StructuredDocumentation","src":"446:340:39","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":9193,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"800:17:39","nodeType":"FunctionDefinition","parameters":{"id":9189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9188,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:39","nodeType":"VariableDeclaration","scope":9193,"src":"818:18:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9187,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:39","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:39"},"returnParameters":{"id":9192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9191,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9193,"src":"861:4:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9190,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:39"},"scope":9194,"src":"791:76:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9195,"src":"422:447:39","usedErrors":[],"usedEvents":[]}],"src":"115:755:39"},"id":39},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[10800],"Panic":[6860],"SafeCast":[12565]},"id":10801,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9196,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:40"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":9198,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10801,"sourceUnit":6861,"src":"129:35:40","symbolAliases":[{"foreign":{"id":9197,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"137:5:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":9200,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10801,"sourceUnit":12566,"src":"165:40:40","symbolAliases":[{"foreign":{"id":9199,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"173:8:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":9201,"nodeType":"StructuredDocumentation","src":"207:73:40","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":10800,"linearizedBaseContracts":[10800],"name":"Math","nameLocation":"289:4:40","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":9206,"members":[{"id":9202,"name":"Floor","nameLocation":"324:5:40","nodeType":"EnumValue","src":"324:5:40"},{"id":9203,"name":"Ceil","nameLocation":"367:4:40","nodeType":"EnumValue","src":"367:4:40"},{"id":9204,"name":"Trunc","nameLocation":"409:5:40","nodeType":"EnumValue","src":"409:5:40"},{"id":9205,"name":"Expand","nameLocation":"439:6:40","nodeType":"EnumValue","src":"439:6:40"}],"name":"Rounding","nameLocation":"305:8:40","nodeType":"EnumDefinition","src":"300:169:40"},{"body":{"id":9237,"nodeType":"Block","src":"677:140:40","statements":[{"id":9236,"nodeType":"UncheckedBlock","src":"687:124:40","statements":[{"assignments":[9219],"declarations":[{"constant":false,"id":9219,"mutability":"mutable","name":"c","nameLocation":"719:1:40","nodeType":"VariableDeclaration","scope":9236,"src":"711:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9218,"name":"uint256","nodeType":"ElementaryTypeName","src":"711:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9223,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9220,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"723:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":9221,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9211,"src":"727:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"723:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"711:17:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9224,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9219,"src":"746:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9225,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"750:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"746:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9231,"nodeType":"IfStatement","src":"742:28:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"761:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"768:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9229,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"760:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9217,"id":9230,"nodeType":"Return","src":"753:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"792:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":9233,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9219,"src":"798:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9234,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"791:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9217,"id":9235,"nodeType":"Return","src":"784:16:40"}]}]},"documentation":{"id":9207,"nodeType":"StructuredDocumentation","src":"475:106:40","text":" @dev Returns the addition of two unsigned integers, with an success flag (no overflow)."},"id":9238,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"595:6:40","nodeType":"FunctionDefinition","parameters":{"id":9212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9209,"mutability":"mutable","name":"a","nameLocation":"610:1:40","nodeType":"VariableDeclaration","scope":9238,"src":"602:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9208,"name":"uint256","nodeType":"ElementaryTypeName","src":"602:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9211,"mutability":"mutable","name":"b","nameLocation":"621:1:40","nodeType":"VariableDeclaration","scope":9238,"src":"613:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9210,"name":"uint256","nodeType":"ElementaryTypeName","src":"613:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"601:22:40"},"returnParameters":{"id":9217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9214,"mutability":"mutable","name":"success","nameLocation":"652:7:40","nodeType":"VariableDeclaration","scope":9238,"src":"647:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9213,"name":"bool","nodeType":"ElementaryTypeName","src":"647:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9216,"mutability":"mutable","name":"result","nameLocation":"669:6:40","nodeType":"VariableDeclaration","scope":9238,"src":"661:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9215,"name":"uint256","nodeType":"ElementaryTypeName","src":"661:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"646:30:40"},"scope":10800,"src":"586:231:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9265,"nodeType":"Block","src":"1028:113:40","statements":[{"id":9264,"nodeType":"UncheckedBlock","src":"1038:97:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9250,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"1066:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":9251,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9241,"src":"1070:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1066:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9257,"nodeType":"IfStatement","src":"1062:28:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1081:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1088:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9255,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1080:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9249,"id":9256,"nodeType":"Return","src":"1073:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1112:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9259,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9241,"src":"1118:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9260,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"1122:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9262,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1111:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9249,"id":9263,"nodeType":"Return","src":"1104:20:40"}]}]},"documentation":{"id":9239,"nodeType":"StructuredDocumentation","src":"823:109:40","text":" @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow)."},"id":9266,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"946:6:40","nodeType":"FunctionDefinition","parameters":{"id":9244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9241,"mutability":"mutable","name":"a","nameLocation":"961:1:40","nodeType":"VariableDeclaration","scope":9266,"src":"953:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9240,"name":"uint256","nodeType":"ElementaryTypeName","src":"953:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9243,"mutability":"mutable","name":"b","nameLocation":"972:1:40","nodeType":"VariableDeclaration","scope":9266,"src":"964:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9242,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"952:22:40"},"returnParameters":{"id":9249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9246,"mutability":"mutable","name":"success","nameLocation":"1003:7:40","nodeType":"VariableDeclaration","scope":9266,"src":"998:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9245,"name":"bool","nodeType":"ElementaryTypeName","src":"998:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9248,"mutability":"mutable","name":"result","nameLocation":"1020:6:40","nodeType":"VariableDeclaration","scope":9266,"src":"1012:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9247,"name":"uint256","nodeType":"ElementaryTypeName","src":"1012:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"997:30:40"},"scope":10800,"src":"937:204:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9307,"nodeType":"Block","src":"1355:417:40","statements":[{"id":9306,"nodeType":"UncheckedBlock","src":"1365:401:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9278,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1623:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1628:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1623:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9285,"nodeType":"IfStatement","src":"1619:28:40","trueBody":{"expression":{"components":[{"hexValue":"74727565","id":9281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1639:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":9282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1645:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9283,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1638:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9277,"id":9284,"nodeType":"Return","src":"1631:16:40"}},{"assignments":[9287],"declarations":[{"constant":false,"id":9287,"mutability":"mutable","name":"c","nameLocation":"1669:1:40","nodeType":"VariableDeclaration","scope":9306,"src":"1661:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9286,"name":"uint256","nodeType":"ElementaryTypeName","src":"1661:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9291,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9288,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1673:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9289,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9271,"src":"1677:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1673:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1661:17:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9292,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9287,"src":"1696:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9293,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1700:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9295,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9271,"src":"1705:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:10:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9301,"nodeType":"IfStatement","src":"1692:33:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1716:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1723:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9299,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1715:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9277,"id":9300,"nodeType":"Return","src":"1708:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1747:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":9303,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9287,"src":"1753:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9304,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1746:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9277,"id":9305,"nodeType":"Return","src":"1739:16:40"}]}]},"documentation":{"id":9267,"nodeType":"StructuredDocumentation","src":"1147:112:40","text":" @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow)."},"id":9308,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"1273:6:40","nodeType":"FunctionDefinition","parameters":{"id":9272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9269,"mutability":"mutable","name":"a","nameLocation":"1288:1:40","nodeType":"VariableDeclaration","scope":9308,"src":"1280:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9268,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9271,"mutability":"mutable","name":"b","nameLocation":"1299:1:40","nodeType":"VariableDeclaration","scope":9308,"src":"1291:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9270,"name":"uint256","nodeType":"ElementaryTypeName","src":"1291:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1279:22:40"},"returnParameters":{"id":9277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9274,"mutability":"mutable","name":"success","nameLocation":"1330:7:40","nodeType":"VariableDeclaration","scope":9308,"src":"1325:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9273,"name":"bool","nodeType":"ElementaryTypeName","src":"1325:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9276,"mutability":"mutable","name":"result","nameLocation":"1347:6:40","nodeType":"VariableDeclaration","scope":9308,"src":"1339:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9275,"name":"uint256","nodeType":"ElementaryTypeName","src":"1339:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1324:30:40"},"scope":10800,"src":"1264:508:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9335,"nodeType":"Block","src":"1987:114:40","statements":[{"id":9334,"nodeType":"UncheckedBlock","src":"1997:98:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9320,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9313,"src":"2025:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2030:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2025:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9327,"nodeType":"IfStatement","src":"2021:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2041:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9325,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2040:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9319,"id":9326,"nodeType":"Return","src":"2033:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2072:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9329,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9311,"src":"2078:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9330,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9313,"src":"2082:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2078:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9332,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2071:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9319,"id":9333,"nodeType":"Return","src":"2064:20:40"}]}]},"documentation":{"id":9309,"nodeType":"StructuredDocumentation","src":"1778:113:40","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":9336,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"1905:6:40","nodeType":"FunctionDefinition","parameters":{"id":9314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9311,"mutability":"mutable","name":"a","nameLocation":"1920:1:40","nodeType":"VariableDeclaration","scope":9336,"src":"1912:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9310,"name":"uint256","nodeType":"ElementaryTypeName","src":"1912:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9313,"mutability":"mutable","name":"b","nameLocation":"1931:1:40","nodeType":"VariableDeclaration","scope":9336,"src":"1923:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9312,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1911:22:40"},"returnParameters":{"id":9319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9316,"mutability":"mutable","name":"success","nameLocation":"1962:7:40","nodeType":"VariableDeclaration","scope":9336,"src":"1957:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9315,"name":"bool","nodeType":"ElementaryTypeName","src":"1957:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9318,"mutability":"mutable","name":"result","nameLocation":"1979:6:40","nodeType":"VariableDeclaration","scope":9336,"src":"1971:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9317,"name":"uint256","nodeType":"ElementaryTypeName","src":"1971:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1956:30:40"},"scope":10800,"src":"1896:205:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9363,"nodeType":"Block","src":"2326:114:40","statements":[{"id":9362,"nodeType":"UncheckedBlock","src":"2336:98:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9348,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9341,"src":"2364:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2369:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2364:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9355,"nodeType":"IfStatement","src":"2360:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2380:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2387:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9353,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2379:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9347,"id":9354,"nodeType":"Return","src":"2372:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2411:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9357,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9339,"src":"2417:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":9358,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9341,"src":"2421:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2417:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9360,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2410:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9347,"id":9361,"nodeType":"Return","src":"2403:20:40"}]}]},"documentation":{"id":9337,"nodeType":"StructuredDocumentation","src":"2107:123:40","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":9364,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"2244:6:40","nodeType":"FunctionDefinition","parameters":{"id":9342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9339,"mutability":"mutable","name":"a","nameLocation":"2259:1:40","nodeType":"VariableDeclaration","scope":9364,"src":"2251:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9338,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9341,"mutability":"mutable","name":"b","nameLocation":"2270:1:40","nodeType":"VariableDeclaration","scope":9364,"src":"2262:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9340,"name":"uint256","nodeType":"ElementaryTypeName","src":"2262:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:22:40"},"returnParameters":{"id":9347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9344,"mutability":"mutable","name":"success","nameLocation":"2301:7:40","nodeType":"VariableDeclaration","scope":9364,"src":"2296:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9343,"name":"bool","nodeType":"ElementaryTypeName","src":"2296:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9346,"mutability":"mutable","name":"result","nameLocation":"2318:6:40","nodeType":"VariableDeclaration","scope":9364,"src":"2310:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9345,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2295:30:40"},"scope":10800,"src":"2235:205:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9390,"nodeType":"Block","src":"2912:207:40","statements":[{"id":9389,"nodeType":"UncheckedBlock","src":"2922:191:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9376,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9371,"src":"3060:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9377,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9369,"src":"3066:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":9378,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9371,"src":"3070:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3066:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3065:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9383,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9367,"src":"3091:9:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9381,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3075:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3084:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"3075:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9386,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3064:38:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3060:42:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9375,"id":9388,"nodeType":"Return","src":"3053:49:40"}]}]},"documentation":{"id":9365,"nodeType":"StructuredDocumentation","src":"2446:374:40","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":9391,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"2834:7:40","nodeType":"FunctionDefinition","parameters":{"id":9372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9367,"mutability":"mutable","name":"condition","nameLocation":"2847:9:40","nodeType":"VariableDeclaration","scope":9391,"src":"2842:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9366,"name":"bool","nodeType":"ElementaryTypeName","src":"2842:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9369,"mutability":"mutable","name":"a","nameLocation":"2866:1:40","nodeType":"VariableDeclaration","scope":9391,"src":"2858:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9368,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9371,"mutability":"mutable","name":"b","nameLocation":"2877:1:40","nodeType":"VariableDeclaration","scope":9391,"src":"2869:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9370,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:38:40"},"returnParameters":{"id":9375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9391,"src":"2903:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9373,"name":"uint256","nodeType":"ElementaryTypeName","src":"2903:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2902:9:40"},"scope":10800,"src":"2825:294:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9409,"nodeType":"Block","src":"3256:44:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9402,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9394,"src":"3281:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":9403,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"3285:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3281:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":9405,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9394,"src":"3288:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9406,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"3291:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9401,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"3273:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3273:20:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9400,"id":9408,"nodeType":"Return","src":"3266:27:40"}]},"documentation":{"id":9392,"nodeType":"StructuredDocumentation","src":"3125:59:40","text":" @dev Returns the largest of two numbers."},"id":9410,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"3198:3:40","nodeType":"FunctionDefinition","parameters":{"id":9397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9394,"mutability":"mutable","name":"a","nameLocation":"3210:1:40","nodeType":"VariableDeclaration","scope":9410,"src":"3202:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9393,"name":"uint256","nodeType":"ElementaryTypeName","src":"3202:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9396,"mutability":"mutable","name":"b","nameLocation":"3221:1:40","nodeType":"VariableDeclaration","scope":9410,"src":"3213:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9395,"name":"uint256","nodeType":"ElementaryTypeName","src":"3213:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3201:22:40"},"returnParameters":{"id":9400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9410,"src":"3247:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9398,"name":"uint256","nodeType":"ElementaryTypeName","src":"3247:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3246:9:40"},"scope":10800,"src":"3189:111:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9428,"nodeType":"Block","src":"3438:44:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9421,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9413,"src":"3463:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9422,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9415,"src":"3467:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3463:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":9424,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9413,"src":"3470:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9425,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9415,"src":"3473:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9420,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"3455:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3455:20:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9419,"id":9427,"nodeType":"Return","src":"3448:27:40"}]},"documentation":{"id":9411,"nodeType":"StructuredDocumentation","src":"3306:60:40","text":" @dev Returns the smallest of two numbers."},"id":9429,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"3380:3:40","nodeType":"FunctionDefinition","parameters":{"id":9416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9413,"mutability":"mutable","name":"a","nameLocation":"3392:1:40","nodeType":"VariableDeclaration","scope":9429,"src":"3384:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9412,"name":"uint256","nodeType":"ElementaryTypeName","src":"3384:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9415,"mutability":"mutable","name":"b","nameLocation":"3403:1:40","nodeType":"VariableDeclaration","scope":9429,"src":"3395:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9414,"name":"uint256","nodeType":"ElementaryTypeName","src":"3395:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3383:22:40"},"returnParameters":{"id":9419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9429,"src":"3429:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9417,"name":"uint256","nodeType":"ElementaryTypeName","src":"3429:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3428:9:40"},"scope":10800,"src":"3371:111:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9451,"nodeType":"Block","src":"3666:82:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9439,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9432,"src":"3721:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":9440,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9434,"src":"3725:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3721:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9442,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3720:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9443,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9432,"src":"3731:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":9444,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9434,"src":"3735:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3731:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9446,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3730:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":9447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3740:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"3730:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3720:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9438,"id":9450,"nodeType":"Return","src":"3713:28:40"}]},"documentation":{"id":9430,"nodeType":"StructuredDocumentation","src":"3488:102:40","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":9452,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"3604:7:40","nodeType":"FunctionDefinition","parameters":{"id":9435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9432,"mutability":"mutable","name":"a","nameLocation":"3620:1:40","nodeType":"VariableDeclaration","scope":9452,"src":"3612:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9431,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9434,"mutability":"mutable","name":"b","nameLocation":"3631:1:40","nodeType":"VariableDeclaration","scope":9452,"src":"3623:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9433,"name":"uint256","nodeType":"ElementaryTypeName","src":"3623:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:22:40"},"returnParameters":{"id":9438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9437,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9452,"src":"3657:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9436,"name":"uint256","nodeType":"ElementaryTypeName","src":"3657:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3656:9:40"},"scope":10800,"src":"3595:153:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9492,"nodeType":"Block","src":"4040:633:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9462,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9457,"src":"4054:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4059:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4054:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9473,"nodeType":"IfStatement","src":"4050:150:40","trueBody":{"id":9472,"nodeType":"Block","src":"4062:138:40","statements":[{"expression":{"arguments":[{"expression":{"id":9468,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4166:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9469,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4172:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"4166:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9465,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4154:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4160:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4154:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4154:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9471,"nodeType":"ExpressionStatement","src":"4154:35:40"}]}},{"id":9491,"nodeType":"UncheckedBlock","src":"4583:84:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9476,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9455,"src":"4630:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4634:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4630:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9474,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"4614:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4623:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"4614:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4614:22:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9480,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9455,"src":"4641:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":9481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4645:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4641:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9483,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4640:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9484,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9457,"src":"4650:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4640:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":9486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4654:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4640:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9488,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4639:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4614:42:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9461,"id":9490,"nodeType":"Return","src":"4607:49:40"}]}]},"documentation":{"id":9453,"nodeType":"StructuredDocumentation","src":"3754:210:40","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":9493,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"3978:7:40","nodeType":"FunctionDefinition","parameters":{"id":9458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9455,"mutability":"mutable","name":"a","nameLocation":"3994:1:40","nodeType":"VariableDeclaration","scope":9493,"src":"3986:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9454,"name":"uint256","nodeType":"ElementaryTypeName","src":"3986:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9457,"mutability":"mutable","name":"b","nameLocation":"4005:1:40","nodeType":"VariableDeclaration","scope":9493,"src":"3997:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9456,"name":"uint256","nodeType":"ElementaryTypeName","src":"3997:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3985:22:40"},"returnParameters":{"id":9461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9460,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9493,"src":"4031:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9459,"name":"uint256","nodeType":"ElementaryTypeName","src":"4031:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4030:9:40"},"scope":10800,"src":"3969:704:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9629,"nodeType":"Block","src":"5094:4128:40","statements":[{"id":9628,"nodeType":"UncheckedBlock","src":"5104:4112:40","statements":[{"assignments":[9506],"declarations":[{"constant":false,"id":9506,"mutability":"mutable","name":"prod0","nameLocation":"5441:5:40","nodeType":"VariableDeclaration","scope":9628,"src":"5433:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9505,"name":"uint256","nodeType":"ElementaryTypeName","src":"5433:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9510,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9507,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9496,"src":"5449:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9508,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9498,"src":"5453:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5449:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5433:21:40"},{"assignments":[9512],"declarations":[{"constant":false,"id":9512,"mutability":"mutable","name":"prod1","nameLocation":"5521:5:40","nodeType":"VariableDeclaration","scope":9628,"src":"5513:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9511,"name":"uint256","nodeType":"ElementaryTypeName","src":"5513:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9513,"nodeType":"VariableDeclarationStatement","src":"5513:13:40"},{"AST":{"nodeType":"YulBlock","src":"5593:122:40","statements":[{"nodeType":"YulVariableDeclaration","src":"5611:30:40","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"5628:1:40"},{"name":"y","nodeType":"YulIdentifier","src":"5631:1:40"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5638:1:40","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5634:3:40"},"nodeType":"YulFunctionCall","src":"5634:6:40"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"5621:6:40"},"nodeType":"YulFunctionCall","src":"5621:20:40"},"variables":[{"name":"mm","nodeType":"YulTypedName","src":"5615:2:40","type":""}]},{"nodeType":"YulAssignment","src":"5658:43:40","value":{"arguments":[{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"5675:2:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"5679:5:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5671:3:40"},"nodeType":"YulFunctionCall","src":"5671:14:40"},{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"5690:2:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"5694:5:40"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5687:2:40"},"nodeType":"YulFunctionCall","src":"5687:13:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5667:3:40"},"nodeType":"YulFunctionCall","src":"5667:34:40"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"5658:5:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9506,"isOffset":false,"isSlot":false,"src":"5679:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"5694:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"5658:5:40","valueSize":1},{"declaration":9496,"isOffset":false,"isSlot":false,"src":"5628:1:40","valueSize":1},{"declaration":9498,"isOffset":false,"isSlot":false,"src":"5631:1:40","valueSize":1}],"id":9514,"nodeType":"InlineAssembly","src":"5584:131:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9515,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"5796:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5805:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5796:10:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9523,"nodeType":"IfStatement","src":"5792:368:40","trueBody":{"id":9522,"nodeType":"Block","src":"5808:352:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9518,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"6126:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9519,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6134:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6126:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9504,"id":9521,"nodeType":"Return","src":"6119:26:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9524,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6270:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":9525,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"6285:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6270:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9542,"nodeType":"IfStatement","src":"6266:143:40","trueBody":{"id":9541,"nodeType":"Block","src":"6292:117:40","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9531,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6330:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6345:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6330:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":9534,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6348:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6354:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"6348:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":9536,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6372:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:14:40","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":6823,"src":"6372:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9530,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"6322:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6322:71:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9527,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6310:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6316:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"6310:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6310:84:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9540,"nodeType":"ExpressionStatement","src":"6310:84:40"}]}},{"assignments":[9544],"declarations":[{"constant":false,"id":9544,"mutability":"mutable","name":"remainder","nameLocation":"6672:9:40","nodeType":"VariableDeclaration","scope":9628,"src":"6664:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9543,"name":"uint256","nodeType":"ElementaryTypeName","src":"6664:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9545,"nodeType":"VariableDeclarationStatement","src":"6664:17:40"},{"AST":{"nodeType":"YulBlock","src":"6704:291:40","statements":[{"nodeType":"YulAssignment","src":"6773:38:40","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6793:1:40"},{"name":"y","nodeType":"YulIdentifier","src":"6796:1:40"},{"name":"denominator","nodeType":"YulIdentifier","src":"6799:11:40"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"6786:6:40"},"nodeType":"YulFunctionCall","src":"6786:25:40"},"variableNames":[{"name":"remainder","nodeType":"YulIdentifier","src":"6773:9:40"}]},{"nodeType":"YulAssignment","src":"6893:41:40","value":{"arguments":[{"name":"prod1","nodeType":"YulIdentifier","src":"6906:5:40"},{"arguments":[{"name":"remainder","nodeType":"YulIdentifier","src":"6916:9:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"6927:5:40"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6913:2:40"},"nodeType":"YulFunctionCall","src":"6913:20:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6902:3:40"},"nodeType":"YulFunctionCall","src":"6902:32:40"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"6893:5:40"}]},{"nodeType":"YulAssignment","src":"6951:30:40","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"6964:5:40"},{"name":"remainder","nodeType":"YulIdentifier","src":"6971:9:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6960:3:40"},"nodeType":"YulFunctionCall","src":"6960:21:40"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"6951:5:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9500,"isOffset":false,"isSlot":false,"src":"6799:11:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6927:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6951:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6964:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"6893:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"6906:5:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6773:9:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6916:9:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6971:9:40","valueSize":1},{"declaration":9496,"isOffset":false,"isSlot":false,"src":"6793:1:40","valueSize":1},{"declaration":9498,"isOffset":false,"isSlot":false,"src":"6796:1:40","valueSize":1}],"id":9546,"nodeType":"InlineAssembly","src":"6695:300:40"},{"assignments":[9548],"declarations":[{"constant":false,"id":9548,"mutability":"mutable","name":"twos","nameLocation":"7207:4:40","nodeType":"VariableDeclaration","scope":9628,"src":"7199:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9547,"name":"uint256","nodeType":"ElementaryTypeName","src":"7199:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9555,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9549,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"7214:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":9550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7229:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9551,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"7233:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7229:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9553,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7228:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7214:31:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7199:46:40"},{"AST":{"nodeType":"YulBlock","src":"7268:366:40","statements":[{"nodeType":"YulAssignment","src":"7333:37:40","value":{"arguments":[{"name":"denominator","nodeType":"YulIdentifier","src":"7352:11:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7365:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7348:3:40"},"nodeType":"YulFunctionCall","src":"7348:22:40"},"variableNames":[{"name":"denominator","nodeType":"YulIdentifier","src":"7333:11:40"}]},{"nodeType":"YulAssignment","src":"7437:25:40","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"7450:5:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7457:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7446:3:40"},"nodeType":"YulFunctionCall","src":"7446:16:40"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"7437:5:40"}]},{"nodeType":"YulAssignment","src":"7581:39:40","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7601:1:40","type":"","value":"0"},{"name":"twos","nodeType":"YulIdentifier","src":"7604:4:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7597:3:40"},"nodeType":"YulFunctionCall","src":"7597:12:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7611:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7593:3:40"},"nodeType":"YulFunctionCall","src":"7593:23:40"},{"kind":"number","nodeType":"YulLiteral","src":"7618:1:40","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7589:3:40"},"nodeType":"YulFunctionCall","src":"7589:31:40"},"variableNames":[{"name":"twos","nodeType":"YulIdentifier","src":"7581:4:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9500,"isOffset":false,"isSlot":false,"src":"7333:11:40","valueSize":1},{"declaration":9500,"isOffset":false,"isSlot":false,"src":"7352:11:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"7437:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"7450:5:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7365:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7457:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7581:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7604:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7611:4:40","valueSize":1}],"id":9556,"nodeType":"InlineAssembly","src":"7259:375:40"},{"expression":{"id":9561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9557,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"7700:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9558,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"7709:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9559,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9548,"src":"7717:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7709:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7700:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9562,"nodeType":"ExpressionStatement","src":"7700:21:40"},{"assignments":[9564],"declarations":[{"constant":false,"id":9564,"mutability":"mutable","name":"inverse","nameLocation":"8064:7:40","nodeType":"VariableDeclaration","scope":9628,"src":"8056:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9563,"name":"uint256","nodeType":"ElementaryTypeName","src":"8056:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9571,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":9565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8075:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9566,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8079:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8075:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9568,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8074:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":9569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8094:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"8074:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8056:39:40"},{"expression":{"id":9578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9572,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8312:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8323:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9574,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8327:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9575,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8341:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8327:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8323:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8312:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9579,"nodeType":"ExpressionStatement","src":"8312:36:40"},{"expression":{"id":9586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9580,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8382:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8393:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9582,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8397:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9583,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8411:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8397:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8393:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8382:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9587,"nodeType":"ExpressionStatement","src":"8382:36:40"},{"expression":{"id":9594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9588,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8454:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8465:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9590,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8469:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9591,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8483:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8469:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8465:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8454:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9595,"nodeType":"ExpressionStatement","src":"8454:36:40"},{"expression":{"id":9602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9596,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8525:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9598,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8540:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9599,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8554:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8540:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8536:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8525:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9603,"nodeType":"ExpressionStatement","src":"8525:36:40"},{"expression":{"id":9610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9604,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8598:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8609:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9606,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8613:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9607,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8627:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8613:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8609:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8598:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9611,"nodeType":"ExpressionStatement","src":"8598:36:40"},{"expression":{"id":9618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9612,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8672:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9614,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8687:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9615,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8701:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8687:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8683:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8672:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9619,"nodeType":"ExpressionStatement","src":"8672:36:40"},{"expression":{"id":9624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9620,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9503,"src":"9154:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9621,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"9163:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9622,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"9171:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9163:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9154:24:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9625,"nodeType":"ExpressionStatement","src":"9154:24:40"},{"expression":{"id":9626,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9503,"src":"9199:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9504,"id":9627,"nodeType":"Return","src":"9192:13:40"}]}]},"documentation":{"id":9494,"nodeType":"StructuredDocumentation","src":"4679:312:40","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":9630,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"5005:6:40","nodeType":"FunctionDefinition","parameters":{"id":9501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9496,"mutability":"mutable","name":"x","nameLocation":"5020:1:40","nodeType":"VariableDeclaration","scope":9630,"src":"5012:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9495,"name":"uint256","nodeType":"ElementaryTypeName","src":"5012:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9498,"mutability":"mutable","name":"y","nameLocation":"5031:1:40","nodeType":"VariableDeclaration","scope":9630,"src":"5023:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9497,"name":"uint256","nodeType":"ElementaryTypeName","src":"5023:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9500,"mutability":"mutable","name":"denominator","nameLocation":"5042:11:40","nodeType":"VariableDeclaration","scope":9630,"src":"5034:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9499,"name":"uint256","nodeType":"ElementaryTypeName","src":"5034:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5011:43:40"},"returnParameters":{"id":9504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9503,"mutability":"mutable","name":"result","nameLocation":"5086:6:40","nodeType":"VariableDeclaration","scope":9630,"src":"5078:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9502,"name":"uint256","nodeType":"ElementaryTypeName","src":"5078:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5077:16:40"},"scope":10800,"src":"4996:4226:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9666,"nodeType":"Block","src":"9461:128:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9646,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9633,"src":"9485:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9647,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9635,"src":"9488:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9648,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9637,"src":"9491:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9645,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[9630,9667],"referencedDeclaration":9630,"src":"9478:6:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":9649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9478:25:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9653,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9640,"src":"9539:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":9652,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"9522:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":9654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9522:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9656,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9633,"src":"9559:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9657,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9635,"src":"9562:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9658,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9637,"src":"9565:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9655,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"9552:6:40","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":9659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9552:25:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9580:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9552:29:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9522:59:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9650,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"9506:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9515:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"9506:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9506:76:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9478:104:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9644,"id":9665,"nodeType":"Return","src":"9471:111:40"}]},"documentation":{"id":9631,"nodeType":"StructuredDocumentation","src":"9228:118:40","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":9667,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"9360:6:40","nodeType":"FunctionDefinition","parameters":{"id":9641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9633,"mutability":"mutable","name":"x","nameLocation":"9375:1:40","nodeType":"VariableDeclaration","scope":9667,"src":"9367:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9632,"name":"uint256","nodeType":"ElementaryTypeName","src":"9367:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9635,"mutability":"mutable","name":"y","nameLocation":"9386:1:40","nodeType":"VariableDeclaration","scope":9667,"src":"9378:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9634,"name":"uint256","nodeType":"ElementaryTypeName","src":"9378:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9637,"mutability":"mutable","name":"denominator","nameLocation":"9397:11:40","nodeType":"VariableDeclaration","scope":9667,"src":"9389:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9636,"name":"uint256","nodeType":"ElementaryTypeName","src":"9389:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9640,"mutability":"mutable","name":"rounding","nameLocation":"9419:8:40","nodeType":"VariableDeclaration","scope":9667,"src":"9410:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":9639,"nodeType":"UserDefinedTypeName","pathNode":{"id":9638,"name":"Rounding","nameLocations":["9410:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"9410:8:40"},"referencedDeclaration":9206,"src":"9410:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9366:62:40"},"returnParameters":{"id":9644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9643,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9667,"src":"9452:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9642,"name":"uint256","nodeType":"ElementaryTypeName","src":"9452:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9451:9:40"},"scope":10800,"src":"9351:238:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9763,"nodeType":"Block","src":"10223:1849:40","statements":[{"id":9762,"nodeType":"UncheckedBlock","src":"10233:1833:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9677,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10261:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10266:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10261:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9682,"nodeType":"IfStatement","src":"10257:20:40","trueBody":{"expression":{"hexValue":"30","id":9680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":9676,"id":9681,"nodeType":"Return","src":"10269:8:40"}},{"assignments":[9684],"declarations":[{"constant":false,"id":9684,"mutability":"mutable","name":"remainder","nameLocation":"10756:9:40","nodeType":"VariableDeclaration","scope":9762,"src":"10748:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9683,"name":"uint256","nodeType":"ElementaryTypeName","src":"10748:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9688,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9685,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9670,"src":"10768:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":9686,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10772:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10768:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10748:25:40"},{"assignments":[9690],"declarations":[{"constant":false,"id":9690,"mutability":"mutable","name":"gcd","nameLocation":"10795:3:40","nodeType":"VariableDeclaration","scope":9762,"src":"10787:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9689,"name":"uint256","nodeType":"ElementaryTypeName","src":"10787:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9692,"initialValue":{"id":9691,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10801:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10787:15:40"},{"assignments":[9694],"declarations":[{"constant":false,"id":9694,"mutability":"mutable","name":"x","nameLocation":"10945:1:40","nodeType":"VariableDeclaration","scope":9762,"src":"10938:8:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":9693,"name":"int256","nodeType":"ElementaryTypeName","src":"10938:6:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":9696,"initialValue":{"hexValue":"30","id":9695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10949:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10938:12:40"},{"assignments":[9698],"declarations":[{"constant":false,"id":9698,"mutability":"mutable","name":"y","nameLocation":"10971:1:40","nodeType":"VariableDeclaration","scope":9762,"src":"10964:8:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":9697,"name":"int256","nodeType":"ElementaryTypeName","src":"10964:6:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":9700,"initialValue":{"hexValue":"31","id":9699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10975:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"10964:12:40"},{"body":{"id":9737,"nodeType":"Block","src":"11014:882:40","statements":[{"assignments":[9705],"declarations":[{"constant":false,"id":9705,"mutability":"mutable","name":"quotient","nameLocation":"11040:8:40","nodeType":"VariableDeclaration","scope":9737,"src":"11032:16:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9704,"name":"uint256","nodeType":"ElementaryTypeName","src":"11032:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9709,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9706,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11051:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9707,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11057:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11051:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11032:34:40"},{"expression":{"id":9720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":9710,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11086:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9711,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11091:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9712,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11085:16:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":9713,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11191:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9714,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11436:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9715,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11442:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9716,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9705,"src":"11454:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11442:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11436:26:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9719,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11104:376:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"11085:395:40","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9721,"nodeType":"ExpressionStatement","src":"11085:395:40"},{"expression":{"id":9735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":9722,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11500:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":9723,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11503:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":9724,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11499:6:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":9725,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11585:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9726,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11839:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9727,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11843:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9730,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9705,"src":"11854:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11847:6:40","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":9728,"name":"int256","nodeType":"ElementaryTypeName","src":"11847:6:40","typeDescriptions":{}}},"id":9731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11847:16:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11843:20:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11839:24:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":9734,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11508:373:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"11499:382:40","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9736,"nodeType":"ExpressionStatement","src":"11499:382:40"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9701,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"10998:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11011:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10998:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9738,"nodeType":"WhileStatement","src":"10991:905:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9739,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11914:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":9740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11921:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11914:8:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9744,"nodeType":"IfStatement","src":"11910:22:40","trueBody":{"expression":{"hexValue":"30","id":9742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11931:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":9676,"id":9743,"nodeType":"Return","src":"11924:8:40"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9746,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11983:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":9747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11987:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11983:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9749,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"11990:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":9753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12002:2:40","subExpression":{"id":9752,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"12003:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":9751,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11994:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9750,"name":"uint256","nodeType":"ElementaryTypeName","src":"11994:7:40","typeDescriptions":{}}},"id":9754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11994:11:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11990:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":9758,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"12015:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":9757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12007:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9756,"name":"uint256","nodeType":"ElementaryTypeName","src":"12007:7:40","typeDescriptions":{}}},"id":9759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12007:10:40","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":9745,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"11975:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11975:43:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9676,"id":9761,"nodeType":"Return","src":"11968:50:40"}]}]},"documentation":{"id":9668,"nodeType":"StructuredDocumentation","src":"9595:553:40","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":9764,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10162:6:40","nodeType":"FunctionDefinition","parameters":{"id":9673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9670,"mutability":"mutable","name":"a","nameLocation":"10177:1:40","nodeType":"VariableDeclaration","scope":9764,"src":"10169:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9669,"name":"uint256","nodeType":"ElementaryTypeName","src":"10169:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9672,"mutability":"mutable","name":"n","nameLocation":"10188:1:40","nodeType":"VariableDeclaration","scope":9764,"src":"10180:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9671,"name":"uint256","nodeType":"ElementaryTypeName","src":"10180:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10168:22:40"},"returnParameters":{"id":9676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9764,"src":"10214:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9674,"name":"uint256","nodeType":"ElementaryTypeName","src":"10214:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10213:9:40"},"scope":10800,"src":"10153:1919:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9784,"nodeType":"Block","src":"12672:82:40","statements":[{"id":9783,"nodeType":"UncheckedBlock","src":"12682:66:40","statements":[{"expression":{"arguments":[{"id":9776,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9767,"src":"12725:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9777,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"12728:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":9778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12732:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12728:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9780,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"12735:1:40","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":9774,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"12713:4:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":9775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12718:6:40","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":9821,"src":"12713:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":9781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12713:24:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9773,"id":9782,"nodeType":"Return","src":"12706:31:40"}]}]},"documentation":{"id":9765,"nodeType":"StructuredDocumentation","src":"12078:514:40","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":9785,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"12606:11:40","nodeType":"FunctionDefinition","parameters":{"id":9770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9767,"mutability":"mutable","name":"a","nameLocation":"12626:1:40","nodeType":"VariableDeclaration","scope":9785,"src":"12618:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9766,"name":"uint256","nodeType":"ElementaryTypeName","src":"12618:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9769,"mutability":"mutable","name":"p","nameLocation":"12637:1:40","nodeType":"VariableDeclaration","scope":9785,"src":"12629:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9768,"name":"uint256","nodeType":"ElementaryTypeName","src":"12629:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12617:22:40"},"returnParameters":{"id":9773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9772,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9785,"src":"12663:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9771,"name":"uint256","nodeType":"ElementaryTypeName","src":"12663:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12662:9:40"},"scope":10800,"src":"12597:157:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9820,"nodeType":"Block","src":"13524:174:40","statements":[{"assignments":[9798,9800],"declarations":[{"constant":false,"id":9798,"mutability":"mutable","name":"success","nameLocation":"13540:7:40","nodeType":"VariableDeclaration","scope":9820,"src":"13535:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9797,"name":"bool","nodeType":"ElementaryTypeName","src":"13535:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9800,"mutability":"mutable","name":"result","nameLocation":"13557:6:40","nodeType":"VariableDeclaration","scope":9820,"src":"13549:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9799,"name":"uint256","nodeType":"ElementaryTypeName","src":"13549:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9806,"initialValue":{"arguments":[{"id":9802,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9788,"src":"13577:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9803,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9790,"src":"13580:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9804,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9792,"src":"13583:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9801,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[9845,9927],"referencedDeclaration":9845,"src":"13567:9:40","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":9805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13567:18:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"13534:51:40"},{"condition":{"id":9808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13599:8:40","subExpression":{"id":9807,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9798,"src":"13600:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9817,"nodeType":"IfStatement","src":"13595:74:40","trueBody":{"id":9816,"nodeType":"Block","src":"13609:60:40","statements":[{"expression":{"arguments":[{"expression":{"id":9812,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"13635:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13641:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"13635:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9809,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"13623:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13629:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"13623:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13623:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9815,"nodeType":"ExpressionStatement","src":"13623:35:40"}]}},{"expression":{"id":9818,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9800,"src":"13685:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9796,"id":9819,"nodeType":"Return","src":"13678:13:40"}]},"documentation":{"id":9786,"nodeType":"StructuredDocumentation","src":"12760:678:40","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":9821,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"13452:6:40","nodeType":"FunctionDefinition","parameters":{"id":9793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9788,"mutability":"mutable","name":"b","nameLocation":"13467:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13459:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9787,"name":"uint256","nodeType":"ElementaryTypeName","src":"13459:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9790,"mutability":"mutable","name":"e","nameLocation":"13478:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13470:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9789,"name":"uint256","nodeType":"ElementaryTypeName","src":"13470:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9792,"mutability":"mutable","name":"m","nameLocation":"13489:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13481:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9791,"name":"uint256","nodeType":"ElementaryTypeName","src":"13481:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13458:33:40"},"returnParameters":{"id":9796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9795,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9821,"src":"13515:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9794,"name":"uint256","nodeType":"ElementaryTypeName","src":"13515:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13514:9:40"},"scope":10800,"src":"13443:255:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9844,"nodeType":"Block","src":"14552:1493:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9835,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9828,"src":"14566:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14571:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14566:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9842,"nodeType":"IfStatement","src":"14562:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14582:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14589:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9840,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"14581:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9834,"id":9841,"nodeType":"Return","src":"14574:17:40"}},{"AST":{"nodeType":"YulBlock","src":"14626:1413:40","statements":[{"nodeType":"YulVariableDeclaration","src":"14640:22:40","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14657:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14651:5:40"},"nodeType":"YulFunctionCall","src":"14651:11:40"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"14644:3:40","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15570:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15575:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15563:6:40"},"nodeType":"YulFunctionCall","src":"15563:17:40"},"nodeType":"YulExpressionStatement","src":"15563:17:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15604:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15609:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15600:3:40"},"nodeType":"YulFunctionCall","src":"15600:14:40"},{"kind":"number","nodeType":"YulLiteral","src":"15616:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15593:6:40"},"nodeType":"YulFunctionCall","src":"15593:28:40"},"nodeType":"YulExpressionStatement","src":"15593:28:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15645:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15650:4:40","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15641:3:40"},"nodeType":"YulFunctionCall","src":"15641:14:40"},{"kind":"number","nodeType":"YulLiteral","src":"15657:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15634:6:40"},"nodeType":"YulFunctionCall","src":"15634:28:40"},"nodeType":"YulExpressionStatement","src":"15634:28:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15686:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15691:4:40","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15682:3:40"},"nodeType":"YulFunctionCall","src":"15682:14:40"},{"name":"b","nodeType":"YulIdentifier","src":"15698:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15675:6:40"},"nodeType":"YulFunctionCall","src":"15675:25:40"},"nodeType":"YulExpressionStatement","src":"15675:25:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15724:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15729:4:40","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15720:3:40"},"nodeType":"YulFunctionCall","src":"15720:14:40"},{"name":"e","nodeType":"YulIdentifier","src":"15736:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15713:6:40"},"nodeType":"YulFunctionCall","src":"15713:25:40"},"nodeType":"YulExpressionStatement","src":"15713:25:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15762:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15767:4:40","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15758:3:40"},"nodeType":"YulFunctionCall","src":"15758:14:40"},{"name":"m","nodeType":"YulIdentifier","src":"15774:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15751:6:40"},"nodeType":"YulFunctionCall","src":"15751:25:40"},"nodeType":"YulExpressionStatement","src":"15751:25:40"},{"nodeType":"YulAssignment","src":"15938:57:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"15960:3:40"},"nodeType":"YulFunctionCall","src":"15960:5:40"},{"kind":"number","nodeType":"YulLiteral","src":"15967:4:40","type":"","value":"0x05"},{"name":"ptr","nodeType":"YulIdentifier","src":"15973:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15978:4:40","type":"","value":"0xc0"},{"kind":"number","nodeType":"YulLiteral","src":"15984:4:40","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"15990:4:40","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"15949:10:40"},"nodeType":"YulFunctionCall","src":"15949:46:40"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"15938:7:40"}]},{"nodeType":"YulAssignment","src":"16008:21:40","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16024:4:40","type":"","value":"0x00"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16018:5:40"},"nodeType":"YulFunctionCall","src":"16018:11:40"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"16008:6:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9824,"isOffset":false,"isSlot":false,"src":"15698:1:40","valueSize":1},{"declaration":9826,"isOffset":false,"isSlot":false,"src":"15736:1:40","valueSize":1},{"declaration":9828,"isOffset":false,"isSlot":false,"src":"15774:1:40","valueSize":1},{"declaration":9833,"isOffset":false,"isSlot":false,"src":"16008:6:40","valueSize":1},{"declaration":9831,"isOffset":false,"isSlot":false,"src":"15938:7:40","valueSize":1}],"flags":["memory-safe"],"id":9843,"nodeType":"InlineAssembly","src":"14601:1438:40"}]},"documentation":{"id":9822,"nodeType":"StructuredDocumentation","src":"13704:738:40","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":9845,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"14456:9:40","nodeType":"FunctionDefinition","parameters":{"id":9829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9824,"mutability":"mutable","name":"b","nameLocation":"14474:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14466:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9823,"name":"uint256","nodeType":"ElementaryTypeName","src":"14466:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9826,"mutability":"mutable","name":"e","nameLocation":"14485:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14477:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9825,"name":"uint256","nodeType":"ElementaryTypeName","src":"14477:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9828,"mutability":"mutable","name":"m","nameLocation":"14496:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14488:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9827,"name":"uint256","nodeType":"ElementaryTypeName","src":"14488:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14465:33:40"},"returnParameters":{"id":9834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9831,"mutability":"mutable","name":"success","nameLocation":"14527:7:40","nodeType":"VariableDeclaration","scope":9845,"src":"14522:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9830,"name":"bool","nodeType":"ElementaryTypeName","src":"14522:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9833,"mutability":"mutable","name":"result","nameLocation":"14544:6:40","nodeType":"VariableDeclaration","scope":9845,"src":"14536:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9832,"name":"uint256","nodeType":"ElementaryTypeName","src":"14536:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14521:30:40"},"scope":10800,"src":"14447:1598:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9880,"nodeType":"Block","src":"16242:179:40","statements":[{"assignments":[9858,9860],"declarations":[{"constant":false,"id":9858,"mutability":"mutable","name":"success","nameLocation":"16258:7:40","nodeType":"VariableDeclaration","scope":9880,"src":"16253:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9857,"name":"bool","nodeType":"ElementaryTypeName","src":"16253:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9860,"mutability":"mutable","name":"result","nameLocation":"16280:6:40","nodeType":"VariableDeclaration","scope":9880,"src":"16267:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9859,"name":"bytes","nodeType":"ElementaryTypeName","src":"16267:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9866,"initialValue":{"arguments":[{"id":9862,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9848,"src":"16300:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9863,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9850,"src":"16303:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9864,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9852,"src":"16306:1:40","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":9861,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[9845,9927],"referencedDeclaration":9927,"src":"16290:9:40","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":9865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16290:18:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"16252:56:40"},{"condition":{"id":9868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16322:8:40","subExpression":{"id":9867,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9858,"src":"16323:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9877,"nodeType":"IfStatement","src":"16318:74:40","trueBody":{"id":9876,"nodeType":"Block","src":"16332:60:40","statements":[{"expression":{"arguments":[{"expression":{"id":9872,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"16358:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16364:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"16358:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9869,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"16346:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16352:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"16346:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16346:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9875,"nodeType":"ExpressionStatement","src":"16346:35:40"}]}},{"expression":{"id":9878,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9860,"src":"16408:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9856,"id":9879,"nodeType":"Return","src":"16401:13:40"}]},"documentation":{"id":9846,"nodeType":"StructuredDocumentation","src":"16051:85:40","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":9881,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"16150:6:40","nodeType":"FunctionDefinition","parameters":{"id":9853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9848,"mutability":"mutable","name":"b","nameLocation":"16170:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16157:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9847,"name":"bytes","nodeType":"ElementaryTypeName","src":"16157:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9850,"mutability":"mutable","name":"e","nameLocation":"16186:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16173:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9849,"name":"bytes","nodeType":"ElementaryTypeName","src":"16173:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9852,"mutability":"mutable","name":"m","nameLocation":"16202:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16189:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9851,"name":"bytes","nodeType":"ElementaryTypeName","src":"16189:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16156:48:40"},"returnParameters":{"id":9856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9881,"src":"16228:12:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9854,"name":"bytes","nodeType":"ElementaryTypeName","src":"16228:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16227:14:40"},"scope":10800,"src":"16141:280:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9926,"nodeType":"Block","src":"16675:771:40","statements":[{"condition":{"arguments":[{"id":9896,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16700:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9895,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9960,"src":"16689:10:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":9897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16689:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9905,"nodeType":"IfStatement","src":"16685:47:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16712:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":9901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16729:1:40","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":9900,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"16719:9:40","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":9899,"name":"bytes","nodeType":"ElementaryTypeName","src":"16723:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":9902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16719:12:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":9903,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16711:21:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":9894,"id":9904,"nodeType":"Return","src":"16704:28:40"}},{"assignments":[9907],"declarations":[{"constant":false,"id":9907,"mutability":"mutable","name":"mLen","nameLocation":"16751:4:40","nodeType":"VariableDeclaration","scope":9926,"src":"16743:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9906,"name":"uint256","nodeType":"ElementaryTypeName","src":"16743:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9910,"initialValue":{"expression":{"id":9908,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16758:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16760:6:40","memberName":"length","nodeType":"MemberAccess","src":"16758:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16743:23:40"},{"expression":{"id":9923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9911,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9893,"src":"16848:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":9914,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9884,"src":"16874:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16876:6:40","memberName":"length","nodeType":"MemberAccess","src":"16874:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":9916,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9886,"src":"16884:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16886:6:40","memberName":"length","nodeType":"MemberAccess","src":"16884:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9918,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9907,"src":"16894:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9919,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9884,"src":"16900:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9920,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9886,"src":"16903:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9921,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16906:1:40","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":9912,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16857:3:40","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9913,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16861:12:40","memberName":"encodePacked","nodeType":"MemberAccess","src":"16857:16:40","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16857:51:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"16848:60:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9924,"nodeType":"ExpressionStatement","src":"16848:60:40"},{"AST":{"nodeType":"YulBlock","src":"16944:496:40","statements":[{"nodeType":"YulVariableDeclaration","src":"16958:32:40","value":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"16977:6:40"},{"kind":"number","nodeType":"YulLiteral","src":"16985:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16973:3:40"},"nodeType":"YulFunctionCall","src":"16973:17:40"},"variables":[{"name":"dataPtr","nodeType":"YulTypedName","src":"16962:7:40","type":""}]},{"nodeType":"YulAssignment","src":"17080:73:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"17102:3:40"},"nodeType":"YulFunctionCall","src":"17102:5:40"},{"kind":"number","nodeType":"YulLiteral","src":"17109:4:40","type":"","value":"0x05"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"17115:7:40"},{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"17130:6:40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17124:5:40"},"nodeType":"YulFunctionCall","src":"17124:13:40"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"17139:7:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17148:4:40"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"17091:10:40"},"nodeType":"YulFunctionCall","src":"17091:62:40"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"17080:7:40"}]},{"expression":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"17309:6:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17317:4:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17302:6:40"},"nodeType":"YulFunctionCall","src":"17302:20:40"},"nodeType":"YulExpressionStatement","src":"17302:20:40"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17405:4:40","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nodeType":"YulIdentifier","src":"17415:7:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17424:4:40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17411:3:40"},"nodeType":"YulFunctionCall","src":"17411:18:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17398:6:40"},"nodeType":"YulFunctionCall","src":"17398:32:40"},"nodeType":"YulExpressionStatement","src":"17398:32:40"}]},"evmVersion":"paris","externalReferences":[{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17148:4:40","valueSize":1},{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17317:4:40","valueSize":1},{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17424:4:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"16977:6:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"17130:6:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"17309:6:40","valueSize":1},{"declaration":9891,"isOffset":false,"isSlot":false,"src":"17080:7:40","valueSize":1}],"flags":["memory-safe"],"id":9925,"nodeType":"InlineAssembly","src":"16919:521:40"}]},"documentation":{"id":9882,"nodeType":"StructuredDocumentation","src":"16427:88:40","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":9927,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16529:9:40","nodeType":"FunctionDefinition","parameters":{"id":9889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9884,"mutability":"mutable","name":"b","nameLocation":"16561:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16548:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9883,"name":"bytes","nodeType":"ElementaryTypeName","src":"16548:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9886,"mutability":"mutable","name":"e","nameLocation":"16585:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16572:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9885,"name":"bytes","nodeType":"ElementaryTypeName","src":"16572:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9888,"mutability":"mutable","name":"m","nameLocation":"16609:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16596:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9887,"name":"bytes","nodeType":"ElementaryTypeName","src":"16596:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16538:78:40"},"returnParameters":{"id":9894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9891,"mutability":"mutable","name":"success","nameLocation":"16645:7:40","nodeType":"VariableDeclaration","scope":9927,"src":"16640:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9890,"name":"bool","nodeType":"ElementaryTypeName","src":"16640:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9893,"mutability":"mutable","name":"result","nameLocation":"16667:6:40","nodeType":"VariableDeclaration","scope":9927,"src":"16654:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9892,"name":"bytes","nodeType":"ElementaryTypeName","src":"16654:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16639:35:40"},"scope":10800,"src":"16520:926:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9959,"nodeType":"Block","src":"17601:176:40","statements":[{"body":{"id":9955,"nodeType":"Block","src":"17658:92:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":9950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9946,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9930,"src":"17676:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9948,"indexExpression":{"id":9947,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17686:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17676:12:40","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17692:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17676:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9954,"nodeType":"IfStatement","src":"17672:68:40","trueBody":{"id":9953,"nodeType":"Block","src":"17695:45:40","statements":[{"expression":{"hexValue":"66616c7365","id":9951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17720:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":9934,"id":9952,"nodeType":"Return","src":"17713:12:40"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9939,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17631:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":9940,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9930,"src":"17635:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17645:6:40","memberName":"length","nodeType":"MemberAccess","src":"17635:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17631:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9956,"initializationExpression":{"assignments":[9936],"declarations":[{"constant":false,"id":9936,"mutability":"mutable","name":"i","nameLocation":"17624:1:40","nodeType":"VariableDeclaration","scope":9956,"src":"17616:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9935,"name":"uint256","nodeType":"ElementaryTypeName","src":"17616:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9938,"initialValue":{"hexValue":"30","id":9937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17628:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17616:13:40"},"loopExpression":{"expression":{"id":9944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17653:3:40","subExpression":{"id":9943,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17655:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9945,"nodeType":"ExpressionStatement","src":"17653:3:40"},"nodeType":"ForStatement","src":"17611:139:40"},{"expression":{"hexValue":"74727565","id":9957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17766:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":9934,"id":9958,"nodeType":"Return","src":"17759:11:40"}]},"documentation":{"id":9928,"nodeType":"StructuredDocumentation","src":"17452:72:40","text":" @dev Returns whether the provided byte array is zero."},"id":9960,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"17538:10:40","nodeType":"FunctionDefinition","parameters":{"id":9931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9930,"mutability":"mutable","name":"byteArray","nameLocation":"17562:9:40","nodeType":"VariableDeclaration","scope":9960,"src":"17549:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9929,"name":"bytes","nodeType":"ElementaryTypeName","src":"17549:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17548:24:40"},"returnParameters":{"id":9934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9933,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9960,"src":"17595:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9932,"name":"bool","nodeType":"ElementaryTypeName","src":"17595:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17594:6:40"},"scope":10800,"src":"17529:248:40","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":10178,"nodeType":"Block","src":"18137:5124:40","statements":[{"id":10177,"nodeType":"UncheckedBlock","src":"18147:5108:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9968,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"18241:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":9969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18246:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18241:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9974,"nodeType":"IfStatement","src":"18237:53:40","trueBody":{"id":9973,"nodeType":"Block","src":"18249:41:40","statements":[{"expression":{"id":9971,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"18274:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9967,"id":9972,"nodeType":"Return","src":"18267:8:40"}]}},{"assignments":[9976],"declarations":[{"constant":false,"id":9976,"mutability":"mutable","name":"aa","nameLocation":"19225:2:40","nodeType":"VariableDeclaration","scope":10177,"src":"19217:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9975,"name":"uint256","nodeType":"ElementaryTypeName","src":"19217:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9978,"initialValue":{"id":9977,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"19230:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19217:14:40"},{"assignments":[9980],"declarations":[{"constant":false,"id":9980,"mutability":"mutable","name":"xn","nameLocation":"19253:2:40","nodeType":"VariableDeclaration","scope":10177,"src":"19245:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9979,"name":"uint256","nodeType":"ElementaryTypeName","src":"19245:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9982,"initialValue":{"hexValue":"31","id":9981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19258:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"19245:14:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9983,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19278:2:40","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":9986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":9984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19285:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":9985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19290:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19285:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":9987,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19284:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"19278:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9998,"nodeType":"IfStatement","src":"19274:92:40","trueBody":{"id":9997,"nodeType":"Block","src":"19296:70:40","statements":[{"expression":{"id":9991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9989,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19314:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":9990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19321:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19314:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9992,"nodeType":"ExpressionStatement","src":"19314:10:40"},{"expression":{"id":9995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9993,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19342:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":9994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19349:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19342:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9996,"nodeType":"ExpressionStatement","src":"19342:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9999,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19383:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19390:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19395:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19390:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10003,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19389:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"19383:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10014,"nodeType":"IfStatement","src":"19379:90:40","trueBody":{"id":10013,"nodeType":"Block","src":"19400:69:40","statements":[{"expression":{"id":10007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10005,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19418:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":10006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19425:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19418:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10008,"nodeType":"ExpressionStatement","src":"19418:9:40"},{"expression":{"id":10011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10009,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19445:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":10010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19452:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19445:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10012,"nodeType":"ExpressionStatement","src":"19445:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10015,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19486:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10016,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19493:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19498:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19493:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10019,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19492:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"19486:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10030,"nodeType":"IfStatement","src":"19482:90:40","trueBody":{"id":10029,"nodeType":"Block","src":"19503:69:40","statements":[{"expression":{"id":10023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10021,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19521:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":10022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19528:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19521:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10024,"nodeType":"ExpressionStatement","src":"19521:9:40"},{"expression":{"id":10027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10025,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19548:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":10026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19555:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19548:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10028,"nodeType":"ExpressionStatement","src":"19548:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10031,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19589:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19596:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19601:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19596:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10035,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19595:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"19589:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10046,"nodeType":"IfStatement","src":"19585:89:40","trueBody":{"id":10045,"nodeType":"Block","src":"19606:68:40","statements":[{"expression":{"id":10039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10037,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19624:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":10038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19631:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19624:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10040,"nodeType":"ExpressionStatement","src":"19624:9:40"},{"expression":{"id":10043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10041,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19651:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":10042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19658:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19651:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10044,"nodeType":"ExpressionStatement","src":"19651:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10047,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19691:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19698:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19703:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19698:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10051,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19697:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"19691:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10062,"nodeType":"IfStatement","src":"19687:87:40","trueBody":{"id":10061,"nodeType":"Block","src":"19707:67:40","statements":[{"expression":{"id":10055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10053,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19725:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":10054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19732:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19725:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10056,"nodeType":"ExpressionStatement","src":"19725:8:40"},{"expression":{"id":10059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10057,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19751:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":10058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19758:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19751:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10060,"nodeType":"ExpressionStatement","src":"19751:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10063,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19791:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":10066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19798:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":10065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19803:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19798:6:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":10067,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19797:8:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"19791:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10078,"nodeType":"IfStatement","src":"19787:87:40","trueBody":{"id":10077,"nodeType":"Block","src":"19807:67:40","statements":[{"expression":{"id":10071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10069,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19825:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":10070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19832:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19825:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10072,"nodeType":"ExpressionStatement","src":"19825:8:40"},{"expression":{"id":10075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10073,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19851:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":10074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19858:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19851:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10076,"nodeType":"ExpressionStatement","src":"19851:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10079,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19891:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":10082,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19898:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":10081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19903:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19898:6:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":10083,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19897:8:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"19891:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10090,"nodeType":"IfStatement","src":"19887:61:40","trueBody":{"id":10089,"nodeType":"Block","src":"19907:41:40","statements":[{"expression":{"id":10087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10085,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19925:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":10086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19932:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19925:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10088,"nodeType":"ExpressionStatement","src":"19925:8:40"}]}},{"expression":{"id":10098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10091,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"20368:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":10092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20374:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10093,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"20378:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20374:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10095,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20373:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20385:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20373:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20368:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10099,"nodeType":"ExpressionStatement","src":"20368:18:40"},{"expression":{"id":10109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10100,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22273:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10101,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22279:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10102,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22284:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10103,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22288:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22284:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22279:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10106,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22278:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22295:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22278:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22273:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10110,"nodeType":"ExpressionStatement","src":"22273:23:40"},{"expression":{"id":10120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10111,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22382:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10112,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22388:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10113,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22393:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10114,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22397:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22393:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22388:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22387:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22404:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22387:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22382:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10121,"nodeType":"ExpressionStatement","src":"22382:23:40"},{"expression":{"id":10131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10122,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22493:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10123,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22499:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10124,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22504:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10125,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22508:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22504:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22499:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10128,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22498:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22515:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22498:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22493:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10132,"nodeType":"ExpressionStatement","src":"22493:23:40"},{"expression":{"id":10142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10133,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22602:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10134,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22608:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10135,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22613:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10136,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22617:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22613:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22608:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10139,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22607:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22624:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22607:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22602:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10143,"nodeType":"ExpressionStatement","src":"22602:23:40"},{"expression":{"id":10153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10144,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22712:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10145,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22718:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10146,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22723:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10147,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22727:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22723:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22718:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10150,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22717:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22734:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22717:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22712:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10154,"nodeType":"ExpressionStatement","src":"22712:23:40"},{"expression":{"id":10164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10155,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22822:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10156,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22828:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10157,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22833:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10158,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22837:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22833:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22828:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22827:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22844:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22827:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22822:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10165,"nodeType":"ExpressionStatement","src":"22822:23:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10166,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23211:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10169,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23232:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10170,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"23237:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10171,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23241:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23237:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23232:11:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10167,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23216:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23225:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23216:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23216:28:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23211:33:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9967,"id":10176,"nodeType":"Return","src":"23204:40:40"}]}]},"documentation":{"id":9961,"nodeType":"StructuredDocumentation","src":"17783:292:40","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":10179,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"18089:4:40","nodeType":"FunctionDefinition","parameters":{"id":9964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9963,"mutability":"mutable","name":"a","nameLocation":"18102:1:40","nodeType":"VariableDeclaration","scope":10179,"src":"18094:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9962,"name":"uint256","nodeType":"ElementaryTypeName","src":"18094:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18093:11:40"},"returnParameters":{"id":9967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10179,"src":"18128:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9965,"name":"uint256","nodeType":"ElementaryTypeName","src":"18128:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18127:9:40"},"scope":10800,"src":"18080:5181:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10212,"nodeType":"Block","src":"23434:171:40","statements":[{"id":10211,"nodeType":"UncheckedBlock","src":"23444:155:40","statements":[{"assignments":[10191],"declarations":[{"constant":false,"id":10191,"mutability":"mutable","name":"result","nameLocation":"23476:6:40","nodeType":"VariableDeclaration","scope":10211,"src":"23468:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10190,"name":"uint256","nodeType":"ElementaryTypeName","src":"23468:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10195,"initialValue":{"arguments":[{"id":10193,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10182,"src":"23490:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10192,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[10179,10213],"referencedDeclaration":10179,"src":"23485:4:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23485:7:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23468:24:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10196,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23513:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10200,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10185,"src":"23555:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10199,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"23538:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23538:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10202,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23568:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10203,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23577:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10205,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10182,"src":"23586:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23538:49:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10197,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23522:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23531:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23522:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23522:66:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23513:75:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10189,"id":10210,"nodeType":"Return","src":"23506:82:40"}]}]},"documentation":{"id":10180,"nodeType":"StructuredDocumentation","src":"23267:86:40","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":10213,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"23367:4:40","nodeType":"FunctionDefinition","parameters":{"id":10186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10182,"mutability":"mutable","name":"a","nameLocation":"23380:1:40","nodeType":"VariableDeclaration","scope":10213,"src":"23372:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10181,"name":"uint256","nodeType":"ElementaryTypeName","src":"23372:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10185,"mutability":"mutable","name":"rounding","nameLocation":"23392:8:40","nodeType":"VariableDeclaration","scope":10213,"src":"23383:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10184,"nodeType":"UserDefinedTypeName","pathNode":{"id":10183,"name":"Rounding","nameLocations":["23383:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"23383:8:40"},"referencedDeclaration":9206,"src":"23383:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"23371:30:40"},"returnParameters":{"id":10189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10213,"src":"23425:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10187,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:40"},"scope":10800,"src":"23358:247:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10408,"nodeType":"Block","src":"23796:981:40","statements":[{"assignments":[10222],"declarations":[{"constant":false,"id":10222,"mutability":"mutable","name":"result","nameLocation":"23814:6:40","nodeType":"VariableDeclaration","scope":10408,"src":"23806:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10221,"name":"uint256","nodeType":"ElementaryTypeName","src":"23806:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10224,"initialValue":{"hexValue":"30","id":10223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23823:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"23806:18:40"},{"assignments":[10226],"declarations":[{"constant":false,"id":10226,"mutability":"mutable","name":"exp","nameLocation":"23842:3:40","nodeType":"VariableDeclaration","scope":10408,"src":"23834:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10225,"name":"uint256","nodeType":"ElementaryTypeName","src":"23834:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10227,"nodeType":"VariableDeclarationStatement","src":"23834:11:40"},{"id":10405,"nodeType":"UncheckedBlock","src":"23855:893:40","statements":[{"expression":{"id":10242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10228,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23879:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"313238","id":10229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23885:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"23907:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":10238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":10235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23916:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23921:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"23916:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":10236,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23915:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23928:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"23915:14:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"23907:22:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10230,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23891:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23900:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23891:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23891:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23885:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23879:51:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10243,"nodeType":"ExpressionStatement","src":"23879:51:40"},{"expression":{"id":10246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10244,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"23944:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10245,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23954:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23944:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10247,"nodeType":"ExpressionStatement","src":"23944:13:40"},{"expression":{"id":10250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10248,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"23971:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10249,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23981:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23971:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10251,"nodeType":"ExpressionStatement","src":"23971:13:40"},{"expression":{"id":10266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10252,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23999:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3634","id":10253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24005:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10256,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24026:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":10262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24035:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24040:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"24035:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10260,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24034:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24046:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24034:13:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"24026:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10254,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24010:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24019:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24010:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24010:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24005:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23999:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10267,"nodeType":"ExpressionStatement","src":"23999:49:40"},{"expression":{"id":10270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24062:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10269,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24072:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24062:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10271,"nodeType":"ExpressionStatement","src":"24062:13:40"},{"expression":{"id":10274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10272,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24089:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10273,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24099:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24089:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10275,"nodeType":"ExpressionStatement","src":"24089:13:40"},{"expression":{"id":10290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10276,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24117:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":10277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24123:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24144:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":10286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24153:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24158:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"24153:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10284,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24152:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24164:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24152:13:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"24144:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10278,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24128:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24137:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24128:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24128:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24123:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24117:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10291,"nodeType":"ExpressionStatement","src":"24117:49:40"},{"expression":{"id":10294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10292,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24180:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10293,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24190:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24180:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10295,"nodeType":"ExpressionStatement","src":"24180:13:40"},{"expression":{"id":10298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10296,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24207:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10297,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24217:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24207:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10299,"nodeType":"ExpressionStatement","src":"24207:13:40"},{"expression":{"id":10314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10300,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24235:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3136","id":10301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24241:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10304,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24262:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":10310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10307,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24271:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24276:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"24271:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10308,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24270:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24282:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24270:13:40","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"24262:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10302,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24246:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24255:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24246:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24246:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24241:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24235:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10315,"nodeType":"ExpressionStatement","src":"24235:49:40"},{"expression":{"id":10318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24298:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10317,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24308:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24298:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10319,"nodeType":"ExpressionStatement","src":"24298:13:40"},{"expression":{"id":10322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10320,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24325:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10321,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24335:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24325:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10323,"nodeType":"ExpressionStatement","src":"24325:13:40"},{"expression":{"id":10338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10324,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24353:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":10325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24359:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24379:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":10334,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10331,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24388:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24393:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24388:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10332,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24387:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24398:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24387:12:40","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"24379:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10326,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24363:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24372:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24363:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24359:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24353:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10339,"nodeType":"ExpressionStatement","src":"24353:47:40"},{"expression":{"id":10342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10340,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24414:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10341,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24424:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24414:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10343,"nodeType":"ExpressionStatement","src":"24414:13:40"},{"expression":{"id":10346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10344,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24441:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10345,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24451:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24441:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10347,"nodeType":"ExpressionStatement","src":"24441:13:40"},{"expression":{"id":10362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10348,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24469:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"34","id":10349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24475:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10352,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24495:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"id":10358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":10355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24504:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":10354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24509:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"24504:6:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":10356,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24503:8:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24514:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24503:12:40","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"}},"src":"24495:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10350,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24479:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24488:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24479:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24479:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24475:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24469:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10363,"nodeType":"ExpressionStatement","src":"24469:47:40"},{"expression":{"id":10366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24530:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10365,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24540:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24530:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10367,"nodeType":"ExpressionStatement","src":"24530:13:40"},{"expression":{"id":10370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10368,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24557:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10369,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24567:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24557:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10371,"nodeType":"ExpressionStatement","src":"24557:13:40"},{"expression":{"id":10386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10372,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24585:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24591:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24611:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"id":10382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":10379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24620:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":10378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24625:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"24620:6:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":10380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24619:8:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24630:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24619:12:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}},"src":"24611:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10374,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24595:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24604:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24595:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24595:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24591:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24585:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10387,"nodeType":"ExpressionStatement","src":"24585:47:40"},{"expression":{"id":10390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24646:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10389,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24656:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24646:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10391,"nodeType":"ExpressionStatement","src":"24646:13:40"},{"expression":{"id":10394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10392,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24673:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10393,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24683:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24673:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10395,"nodeType":"ExpressionStatement","src":"24673:13:40"},{"expression":{"id":10403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10396,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24701:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24727:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":10400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24735:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24727:9:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10397,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24711:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24720:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24711:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24711:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24701:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10404,"nodeType":"ExpressionStatement","src":"24701:36:40"}]},{"expression":{"id":10406,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24764:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10220,"id":10407,"nodeType":"Return","src":"24757:13:40"}]},"documentation":{"id":10214,"nodeType":"StructuredDocumentation","src":"23611:119:40","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":10409,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"23744:4:40","nodeType":"FunctionDefinition","parameters":{"id":10217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10216,"mutability":"mutable","name":"value","nameLocation":"23757:5:40","nodeType":"VariableDeclaration","scope":10409,"src":"23749:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10215,"name":"uint256","nodeType":"ElementaryTypeName","src":"23749:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23748:15:40"},"returnParameters":{"id":10220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10409,"src":"23787:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10218,"name":"uint256","nodeType":"ElementaryTypeName","src":"23787:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23786:9:40"},"scope":10800,"src":"23735:1042:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10442,"nodeType":"Block","src":"25010:175:40","statements":[{"id":10441,"nodeType":"UncheckedBlock","src":"25020:159:40","statements":[{"assignments":[10421],"declarations":[{"constant":false,"id":10421,"mutability":"mutable","name":"result","nameLocation":"25052:6:40","nodeType":"VariableDeclaration","scope":10441,"src":"25044:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10420,"name":"uint256","nodeType":"ElementaryTypeName","src":"25044:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10425,"initialValue":{"arguments":[{"id":10423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10412,"src":"25066:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10422,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[10409,10443],"referencedDeclaration":10409,"src":"25061:4:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25061:11:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25044:28:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10426,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10421,"src":"25093:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10430,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10415,"src":"25135:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10429,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"25118:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25118:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25148:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":10433,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10421,"src":"25153:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10435,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10412,"src":"25162:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25118:49:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10427,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"25102:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25111:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"25102:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25102:66:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25093:75:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10419,"id":10440,"nodeType":"Return","src":"25086:82:40"}]}]},"documentation":{"id":10410,"nodeType":"StructuredDocumentation","src":"24783:142:40","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10443,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"24939:4:40","nodeType":"FunctionDefinition","parameters":{"id":10416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10412,"mutability":"mutable","name":"value","nameLocation":"24952:5:40","nodeType":"VariableDeclaration","scope":10443,"src":"24944:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10411,"name":"uint256","nodeType":"ElementaryTypeName","src":"24944:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10415,"mutability":"mutable","name":"rounding","nameLocation":"24968:8:40","nodeType":"VariableDeclaration","scope":10443,"src":"24959:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10414,"nodeType":"UserDefinedTypeName","pathNode":{"id":10413,"name":"Rounding","nameLocations":["24959:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"24959:8:40"},"referencedDeclaration":9206,"src":"24959:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"24943:34:40"},"returnParameters":{"id":10419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10443,"src":"25001:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10417,"name":"uint256","nodeType":"ElementaryTypeName","src":"25001:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25000:9:40"},"scope":10800,"src":"24930:255:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10571,"nodeType":"Block","src":"25378:854:40","statements":[{"assignments":[10452],"declarations":[{"constant":false,"id":10452,"mutability":"mutable","name":"result","nameLocation":"25396:6:40","nodeType":"VariableDeclaration","scope":10571,"src":"25388:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10451,"name":"uint256","nodeType":"ElementaryTypeName","src":"25388:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10454,"initialValue":{"hexValue":"30","id":10453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25405:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"25388:18:40"},{"id":10568,"nodeType":"UncheckedBlock","src":"25416:787:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10455,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25444:5:40","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":10458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25453:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":10457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25459:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25453:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25444:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10471,"nodeType":"IfStatement","src":"25440:103:40","trueBody":{"id":10470,"nodeType":"Block","src":"25463:80:40","statements":[{"expression":{"id":10464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10460,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25481:5:40","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":10463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25490:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":10462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25496:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25490:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25481:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10465,"nodeType":"ExpressionStatement","src":"25481:17:40"},{"expression":{"id":10468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10466,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25516:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":10467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25526:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25516:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10469,"nodeType":"ExpressionStatement","src":"25516:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25560:5:40","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":10475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25569:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":10474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25575:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25569:8:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25560:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10488,"nodeType":"IfStatement","src":"25556:103:40","trueBody":{"id":10487,"nodeType":"Block","src":"25579:80:40","statements":[{"expression":{"id":10481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10477,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25597:5:40","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":10480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25606:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":10479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25612:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25606:8:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25597:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10482,"nodeType":"ExpressionStatement","src":"25597:17:40"},{"expression":{"id":10485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10483,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25632:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":10484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25642:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25632:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10486,"nodeType":"ExpressionStatement","src":"25632:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10489,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25676:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":10492,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25685:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":10491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25691:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25685:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25676:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10505,"nodeType":"IfStatement","src":"25672:103:40","trueBody":{"id":10504,"nodeType":"Block","src":"25695:80:40","statements":[{"expression":{"id":10498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10494,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25713:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":10497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25722:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":10496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25728:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25722:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25713:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10499,"nodeType":"ExpressionStatement","src":"25713:17:40"},{"expression":{"id":10502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10500,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25748:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":10501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25758:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25748:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10503,"nodeType":"ExpressionStatement","src":"25748:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10506,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25792:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":10509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25801:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":10508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25807:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25801:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25792:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10522,"nodeType":"IfStatement","src":"25788:100:40","trueBody":{"id":10521,"nodeType":"Block","src":"25810:78:40","statements":[{"expression":{"id":10515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10511,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25828:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":10514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25837:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":10513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25843:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25837:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25828:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10516,"nodeType":"ExpressionStatement","src":"25828:16:40"},{"expression":{"id":10519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10517,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25862:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":10518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25872:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25862:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10520,"nodeType":"ExpressionStatement","src":"25862:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10523,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25905:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":10526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25914:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":10525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25920:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25914:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25905:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10539,"nodeType":"IfStatement","src":"25901:100:40","trueBody":{"id":10538,"nodeType":"Block","src":"25923:78:40","statements":[{"expression":{"id":10532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10528,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25941:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":10531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25950:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":10530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25956:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25950:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25941:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10533,"nodeType":"ExpressionStatement","src":"25941:16:40"},{"expression":{"id":10536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10534,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25975:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":10535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25985:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25975:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10537,"nodeType":"ExpressionStatement","src":"25975:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10540,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26018:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":10543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26027:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":10542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26033:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26027:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26018:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10556,"nodeType":"IfStatement","src":"26014:100:40","trueBody":{"id":10555,"nodeType":"Block","src":"26036:78:40","statements":[{"expression":{"id":10549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26054:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":10548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26063:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":10547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26069:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26063:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26054:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10550,"nodeType":"ExpressionStatement","src":"26054:16:40"},{"expression":{"id":10553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10551,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26088:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":10552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26098:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26088:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10554,"nodeType":"ExpressionStatement","src":"26088:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10557,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26131:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":10560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26140:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":10559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26146:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26140:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"26131:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10567,"nodeType":"IfStatement","src":"26127:66:40","trueBody":{"id":10566,"nodeType":"Block","src":"26149:44:40","statements":[{"expression":{"id":10564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10562,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26167:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":10563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26177:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26167:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10565,"nodeType":"ExpressionStatement","src":"26167:11:40"}]}}]},{"expression":{"id":10569,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26219:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10450,"id":10570,"nodeType":"Return","src":"26212:13:40"}]},"documentation":{"id":10444,"nodeType":"StructuredDocumentation","src":"25191:120:40","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":10572,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"25325:5:40","nodeType":"FunctionDefinition","parameters":{"id":10447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10446,"mutability":"mutable","name":"value","nameLocation":"25339:5:40","nodeType":"VariableDeclaration","scope":10572,"src":"25331:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10445,"name":"uint256","nodeType":"ElementaryTypeName","src":"25331:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25330:15:40"},"returnParameters":{"id":10450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10572,"src":"25369:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10448,"name":"uint256","nodeType":"ElementaryTypeName","src":"25369:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25368:9:40"},"scope":10800,"src":"25316:916:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10605,"nodeType":"Block","src":"26467:177:40","statements":[{"id":10604,"nodeType":"UncheckedBlock","src":"26477:161:40","statements":[{"assignments":[10584],"declarations":[{"constant":false,"id":10584,"mutability":"mutable","name":"result","nameLocation":"26509:6:40","nodeType":"VariableDeclaration","scope":10604,"src":"26501:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10583,"name":"uint256","nodeType":"ElementaryTypeName","src":"26501:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10588,"initialValue":{"arguments":[{"id":10586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10575,"src":"26524:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10585,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[10572,10606],"referencedDeclaration":10572,"src":"26518:5:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26518:12:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26501:29:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10589,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10584,"src":"26551:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10593,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10578,"src":"26593:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10592,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"26576:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26576:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26606:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":10596,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10584,"src":"26612:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10598,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10575,"src":"26621:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26576:50:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10590,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"26560:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26569:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"26560:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26560:67:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26551:76:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10582,"id":10603,"nodeType":"Return","src":"26544:83:40"}]}]},"documentation":{"id":10573,"nodeType":"StructuredDocumentation","src":"26238:143:40","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10606,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"26395:5:40","nodeType":"FunctionDefinition","parameters":{"id":10579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10575,"mutability":"mutable","name":"value","nameLocation":"26409:5:40","nodeType":"VariableDeclaration","scope":10606,"src":"26401:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10574,"name":"uint256","nodeType":"ElementaryTypeName","src":"26401:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10578,"mutability":"mutable","name":"rounding","nameLocation":"26425:8:40","nodeType":"VariableDeclaration","scope":10606,"src":"26416:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10577,"nodeType":"UserDefinedTypeName","pathNode":{"id":10576,"name":"Rounding","nameLocations":["26416:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"26416:8:40"},"referencedDeclaration":9206,"src":"26416:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"26400:34:40"},"returnParameters":{"id":10582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10581,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10606,"src":"26458:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10580,"name":"uint256","nodeType":"ElementaryTypeName","src":"26458:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26457:9:40"},"scope":10800,"src":"26386:258:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10742,"nodeType":"Block","src":"26964:674:40","statements":[{"assignments":[10615],"declarations":[{"constant":false,"id":10615,"mutability":"mutable","name":"result","nameLocation":"26982:6:40","nodeType":"VariableDeclaration","scope":10742,"src":"26974:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10614,"name":"uint256","nodeType":"ElementaryTypeName","src":"26974:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10617,"initialValue":{"hexValue":"30","id":10616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26991:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"26974:18:40"},{"assignments":[10619],"declarations":[{"constant":false,"id":10619,"mutability":"mutable","name":"isGt","nameLocation":"27010:4:40","nodeType":"VariableDeclaration","scope":10742,"src":"27002:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10618,"name":"uint256","nodeType":"ElementaryTypeName","src":"27002:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10620,"nodeType":"VariableDeclarationStatement","src":"27002:12:40"},{"id":10739,"nodeType":"UncheckedBlock","src":"27024:585:40","statements":[{"expression":{"id":10633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10621,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27048:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10624,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27071:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":10630,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":10627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27080:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27085:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27080:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":10628,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27079:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27092:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27079:14:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"27071:22:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10622,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27055:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27064:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27055:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27055:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27048:46:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10634,"nodeType":"ExpressionStatement","src":"27048:46:40"},{"expression":{"id":10639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27108:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10636,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27118:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313238","id":10637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27125:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27118:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27108:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10640,"nodeType":"ExpressionStatement","src":"27108:20:40"},{"expression":{"id":10645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10641,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27142:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10642,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27152:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":10643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27159:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27152:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27142:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10646,"nodeType":"ExpressionStatement","src":"27142:19:40"},{"expression":{"id":10659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10647,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27176:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10650,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27199:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":10656,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27208:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27213:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27208:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10654,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27207:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27219:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27207:13:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"27199:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10648,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27183:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27192:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27183:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27183:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27176:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10660,"nodeType":"ExpressionStatement","src":"27176:45:40"},{"expression":{"id":10665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10661,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27235:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10662,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27245:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3634","id":10663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27252:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27245:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27235:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10666,"nodeType":"ExpressionStatement","src":"27235:19:40"},{"expression":{"id":10671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10667,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27268:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10668,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27278:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":10669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27285:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27278:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27268:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10672,"nodeType":"ExpressionStatement","src":"27268:18:40"},{"expression":{"id":10685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10673,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27301:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10676,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27324:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":10682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27333:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27338:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27333:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10680,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27332:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27344:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27332:13:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"27324:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10674,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27308:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27317:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27308:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27308:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27301:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10686,"nodeType":"ExpressionStatement","src":"27301:45:40"},{"expression":{"id":10691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10687,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27360:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10688,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27370:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":10689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27377:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27370:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27360:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10692,"nodeType":"ExpressionStatement","src":"27360:19:40"},{"expression":{"id":10697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10693,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27393:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10694,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27403:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"34","id":10695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27410:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27403:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27393:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10698,"nodeType":"ExpressionStatement","src":"27393:18:40"},{"expression":{"id":10711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10699,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27426:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10702,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27449:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":10708,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27458:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27463:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27458:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10706,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27457:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27469:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27457:13:40","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"27449:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10700,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27433:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27442:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27433:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27433:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27426:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10712,"nodeType":"ExpressionStatement","src":"27426:45:40"},{"expression":{"id":10717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10713,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27485:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10714,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27495:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":10715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27502:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27495:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27485:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10718,"nodeType":"ExpressionStatement","src":"27485:19:40"},{"expression":{"id":10723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10719,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27518:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10720,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27528:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":10721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27535:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27528:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27518:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10724,"nodeType":"ExpressionStatement","src":"27518:18:40"},{"expression":{"id":10737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10725,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27551:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10728,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27577:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":10734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27586:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27591:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27586:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10732,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27585:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27596:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27585:12:40","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"27577:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10726,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27561:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27570:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27561:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27551:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10738,"nodeType":"ExpressionStatement","src":"27551:47:40"}]},{"expression":{"id":10740,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27625:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10613,"id":10741,"nodeType":"Return","src":"27618:13:40"}]},"documentation":{"id":10607,"nodeType":"StructuredDocumentation","src":"26650:246:40","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":10743,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"26910:6:40","nodeType":"FunctionDefinition","parameters":{"id":10610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10609,"mutability":"mutable","name":"value","nameLocation":"26925:5:40","nodeType":"VariableDeclaration","scope":10743,"src":"26917:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10608,"name":"uint256","nodeType":"ElementaryTypeName","src":"26917:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26916:15:40"},"returnParameters":{"id":10613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10743,"src":"26955:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10611,"name":"uint256","nodeType":"ElementaryTypeName","src":"26955:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26954:9:40"},"scope":10800,"src":"26901:737:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10779,"nodeType":"Block","src":"27875:184:40","statements":[{"id":10778,"nodeType":"UncheckedBlock","src":"27885:168:40","statements":[{"assignments":[10755],"declarations":[{"constant":false,"id":10755,"mutability":"mutable","name":"result","nameLocation":"27917:6:40","nodeType":"VariableDeclaration","scope":10778,"src":"27909:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10754,"name":"uint256","nodeType":"ElementaryTypeName","src":"27909:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10759,"initialValue":{"arguments":[{"id":10757,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10746,"src":"27933:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10756,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[10743,10780],"referencedDeclaration":10743,"src":"27926:6:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27926:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27909:30:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10760,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"27960:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10764,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"28002:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10763,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"27985:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27985:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28015:1:40","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":10769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10767,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"28021:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":10768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28031:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"28021:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10770,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28020:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10772,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10746,"src":"28036:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:26:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27985:56:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10761,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27969:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27978:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27969:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27969:73:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27960:82:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10753,"id":10777,"nodeType":"Return","src":"27953:89:40"}]}]},"documentation":{"id":10744,"nodeType":"StructuredDocumentation","src":"27644:144:40","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10780,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"27802:6:40","nodeType":"FunctionDefinition","parameters":{"id":10750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10746,"mutability":"mutable","name":"value","nameLocation":"27817:5:40","nodeType":"VariableDeclaration","scope":10780,"src":"27809:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10745,"name":"uint256","nodeType":"ElementaryTypeName","src":"27809:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10749,"mutability":"mutable","name":"rounding","nameLocation":"27833:8:40","nodeType":"VariableDeclaration","scope":10780,"src":"27824:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10748,"nodeType":"UserDefinedTypeName","pathNode":{"id":10747,"name":"Rounding","nameLocations":["27824:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"27824:8:40"},"referencedDeclaration":9206,"src":"27824:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"27808:34:40"},"returnParameters":{"id":10753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10780,"src":"27866:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10751,"name":"uint256","nodeType":"ElementaryTypeName","src":"27866:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27865:9:40"},"scope":10800,"src":"27793:266:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10798,"nodeType":"Block","src":"28257:48:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10791,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"28280:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28274:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":10789,"name":"uint8","nodeType":"ElementaryTypeName","src":"28274:5:40","typeDescriptions":{}}},"id":10792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28274:15:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":10793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28292:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"28274:19:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":10795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28297:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"28274:24:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10788,"id":10797,"nodeType":"Return","src":"28267:31:40"}]},"documentation":{"id":10781,"nodeType":"StructuredDocumentation","src":"28065:113:40","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":10799,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"28192:16:40","nodeType":"FunctionDefinition","parameters":{"id":10785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10784,"mutability":"mutable","name":"rounding","nameLocation":"28218:8:40","nodeType":"VariableDeclaration","scope":10799,"src":"28209:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10783,"nodeType":"UserDefinedTypeName","pathNode":{"id":10782,"name":"Rounding","nameLocations":["28209:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"28209:8:40"},"referencedDeclaration":9206,"src":"28209:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28208:19:40"},"returnParameters":{"id":10788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10787,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10799,"src":"28251:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10786,"name":"bool","nodeType":"ElementaryTypeName","src":"28251:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28250:6:40"},"scope":10800,"src":"28183:122:40","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":10801,"src":"281:28026:40","usedErrors":[],"usedEvents":[]}],"src":"103:28205:40"},"id":40},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[12565]},"id":12566,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10802,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:41"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":10803,"nodeType":"StructuredDocumentation","src":"218:550:41","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":12565,"linearizedBaseContracts":[12565],"name":"SafeCast","nameLocation":"777:8:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10804,"nodeType":"StructuredDocumentation","src":"792:68:41","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":10810,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:41","nodeType":"ErrorDefinition","parameters":{"id":10809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10806,"mutability":"mutable","name":"bits","nameLocation":"908:4:41","nodeType":"VariableDeclaration","scope":10810,"src":"902:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10805,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10808,"mutability":"mutable","name":"value","nameLocation":"922:5:41","nodeType":"VariableDeclaration","scope":10810,"src":"914:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10807,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:41"},"src":"865:64:41"},{"documentation":{"id":10811,"nodeType":"StructuredDocumentation","src":"935:75:41","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":10815,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:41","nodeType":"ErrorDefinition","parameters":{"id":10814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10813,"mutability":"mutable","name":"value","nameLocation":"1056:5:41","nodeType":"VariableDeclaration","scope":10815,"src":"1049:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10812,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:41"},"src":"1015:48:41"},{"documentation":{"id":10816,"nodeType":"StructuredDocumentation","src":"1069:67:41","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":10822,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:41","nodeType":"ErrorDefinition","parameters":{"id":10821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10818,"mutability":"mutable","name":"bits","nameLocation":"1183:4:41","nodeType":"VariableDeclaration","scope":10822,"src":"1177:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10817,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10820,"mutability":"mutable","name":"value","nameLocation":"1196:5:41","nodeType":"VariableDeclaration","scope":10822,"src":"1189:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10819,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:41"},"src":"1141:62:41"},{"documentation":{"id":10823,"nodeType":"StructuredDocumentation","src":"1209:75:41","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":10827,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:41","nodeType":"ErrorDefinition","parameters":{"id":10826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10825,"mutability":"mutable","name":"value","nameLocation":"1331:5:41","nodeType":"VariableDeclaration","scope":10827,"src":"1323:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10824,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:41"},"src":"1289:49:41"},{"body":{"id":10854,"nodeType":"Block","src":"1695:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10835,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1709:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":10837,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":10836,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":10840,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:41","memberName":"max","nodeType":"MemberAccess","src":"1717:17:41","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10848,"nodeType":"IfStatement","src":"1705:105:41","trueBody":{"id":10847,"nodeType":"Block","src":"1736:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":10843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:41","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":10844,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1793:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10842,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"1757:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10846,"nodeType":"RevertStatement","src":"1750:49:41"}]}},{"expression":{"arguments":[{"id":10851,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1834:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":10849,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:41","typeDescriptions":{}}},"id":10852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":10834,"id":10853,"nodeType":"Return","src":"1819:21:41"}]},"documentation":{"id":10828,"nodeType":"StructuredDocumentation","src":"1344:280:41","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":10855,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:41","nodeType":"FunctionDefinition","parameters":{"id":10831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10830,"mutability":"mutable","name":"value","nameLocation":"1656:5:41","nodeType":"VariableDeclaration","scope":10855,"src":"1648:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10829,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:41"},"returnParameters":{"id":10834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10833,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10855,"src":"1686:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":10832,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:41","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:41"},"scope":12565,"src":"1629:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10882,"nodeType":"Block","src":"2204:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10863,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2218:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":10865,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":10864,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":10868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:41","memberName":"max","nodeType":"MemberAccess","src":"2226:17:41","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10876,"nodeType":"IfStatement","src":"2214:105:41","trueBody":{"id":10875,"nodeType":"Block","src":"2245:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":10871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:41","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":10872,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2302:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10870,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"2266:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10874,"nodeType":"RevertStatement","src":"2259:49:41"}]}},{"expression":{"arguments":[{"id":10879,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2343:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":10877,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:41","typeDescriptions":{}}},"id":10880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":10862,"id":10881,"nodeType":"Return","src":"2328:21:41"}]},"documentation":{"id":10856,"nodeType":"StructuredDocumentation","src":"1853:280:41","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":10883,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:41","nodeType":"FunctionDefinition","parameters":{"id":10859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10858,"mutability":"mutable","name":"value","nameLocation":"2165:5:41","nodeType":"VariableDeclaration","scope":10883,"src":"2157:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10857,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:41"},"returnParameters":{"id":10862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10883,"src":"2195:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":10860,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:41","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:41"},"scope":12565,"src":"2138:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10910,"nodeType":"Block","src":"2713:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10891,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2727:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":10893,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":10892,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":10896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:41","memberName":"max","nodeType":"MemberAccess","src":"2735:17:41","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10904,"nodeType":"IfStatement","src":"2723:105:41","trueBody":{"id":10903,"nodeType":"Block","src":"2754:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":10899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:41","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":10900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2811:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10898,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"2775:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10902,"nodeType":"RevertStatement","src":"2768:49:41"}]}},{"expression":{"arguments":[{"id":10907,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2852:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":10905,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:41","typeDescriptions":{}}},"id":10908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":10890,"id":10909,"nodeType":"Return","src":"2837:21:41"}]},"documentation":{"id":10884,"nodeType":"StructuredDocumentation","src":"2362:280:41","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":10911,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:41","nodeType":"FunctionDefinition","parameters":{"id":10887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10886,"mutability":"mutable","name":"value","nameLocation":"2674:5:41","nodeType":"VariableDeclaration","scope":10911,"src":"2666:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10885,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:41"},"returnParameters":{"id":10890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10889,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10911,"src":"2704:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":10888,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:41","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:41"},"scope":12565,"src":"2647:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10938,"nodeType":"Block","src":"3222:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3236:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":10921,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":10920,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":10924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:41","memberName":"max","nodeType":"MemberAccess","src":"3244:17:41","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10932,"nodeType":"IfStatement","src":"3232:105:41","trueBody":{"id":10931,"nodeType":"Block","src":"3263:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":10927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:41","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":10928,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3320:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10926,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"3284:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10929,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10930,"nodeType":"RevertStatement","src":"3277:49:41"}]}},{"expression":{"arguments":[{"id":10935,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3361:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10934,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":10933,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:41","typeDescriptions":{}}},"id":10936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":10918,"id":10937,"nodeType":"Return","src":"3346:21:41"}]},"documentation":{"id":10912,"nodeType":"StructuredDocumentation","src":"2871:280:41","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":10939,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:41","nodeType":"FunctionDefinition","parameters":{"id":10915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10914,"mutability":"mutable","name":"value","nameLocation":"3183:5:41","nodeType":"VariableDeclaration","scope":10939,"src":"3175:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10913,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:41"},"returnParameters":{"id":10918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10939,"src":"3213:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":10916,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:41","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:41"},"scope":12565,"src":"3156:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10966,"nodeType":"Block","src":"3731:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10947,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3745:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10950,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":10949,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":10948,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":10952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:41","memberName":"max","nodeType":"MemberAccess","src":"3753:17:41","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10960,"nodeType":"IfStatement","src":"3741:105:41","trueBody":{"id":10959,"nodeType":"Block","src":"3772:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":10955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:41","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":10956,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3829:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10954,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"3793:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10958,"nodeType":"RevertStatement","src":"3786:49:41"}]}},{"expression":{"arguments":[{"id":10963,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3870:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":10961,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:41","typeDescriptions":{}}},"id":10964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":10946,"id":10965,"nodeType":"Return","src":"3855:21:41"}]},"documentation":{"id":10940,"nodeType":"StructuredDocumentation","src":"3380:280:41","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":10967,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:41","nodeType":"FunctionDefinition","parameters":{"id":10943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10942,"mutability":"mutable","name":"value","nameLocation":"3692:5:41","nodeType":"VariableDeclaration","scope":10967,"src":"3684:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10941,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:41"},"returnParameters":{"id":10946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10945,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10967,"src":"3722:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":10944,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:41","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:41"},"scope":12565,"src":"3665:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10994,"nodeType":"Block","src":"4240:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10975,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4254:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":10977,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":10976,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":10980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:41","memberName":"max","nodeType":"MemberAccess","src":"4262:17:41","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10988,"nodeType":"IfStatement","src":"4250:105:41","trueBody":{"id":10987,"nodeType":"Block","src":"4281:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":10983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:41","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":10984,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4338:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10982,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"4302:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10986,"nodeType":"RevertStatement","src":"4295:49:41"}]}},{"expression":{"arguments":[{"id":10991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4379:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":10989,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:41","typeDescriptions":{}}},"id":10992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":10974,"id":10993,"nodeType":"Return","src":"4364:21:41"}]},"documentation":{"id":10968,"nodeType":"StructuredDocumentation","src":"3889:280:41","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":10995,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:41","nodeType":"FunctionDefinition","parameters":{"id":10971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10970,"mutability":"mutable","name":"value","nameLocation":"4201:5:41","nodeType":"VariableDeclaration","scope":10995,"src":"4193:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10969,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:41"},"returnParameters":{"id":10974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10995,"src":"4231:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":10972,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:41","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:41"},"scope":12565,"src":"4174:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11022,"nodeType":"Block","src":"4749:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11003,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4763:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11005,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":11004,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":11008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:41","memberName":"max","nodeType":"MemberAccess","src":"4771:17:41","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11016,"nodeType":"IfStatement","src":"4759:105:41","trueBody":{"id":11015,"nodeType":"Block","src":"4790:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":11011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:41","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":11012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4847:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11010,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"4811:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11014,"nodeType":"RevertStatement","src":"4804:49:41"}]}},{"expression":{"arguments":[{"id":11019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4888:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11017,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:41","typeDescriptions":{}}},"id":11020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":11002,"id":11021,"nodeType":"Return","src":"4873:21:41"}]},"documentation":{"id":10996,"nodeType":"StructuredDocumentation","src":"4398:280:41","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":11023,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:41","nodeType":"FunctionDefinition","parameters":{"id":10999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10998,"mutability":"mutable","name":"value","nameLocation":"4710:5:41","nodeType":"VariableDeclaration","scope":11023,"src":"4702:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10997,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:41"},"returnParameters":{"id":11002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11023,"src":"4740:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":11000,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:41","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:41"},"scope":12565,"src":"4683:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11050,"nodeType":"Block","src":"5258:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11031,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5272:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11033,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":11032,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":11036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:41","memberName":"max","nodeType":"MemberAccess","src":"5280:17:41","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11044,"nodeType":"IfStatement","src":"5268:105:41","trueBody":{"id":11043,"nodeType":"Block","src":"5299:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":11039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:41","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":11040,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5356:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11038,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"5320:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11042,"nodeType":"RevertStatement","src":"5313:49:41"}]}},{"expression":{"arguments":[{"id":11047,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5397:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11045,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:41","typeDescriptions":{}}},"id":11048,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":11030,"id":11049,"nodeType":"Return","src":"5382:21:41"}]},"documentation":{"id":11024,"nodeType":"StructuredDocumentation","src":"4907:280:41","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":11051,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:41","nodeType":"FunctionDefinition","parameters":{"id":11027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11026,"mutability":"mutable","name":"value","nameLocation":"5219:5:41","nodeType":"VariableDeclaration","scope":11051,"src":"5211:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11025,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:41"},"returnParameters":{"id":11030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11029,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11051,"src":"5249:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":11028,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:41","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:41"},"scope":12565,"src":"5192:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11078,"nodeType":"Block","src":"5767:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11059,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5781:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11061,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":11060,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":11064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:41","memberName":"max","nodeType":"MemberAccess","src":"5789:17:41","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11072,"nodeType":"IfStatement","src":"5777:105:41","trueBody":{"id":11071,"nodeType":"Block","src":"5808:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":11067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:41","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":11068,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5865:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11066,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"5829:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11070,"nodeType":"RevertStatement","src":"5822:49:41"}]}},{"expression":{"arguments":[{"id":11075,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5906:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11073,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:41","typeDescriptions":{}}},"id":11076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":11058,"id":11077,"nodeType":"Return","src":"5891:21:41"}]},"documentation":{"id":11052,"nodeType":"StructuredDocumentation","src":"5416:280:41","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":11079,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:41","nodeType":"FunctionDefinition","parameters":{"id":11055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11054,"mutability":"mutable","name":"value","nameLocation":"5728:5:41","nodeType":"VariableDeclaration","scope":11079,"src":"5720:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11053,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:41"},"returnParameters":{"id":11058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11057,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11079,"src":"5758:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":11056,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:41","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:41"},"scope":12565,"src":"5701:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11106,"nodeType":"Block","src":"6276:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11087,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6290:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11090,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11089,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":11088,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":11092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:41","memberName":"max","nodeType":"MemberAccess","src":"6298:17:41","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11100,"nodeType":"IfStatement","src":"6286:105:41","trueBody":{"id":11099,"nodeType":"Block","src":"6317:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":11095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:41","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":11096,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11094,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"6338:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11098,"nodeType":"RevertStatement","src":"6331:49:41"}]}},{"expression":{"arguments":[{"id":11103,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6415:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11101,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:41","typeDescriptions":{}}},"id":11104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":11086,"id":11105,"nodeType":"Return","src":"6400:21:41"}]},"documentation":{"id":11080,"nodeType":"StructuredDocumentation","src":"5925:280:41","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":11107,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:41","nodeType":"FunctionDefinition","parameters":{"id":11083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11082,"mutability":"mutable","name":"value","nameLocation":"6237:5:41","nodeType":"VariableDeclaration","scope":11107,"src":"6229:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11081,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:41"},"returnParameters":{"id":11086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11107,"src":"6267:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":11084,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:41","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:41"},"scope":12565,"src":"6210:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11134,"nodeType":"Block","src":"6785:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11115,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6799:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11117,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":11116,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":11120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:41","memberName":"max","nodeType":"MemberAccess","src":"6807:17:41","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11128,"nodeType":"IfStatement","src":"6795:105:41","trueBody":{"id":11127,"nodeType":"Block","src":"6826:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":11123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:41","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":11124,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6883:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11122,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"6847:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11126,"nodeType":"RevertStatement","src":"6840:49:41"}]}},{"expression":{"arguments":[{"id":11131,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6924:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11130,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11129,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:41","typeDescriptions":{}}},"id":11132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":11114,"id":11133,"nodeType":"Return","src":"6909:21:41"}]},"documentation":{"id":11108,"nodeType":"StructuredDocumentation","src":"6434:280:41","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":11135,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:41","nodeType":"FunctionDefinition","parameters":{"id":11111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11110,"mutability":"mutable","name":"value","nameLocation":"6746:5:41","nodeType":"VariableDeclaration","scope":11135,"src":"6738:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11109,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:41"},"returnParameters":{"id":11114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11135,"src":"6776:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":11112,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:41","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:41"},"scope":12565,"src":"6719:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11162,"nodeType":"Block","src":"7294:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11143,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7308:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11145,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":11144,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":11148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:41","memberName":"max","nodeType":"MemberAccess","src":"7316:17:41","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11156,"nodeType":"IfStatement","src":"7304:105:41","trueBody":{"id":11155,"nodeType":"Block","src":"7335:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":11151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:41","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":11152,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7392:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11150,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"7356:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11154,"nodeType":"RevertStatement","src":"7349:49:41"}]}},{"expression":{"arguments":[{"id":11159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7433:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11157,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:41","typeDescriptions":{}}},"id":11160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":11142,"id":11161,"nodeType":"Return","src":"7418:21:41"}]},"documentation":{"id":11136,"nodeType":"StructuredDocumentation","src":"6943:280:41","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":11163,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:41","nodeType":"FunctionDefinition","parameters":{"id":11139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11138,"mutability":"mutable","name":"value","nameLocation":"7255:5:41","nodeType":"VariableDeclaration","scope":11163,"src":"7247:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11137,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:41"},"returnParameters":{"id":11142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11141,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11163,"src":"7285:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":11140,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:41","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:41"},"scope":12565,"src":"7228:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11190,"nodeType":"Block","src":"7803:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7817:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11173,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":11172,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":11176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:41","memberName":"max","nodeType":"MemberAccess","src":"7825:17:41","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11184,"nodeType":"IfStatement","src":"7813:105:41","trueBody":{"id":11183,"nodeType":"Block","src":"7844:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":11179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:41","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":11180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7901:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11178,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"7865:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11182,"nodeType":"RevertStatement","src":"7858:49:41"}]}},{"expression":{"arguments":[{"id":11187,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7942:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11185,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:41","typeDescriptions":{}}},"id":11188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":11170,"id":11189,"nodeType":"Return","src":"7927:21:41"}]},"documentation":{"id":11164,"nodeType":"StructuredDocumentation","src":"7452:280:41","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":11191,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:41","nodeType":"FunctionDefinition","parameters":{"id":11167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11166,"mutability":"mutable","name":"value","nameLocation":"7764:5:41","nodeType":"VariableDeclaration","scope":11191,"src":"7756:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11165,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:41"},"returnParameters":{"id":11170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11169,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11191,"src":"7794:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":11168,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:41","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:41"},"scope":12565,"src":"7737:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11218,"nodeType":"Block","src":"8312:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11199,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8326:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11201,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":11200,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":11204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:41","memberName":"max","nodeType":"MemberAccess","src":"8334:17:41","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11212,"nodeType":"IfStatement","src":"8322:105:41","trueBody":{"id":11211,"nodeType":"Block","src":"8353:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":11207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:41","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":11208,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8410:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11206,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"8374:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11210,"nodeType":"RevertStatement","src":"8367:49:41"}]}},{"expression":{"arguments":[{"id":11215,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8451:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11213,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:41","typeDescriptions":{}}},"id":11216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":11198,"id":11217,"nodeType":"Return","src":"8436:21:41"}]},"documentation":{"id":11192,"nodeType":"StructuredDocumentation","src":"7961:280:41","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":11219,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:41","nodeType":"FunctionDefinition","parameters":{"id":11195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11194,"mutability":"mutable","name":"value","nameLocation":"8273:5:41","nodeType":"VariableDeclaration","scope":11219,"src":"8265:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11193,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:41"},"returnParameters":{"id":11198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11219,"src":"8303:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":11196,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:41","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:41"},"scope":12565,"src":"8246:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11246,"nodeType":"Block","src":"8821:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11227,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8835:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11229,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":11228,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":11232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:41","memberName":"max","nodeType":"MemberAccess","src":"8843:17:41","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11240,"nodeType":"IfStatement","src":"8831:105:41","trueBody":{"id":11239,"nodeType":"Block","src":"8862:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":11235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:41","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":11236,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8919:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11234,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"8883:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11238,"nodeType":"RevertStatement","src":"8876:49:41"}]}},{"expression":{"arguments":[{"id":11243,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8960:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11241,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:41","typeDescriptions":{}}},"id":11244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":11226,"id":11245,"nodeType":"Return","src":"8945:21:41"}]},"documentation":{"id":11220,"nodeType":"StructuredDocumentation","src":"8470:280:41","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":11247,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:41","nodeType":"FunctionDefinition","parameters":{"id":11223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11222,"mutability":"mutable","name":"value","nameLocation":"8782:5:41","nodeType":"VariableDeclaration","scope":11247,"src":"8774:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11221,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:41"},"returnParameters":{"id":11226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11247,"src":"8812:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":11224,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:41","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:41"},"scope":12565,"src":"8755:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11274,"nodeType":"Block","src":"9330:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9344:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11257,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":11256,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":11260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:41","memberName":"max","nodeType":"MemberAccess","src":"9352:17:41","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11268,"nodeType":"IfStatement","src":"9340:105:41","trueBody":{"id":11267,"nodeType":"Block","src":"9371:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":11263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:41","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":11264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9428:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11262,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"9392:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11266,"nodeType":"RevertStatement","src":"9385:49:41"}]}},{"expression":{"arguments":[{"id":11271,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9469:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11269,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:41","typeDescriptions":{}}},"id":11272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":11254,"id":11273,"nodeType":"Return","src":"9454:21:41"}]},"documentation":{"id":11248,"nodeType":"StructuredDocumentation","src":"8979:280:41","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":11275,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:41","nodeType":"FunctionDefinition","parameters":{"id":11251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11250,"mutability":"mutable","name":"value","nameLocation":"9291:5:41","nodeType":"VariableDeclaration","scope":11275,"src":"9283:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11249,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:41"},"returnParameters":{"id":11254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11253,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11275,"src":"9321:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":11252,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:41","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:41"},"scope":12565,"src":"9264:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11302,"nodeType":"Block","src":"9839:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11283,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9853:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11285,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":11284,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":11288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:41","memberName":"max","nodeType":"MemberAccess","src":"9861:17:41","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11296,"nodeType":"IfStatement","src":"9849:105:41","trueBody":{"id":11295,"nodeType":"Block","src":"9880:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":11291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:41","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":11292,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9937:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11290,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"9901:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11294,"nodeType":"RevertStatement","src":"9894:49:41"}]}},{"expression":{"arguments":[{"id":11299,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9978:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11297,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:41","typeDescriptions":{}}},"id":11300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":11282,"id":11301,"nodeType":"Return","src":"9963:21:41"}]},"documentation":{"id":11276,"nodeType":"StructuredDocumentation","src":"9488:280:41","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":11303,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:41","nodeType":"FunctionDefinition","parameters":{"id":11279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11278,"mutability":"mutable","name":"value","nameLocation":"9800:5:41","nodeType":"VariableDeclaration","scope":11303,"src":"9792:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11277,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:41"},"returnParameters":{"id":11282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11281,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11303,"src":"9830:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":11280,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:41","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:41"},"scope":12565,"src":"9773:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11330,"nodeType":"Block","src":"10348:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11311,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10362:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11313,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":11312,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":11316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:41","memberName":"max","nodeType":"MemberAccess","src":"10370:17:41","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11324,"nodeType":"IfStatement","src":"10358:105:41","trueBody":{"id":11323,"nodeType":"Block","src":"10389:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":11319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:41","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":11320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10446:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11318,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"10410:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11322,"nodeType":"RevertStatement","src":"10403:49:41"}]}},{"expression":{"arguments":[{"id":11327,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10487:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11326,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11325,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:41","typeDescriptions":{}}},"id":11328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":11310,"id":11329,"nodeType":"Return","src":"10472:21:41"}]},"documentation":{"id":11304,"nodeType":"StructuredDocumentation","src":"9997:280:41","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":11331,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:41","nodeType":"FunctionDefinition","parameters":{"id":11307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11306,"mutability":"mutable","name":"value","nameLocation":"10309:5:41","nodeType":"VariableDeclaration","scope":11331,"src":"10301:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11305,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:41"},"returnParameters":{"id":11310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11309,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11331,"src":"10339:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":11308,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:41","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:41"},"scope":12565,"src":"10282:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11358,"nodeType":"Block","src":"10857:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11339,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10871:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11341,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":11340,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":11344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:41","memberName":"max","nodeType":"MemberAccess","src":"10879:17:41","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11352,"nodeType":"IfStatement","src":"10867:105:41","trueBody":{"id":11351,"nodeType":"Block","src":"10898:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":11347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:41","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":11348,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10955:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11346,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"10919:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11350,"nodeType":"RevertStatement","src":"10912:49:41"}]}},{"expression":{"arguments":[{"id":11355,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11353,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:41","typeDescriptions":{}}},"id":11356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":11338,"id":11357,"nodeType":"Return","src":"10981:21:41"}]},"documentation":{"id":11332,"nodeType":"StructuredDocumentation","src":"10506:280:41","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":11359,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:41","nodeType":"FunctionDefinition","parameters":{"id":11335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11334,"mutability":"mutable","name":"value","nameLocation":"10818:5:41","nodeType":"VariableDeclaration","scope":11359,"src":"10810:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11333,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:41"},"returnParameters":{"id":11338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11337,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11359,"src":"10848:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":11336,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:41","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:41"},"scope":12565,"src":"10791:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11386,"nodeType":"Block","src":"11360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11367,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11370,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":11369,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":11368,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":11372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:41","memberName":"max","nodeType":"MemberAccess","src":"11382:16:41","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11380,"nodeType":"IfStatement","src":"11370:103:41","trueBody":{"id":11379,"nodeType":"Block","src":"11400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":11375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":11376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11374,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"11421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11378,"nodeType":"RevertStatement","src":"11414:48:41"}]}},{"expression":{"arguments":[{"id":11383,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":11381,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:41","typeDescriptions":{}}},"id":11384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":11366,"id":11385,"nodeType":"Return","src":"11482:20:41"}]},"documentation":{"id":11360,"nodeType":"StructuredDocumentation","src":"11015:276:41","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":11387,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11362,"mutability":"mutable","name":"value","nameLocation":"11322:5:41","nodeType":"VariableDeclaration","scope":11387,"src":"11314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11361,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:41"},"returnParameters":{"id":11366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11387,"src":"11352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":11364,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:41","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:41"},"scope":12565,"src":"11296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11414,"nodeType":"Block","src":"11860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11395,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":11397,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":11396,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":11400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:41","memberName":"max","nodeType":"MemberAccess","src":"11882:16:41","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11408,"nodeType":"IfStatement","src":"11870:103:41","trueBody":{"id":11407,"nodeType":"Block","src":"11900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":11403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":11404,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11402,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"11921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11406,"nodeType":"RevertStatement","src":"11914:48:41"}]}},{"expression":{"arguments":[{"id":11411,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":11409,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:41","typeDescriptions":{}}},"id":11412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":11394,"id":11413,"nodeType":"Return","src":"11982:20:41"}]},"documentation":{"id":11388,"nodeType":"StructuredDocumentation","src":"11515:276:41","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":11415,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11390,"mutability":"mutable","name":"value","nameLocation":"11822:5:41","nodeType":"VariableDeclaration","scope":11415,"src":"11814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11389,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:41"},"returnParameters":{"id":11394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11415,"src":"11852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":11392,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:41","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:41"},"scope":12565,"src":"11796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11442,"nodeType":"Block","src":"12360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11426,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":11425,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":11424,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":11428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:41","memberName":"max","nodeType":"MemberAccess","src":"12382:16:41","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11436,"nodeType":"IfStatement","src":"12370:103:41","trueBody":{"id":11435,"nodeType":"Block","src":"12400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":11431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":11432,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11430,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"12421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11434,"nodeType":"RevertStatement","src":"12414:48:41"}]}},{"expression":{"arguments":[{"id":11439,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":11437,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:41","typeDescriptions":{}}},"id":11440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":11422,"id":11441,"nodeType":"Return","src":"12482:20:41"}]},"documentation":{"id":11416,"nodeType":"StructuredDocumentation","src":"12015:276:41","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":11443,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11418,"mutability":"mutable","name":"value","nameLocation":"12322:5:41","nodeType":"VariableDeclaration","scope":11443,"src":"12314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11417,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:41"},"returnParameters":{"id":11422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11421,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11443,"src":"12352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":11420,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:41","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:41"},"scope":12565,"src":"12296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11470,"nodeType":"Block","src":"12860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11451,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":11453,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":11452,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":11456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:41","memberName":"max","nodeType":"MemberAccess","src":"12882:16:41","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11464,"nodeType":"IfStatement","src":"12870:103:41","trueBody":{"id":11463,"nodeType":"Block","src":"12900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":11459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":11460,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11458,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"12921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11462,"nodeType":"RevertStatement","src":"12914:48:41"}]}},{"expression":{"arguments":[{"id":11467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":11465,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:41","typeDescriptions":{}}},"id":11468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":11450,"id":11469,"nodeType":"Return","src":"12982:20:41"}]},"documentation":{"id":11444,"nodeType":"StructuredDocumentation","src":"12515:276:41","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":11471,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11446,"mutability":"mutable","name":"value","nameLocation":"12822:5:41","nodeType":"VariableDeclaration","scope":11471,"src":"12814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11445,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:41"},"returnParameters":{"id":11450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11471,"src":"12852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":11448,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:41","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:41"},"scope":12565,"src":"12796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11498,"nodeType":"Block","src":"13360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11479,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":11481,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":11480,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":11484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:41","memberName":"max","nodeType":"MemberAccess","src":"13382:16:41","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11492,"nodeType":"IfStatement","src":"13370:103:41","trueBody":{"id":11491,"nodeType":"Block","src":"13400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":11487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":11488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11486,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"13421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11490,"nodeType":"RevertStatement","src":"13414:48:41"}]}},{"expression":{"arguments":[{"id":11495,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":11493,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:41","typeDescriptions":{}}},"id":11496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":11478,"id":11497,"nodeType":"Return","src":"13482:20:41"}]},"documentation":{"id":11472,"nodeType":"StructuredDocumentation","src":"13015:276:41","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":11499,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11474,"mutability":"mutable","name":"value","nameLocation":"13322:5:41","nodeType":"VariableDeclaration","scope":11499,"src":"13314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11473,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:41"},"returnParameters":{"id":11478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11499,"src":"13352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11476,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:41","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:41"},"scope":12565,"src":"13296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11526,"nodeType":"Block","src":"13860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11507,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":11509,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":11508,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":11512,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:41","memberName":"max","nodeType":"MemberAccess","src":"13882:16:41","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11520,"nodeType":"IfStatement","src":"13870:103:41","trueBody":{"id":11519,"nodeType":"Block","src":"13900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":11515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":11516,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11514,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"13921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11518,"nodeType":"RevertStatement","src":"13914:48:41"}]}},{"expression":{"arguments":[{"id":11523,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":11521,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:41","typeDescriptions":{}}},"id":11524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":11506,"id":11525,"nodeType":"Return","src":"13982:20:41"}]},"documentation":{"id":11500,"nodeType":"StructuredDocumentation","src":"13515:276:41","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":11527,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11502,"mutability":"mutable","name":"value","nameLocation":"13822:5:41","nodeType":"VariableDeclaration","scope":11527,"src":"13814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11501,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:41"},"returnParameters":{"id":11506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11527,"src":"13852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":11504,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:41","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:41"},"scope":12565,"src":"13796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11554,"nodeType":"Block","src":"14360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11535,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":11537,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":11536,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":11540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:41","memberName":"max","nodeType":"MemberAccess","src":"14382:16:41","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11548,"nodeType":"IfStatement","src":"14370:103:41","trueBody":{"id":11547,"nodeType":"Block","src":"14400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":11543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":11544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11542,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"14421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11546,"nodeType":"RevertStatement","src":"14414:48:41"}]}},{"expression":{"arguments":[{"id":11551,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":11549,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:41","typeDescriptions":{}}},"id":11552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":11534,"id":11553,"nodeType":"Return","src":"14482:20:41"}]},"documentation":{"id":11528,"nodeType":"StructuredDocumentation","src":"14015:276:41","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":11555,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11530,"mutability":"mutable","name":"value","nameLocation":"14322:5:41","nodeType":"VariableDeclaration","scope":11555,"src":"14314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11529,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:41"},"returnParameters":{"id":11534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11533,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11555,"src":"14352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11532,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:41","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:41"},"scope":12565,"src":"14296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11582,"nodeType":"Block","src":"14860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11563,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11566,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":11565,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":11564,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":11568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:41","memberName":"max","nodeType":"MemberAccess","src":"14882:16:41","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11576,"nodeType":"IfStatement","src":"14870:103:41","trueBody":{"id":11575,"nodeType":"Block","src":"14900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":11571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":11572,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11570,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"14921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11574,"nodeType":"RevertStatement","src":"14914:48:41"}]}},{"expression":{"arguments":[{"id":11579,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":11577,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:41","typeDescriptions":{}}},"id":11580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":11562,"id":11581,"nodeType":"Return","src":"14982:20:41"}]},"documentation":{"id":11556,"nodeType":"StructuredDocumentation","src":"14515:276:41","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":11583,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11558,"mutability":"mutable","name":"value","nameLocation":"14822:5:41","nodeType":"VariableDeclaration","scope":11583,"src":"14814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11557,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:41"},"returnParameters":{"id":11562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11583,"src":"14852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":11560,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:41","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:41"},"scope":12565,"src":"14796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11610,"nodeType":"Block","src":"15360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11591,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11593,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":11592,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":11596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:41","memberName":"max","nodeType":"MemberAccess","src":"15382:16:41","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11604,"nodeType":"IfStatement","src":"15370:103:41","trueBody":{"id":11603,"nodeType":"Block","src":"15400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":11599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":11600,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11598,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"15421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11602,"nodeType":"RevertStatement","src":"15414:48:41"}]}},{"expression":{"arguments":[{"id":11607,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11606,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11605,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:41","typeDescriptions":{}}},"id":11608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11590,"id":11609,"nodeType":"Return","src":"15482:20:41"}]},"documentation":{"id":11584,"nodeType":"StructuredDocumentation","src":"15015:276:41","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":11611,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11586,"mutability":"mutable","name":"value","nameLocation":"15322:5:41","nodeType":"VariableDeclaration","scope":11611,"src":"15314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11585,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:41"},"returnParameters":{"id":11590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11611,"src":"15352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11588,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:41","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:41"},"scope":12565,"src":"15296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11638,"nodeType":"Block","src":"15860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11619,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":11621,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":11620,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":11624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:41","memberName":"max","nodeType":"MemberAccess","src":"15882:16:41","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11632,"nodeType":"IfStatement","src":"15870:103:41","trueBody":{"id":11631,"nodeType":"Block","src":"15900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":11627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":11628,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11626,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"15921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11630,"nodeType":"RevertStatement","src":"15914:48:41"}]}},{"expression":{"arguments":[{"id":11635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11634,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":11633,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:41","typeDescriptions":{}}},"id":11636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":11618,"id":11637,"nodeType":"Return","src":"15982:20:41"}]},"documentation":{"id":11612,"nodeType":"StructuredDocumentation","src":"15515:276:41","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":11639,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11614,"mutability":"mutable","name":"value","nameLocation":"15822:5:41","nodeType":"VariableDeclaration","scope":11639,"src":"15814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11613,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:41"},"returnParameters":{"id":11618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11617,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11639,"src":"15852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":11616,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:41","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:41"},"scope":12565,"src":"15796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11666,"nodeType":"Block","src":"16360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11647,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":11649,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":11648,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":11652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:41","memberName":"max","nodeType":"MemberAccess","src":"16382:16:41","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11660,"nodeType":"IfStatement","src":"16370:103:41","trueBody":{"id":11659,"nodeType":"Block","src":"16400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":11655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":11656,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11654,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"16421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11658,"nodeType":"RevertStatement","src":"16414:48:41"}]}},{"expression":{"arguments":[{"id":11663,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":11661,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:41","typeDescriptions":{}}},"id":11664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":11646,"id":11665,"nodeType":"Return","src":"16482:20:41"}]},"documentation":{"id":11640,"nodeType":"StructuredDocumentation","src":"16015:276:41","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":11667,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11642,"mutability":"mutable","name":"value","nameLocation":"16322:5:41","nodeType":"VariableDeclaration","scope":11667,"src":"16314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11641,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:41"},"returnParameters":{"id":11646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11667,"src":"16352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":11644,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:41","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:41"},"scope":12565,"src":"16296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11694,"nodeType":"Block","src":"16854:146:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11675,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16868:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11677,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":11676,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11679,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":11680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:41","memberName":"max","nodeType":"MemberAccess","src":"16876:15:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11688,"nodeType":"IfStatement","src":"16864:101:41","trueBody":{"id":11687,"nodeType":"Block","src":"16893:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":11683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:41","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":11684,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16948:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11682,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"16914:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11686,"nodeType":"RevertStatement","src":"16907:47:41"}]}},{"expression":{"arguments":[{"id":11691,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16987:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11689,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:41","typeDescriptions":{}}},"id":11692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":11674,"id":11693,"nodeType":"Return","src":"16974:19:41"}]},"documentation":{"id":11668,"nodeType":"StructuredDocumentation","src":"16515:272:41","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":11695,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:41","nodeType":"FunctionDefinition","parameters":{"id":11671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11670,"mutability":"mutable","name":"value","nameLocation":"16817:5:41","nodeType":"VariableDeclaration","scope":11695,"src":"16809:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11669,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:41"},"returnParameters":{"id":11674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11673,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11695,"src":"16847:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11672,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:41"},"scope":12565,"src":"16792:208:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11717,"nodeType":"Block","src":"17236:128:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11703,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17250:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":11704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:41","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11711,"nodeType":"IfStatement","src":"17246:81:41","trueBody":{"id":11710,"nodeType":"Block","src":"17261:66:41","statements":[{"errorCall":{"arguments":[{"id":11707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17310:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11706,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10815,"src":"17282:27:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$__$","typeString":"function (int256) pure"}},"id":11708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11709,"nodeType":"RevertStatement","src":"17275:41:41"}]}},{"expression":{"arguments":[{"id":11714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17351:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11712,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:41","typeDescriptions":{}}},"id":11715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11702,"id":11716,"nodeType":"Return","src":"17336:21:41"}]},"documentation":{"id":11696,"nodeType":"StructuredDocumentation","src":"17006:160:41","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":11718,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:41","nodeType":"FunctionDefinition","parameters":{"id":11699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11698,"mutability":"mutable","name":"value","nameLocation":"17197:5:41","nodeType":"VariableDeclaration","scope":11718,"src":"17190:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11697,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:41"},"returnParameters":{"id":11702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11701,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11718,"src":"17227:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11700,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:41"},"scope":12565,"src":"17171:193:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11743,"nodeType":"Block","src":"17761:150:41","statements":[{"expression":{"id":11731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11726,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11724,"src":"17771:10:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11729,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17791:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":11727,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:41","typeDescriptions":{}}},"id":11730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":11732,"nodeType":"ExpressionStatement","src":"17771:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11733,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11724,"src":"17811:10:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11734,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17825:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11742,"nodeType":"IfStatement","src":"17807:98:41","trueBody":{"id":11741,"nodeType":"Block","src":"17832:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":11737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:41","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":11738,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17888:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11736,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"17853:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11740,"nodeType":"RevertStatement","src":"17846:48:41"}]}}]},"documentation":{"id":11719,"nodeType":"StructuredDocumentation","src":"17370:312:41","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":11744,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:41","nodeType":"FunctionDefinition","parameters":{"id":11722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11721,"mutability":"mutable","name":"value","nameLocation":"17712:5:41","nodeType":"VariableDeclaration","scope":11744,"src":"17705:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11720,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:41"},"returnParameters":{"id":11725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11724,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:41","nodeType":"VariableDeclaration","scope":11744,"src":"17742:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":11723,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:41"},"scope":12565,"src":"17687:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11769,"nodeType":"Block","src":"18308:150:41","statements":[{"expression":{"id":11757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11752,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11750,"src":"18318:10:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11755,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18338:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11754,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":11753,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:41","typeDescriptions":{}}},"id":11756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":11758,"nodeType":"ExpressionStatement","src":"18318:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11759,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11750,"src":"18358:10:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11760,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18372:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11768,"nodeType":"IfStatement","src":"18354:98:41","trueBody":{"id":11767,"nodeType":"Block","src":"18379:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":11763,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:41","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":11764,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18435:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11762,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"18400:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11766,"nodeType":"RevertStatement","src":"18393:48:41"}]}}]},"documentation":{"id":11745,"nodeType":"StructuredDocumentation","src":"17917:312:41","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":11770,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:41","nodeType":"FunctionDefinition","parameters":{"id":11748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11747,"mutability":"mutable","name":"value","nameLocation":"18259:5:41","nodeType":"VariableDeclaration","scope":11770,"src":"18252:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11746,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:41"},"returnParameters":{"id":11751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11750,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:41","nodeType":"VariableDeclaration","scope":11770,"src":"18289:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":11749,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:41"},"scope":12565,"src":"18234:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11795,"nodeType":"Block","src":"18855:150:41","statements":[{"expression":{"id":11783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11778,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18865:10:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11781,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18885:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":11779,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:41","typeDescriptions":{}}},"id":11782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":11784,"nodeType":"ExpressionStatement","src":"18865:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11785,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18905:10:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11786,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18919:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11794,"nodeType":"IfStatement","src":"18901:98:41","trueBody":{"id":11793,"nodeType":"Block","src":"18926:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":11789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:41","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":11790,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18982:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11788,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"18947:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11792,"nodeType":"RevertStatement","src":"18940:48:41"}]}}]},"documentation":{"id":11771,"nodeType":"StructuredDocumentation","src":"18464:312:41","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":11796,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:41","nodeType":"FunctionDefinition","parameters":{"id":11774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11773,"mutability":"mutable","name":"value","nameLocation":"18806:5:41","nodeType":"VariableDeclaration","scope":11796,"src":"18799:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11772,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:41"},"returnParameters":{"id":11777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11776,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:41","nodeType":"VariableDeclaration","scope":11796,"src":"18836:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":11775,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:41"},"scope":12565,"src":"18781:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11821,"nodeType":"Block","src":"19402:150:41","statements":[{"expression":{"id":11809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11804,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11802,"src":"19412:10:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11807,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19432:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":11805,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:41","typeDescriptions":{}}},"id":11808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":11810,"nodeType":"ExpressionStatement","src":"19412:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11811,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11802,"src":"19452:10:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11812,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19466:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11820,"nodeType":"IfStatement","src":"19448:98:41","trueBody":{"id":11819,"nodeType":"Block","src":"19473:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":11815,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:41","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":11816,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19529:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11814,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"19494:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11818,"nodeType":"RevertStatement","src":"19487:48:41"}]}}]},"documentation":{"id":11797,"nodeType":"StructuredDocumentation","src":"19011:312:41","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":11822,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:41","nodeType":"FunctionDefinition","parameters":{"id":11800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11799,"mutability":"mutable","name":"value","nameLocation":"19353:5:41","nodeType":"VariableDeclaration","scope":11822,"src":"19346:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11798,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:41"},"returnParameters":{"id":11803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11802,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:41","nodeType":"VariableDeclaration","scope":11822,"src":"19383:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":11801,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:41"},"scope":12565,"src":"19328:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11847,"nodeType":"Block","src":"19949:150:41","statements":[{"expression":{"id":11835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11830,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11828,"src":"19959:10:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11833,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"19979:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":11831,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:41","typeDescriptions":{}}},"id":11834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":11836,"nodeType":"ExpressionStatement","src":"19959:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11837,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11828,"src":"19999:10:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"20013:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11846,"nodeType":"IfStatement","src":"19995:98:41","trueBody":{"id":11845,"nodeType":"Block","src":"20020:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":11841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:41","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":11842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"20076:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11840,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"20041:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11844,"nodeType":"RevertStatement","src":"20034:48:41"}]}}]},"documentation":{"id":11823,"nodeType":"StructuredDocumentation","src":"19558:312:41","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":11848,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:41","nodeType":"FunctionDefinition","parameters":{"id":11826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11825,"mutability":"mutable","name":"value","nameLocation":"19900:5:41","nodeType":"VariableDeclaration","scope":11848,"src":"19893:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11824,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:41"},"returnParameters":{"id":11829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11828,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:41","nodeType":"VariableDeclaration","scope":11848,"src":"19930:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":11827,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:41"},"scope":12565,"src":"19875:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11873,"nodeType":"Block","src":"20496:150:41","statements":[{"expression":{"id":11861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11856,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"20506:10:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11859,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20526:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":11857,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:41","typeDescriptions":{}}},"id":11860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":11862,"nodeType":"ExpressionStatement","src":"20506:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11863,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"20546:10:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11864,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20560:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11872,"nodeType":"IfStatement","src":"20542:98:41","trueBody":{"id":11871,"nodeType":"Block","src":"20567:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":11867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:41","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":11868,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20623:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11866,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"20588:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11870,"nodeType":"RevertStatement","src":"20581:48:41"}]}}]},"documentation":{"id":11849,"nodeType":"StructuredDocumentation","src":"20105:312:41","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":11874,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:41","nodeType":"FunctionDefinition","parameters":{"id":11852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11851,"mutability":"mutable","name":"value","nameLocation":"20447:5:41","nodeType":"VariableDeclaration","scope":11874,"src":"20440:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11850,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:41"},"returnParameters":{"id":11855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11854,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:41","nodeType":"VariableDeclaration","scope":11874,"src":"20477:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":11853,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:41"},"scope":12565,"src":"20422:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11899,"nodeType":"Block","src":"21043:150:41","statements":[{"expression":{"id":11887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11882,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11880,"src":"21053:10:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21073:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":11883,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:41","typeDescriptions":{}}},"id":11886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":11888,"nodeType":"ExpressionStatement","src":"21053:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11889,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11880,"src":"21093:10:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11890,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21107:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11898,"nodeType":"IfStatement","src":"21089:98:41","trueBody":{"id":11897,"nodeType":"Block","src":"21114:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":11893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:41","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":11894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21170:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11892,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"21135:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11896,"nodeType":"RevertStatement","src":"21128:48:41"}]}}]},"documentation":{"id":11875,"nodeType":"StructuredDocumentation","src":"20652:312:41","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":11900,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:41","nodeType":"FunctionDefinition","parameters":{"id":11878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11877,"mutability":"mutable","name":"value","nameLocation":"20994:5:41","nodeType":"VariableDeclaration","scope":11900,"src":"20987:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11876,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:41"},"returnParameters":{"id":11881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11880,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:41","nodeType":"VariableDeclaration","scope":11900,"src":"21024:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":11879,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:41"},"scope":12565,"src":"20969:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11925,"nodeType":"Block","src":"21590:150:41","statements":[{"expression":{"id":11913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11908,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"21600:10:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11911,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21620:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":11909,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:41","typeDescriptions":{}}},"id":11912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":11914,"nodeType":"ExpressionStatement","src":"21600:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11915,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"21640:10:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11916,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21654:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11924,"nodeType":"IfStatement","src":"21636:98:41","trueBody":{"id":11923,"nodeType":"Block","src":"21661:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":11919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:41","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":11920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21717:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11918,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"21682:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11922,"nodeType":"RevertStatement","src":"21675:48:41"}]}}]},"documentation":{"id":11901,"nodeType":"StructuredDocumentation","src":"21199:312:41","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":11926,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:41","nodeType":"FunctionDefinition","parameters":{"id":11904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11903,"mutability":"mutable","name":"value","nameLocation":"21541:5:41","nodeType":"VariableDeclaration","scope":11926,"src":"21534:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11902,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:41"},"returnParameters":{"id":11907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11906,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:41","nodeType":"VariableDeclaration","scope":11926,"src":"21571:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":11905,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:41"},"scope":12565,"src":"21516:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11951,"nodeType":"Block","src":"22137:150:41","statements":[{"expression":{"id":11939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11934,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11932,"src":"22147:10:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22167:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":11935,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:41","typeDescriptions":{}}},"id":11938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":11940,"nodeType":"ExpressionStatement","src":"22147:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11941,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11932,"src":"22187:10:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22201:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11950,"nodeType":"IfStatement","src":"22183:98:41","trueBody":{"id":11949,"nodeType":"Block","src":"22208:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":11945,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:41","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":11946,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22264:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11944,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"22229:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11948,"nodeType":"RevertStatement","src":"22222:48:41"}]}}]},"documentation":{"id":11927,"nodeType":"StructuredDocumentation","src":"21746:312:41","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":11952,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:41","nodeType":"FunctionDefinition","parameters":{"id":11930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11929,"mutability":"mutable","name":"value","nameLocation":"22088:5:41","nodeType":"VariableDeclaration","scope":11952,"src":"22081:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11928,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:41"},"returnParameters":{"id":11933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11932,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:41","nodeType":"VariableDeclaration","scope":11952,"src":"22118:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":11931,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:41"},"scope":12565,"src":"22063:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11977,"nodeType":"Block","src":"22684:150:41","statements":[{"expression":{"id":11965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11960,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"22694:10:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11963,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22714:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":11961,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:41","typeDescriptions":{}}},"id":11964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":11966,"nodeType":"ExpressionStatement","src":"22694:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11967,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"22734:10:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11968,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22748:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11976,"nodeType":"IfStatement","src":"22730:98:41","trueBody":{"id":11975,"nodeType":"Block","src":"22755:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":11971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:41","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":11972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22811:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11970,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"22776:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11974,"nodeType":"RevertStatement","src":"22769:48:41"}]}}]},"documentation":{"id":11953,"nodeType":"StructuredDocumentation","src":"22293:312:41","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":11978,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:41","nodeType":"FunctionDefinition","parameters":{"id":11956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11955,"mutability":"mutable","name":"value","nameLocation":"22635:5:41","nodeType":"VariableDeclaration","scope":11978,"src":"22628:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11954,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:41"},"returnParameters":{"id":11959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11958,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:41","nodeType":"VariableDeclaration","scope":11978,"src":"22665:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":11957,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:41"},"scope":12565,"src":"22610:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12003,"nodeType":"Block","src":"23231:150:41","statements":[{"expression":{"id":11991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11986,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11984,"src":"23241:10:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11989,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23261:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":11987,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:41","typeDescriptions":{}}},"id":11990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":11992,"nodeType":"ExpressionStatement","src":"23241:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11993,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11984,"src":"23281:10:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23295:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12002,"nodeType":"IfStatement","src":"23277:98:41","trueBody":{"id":12001,"nodeType":"Block","src":"23302:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":11997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:41","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":11998,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23358:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11996,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"23323:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12000,"nodeType":"RevertStatement","src":"23316:48:41"}]}}]},"documentation":{"id":11979,"nodeType":"StructuredDocumentation","src":"22840:312:41","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":12004,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:41","nodeType":"FunctionDefinition","parameters":{"id":11982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11981,"mutability":"mutable","name":"value","nameLocation":"23182:5:41","nodeType":"VariableDeclaration","scope":12004,"src":"23175:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11980,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:41"},"returnParameters":{"id":11985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11984,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:41","nodeType":"VariableDeclaration","scope":12004,"src":"23212:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":11983,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:41"},"scope":12565,"src":"23157:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12029,"nodeType":"Block","src":"23778:150:41","statements":[{"expression":{"id":12017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12012,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12010,"src":"23788:10:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23808:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":12013,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:41","typeDescriptions":{}}},"id":12016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":12018,"nodeType":"ExpressionStatement","src":"23788:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12019,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12010,"src":"23828:10:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12020,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23842:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12028,"nodeType":"IfStatement","src":"23824:98:41","trueBody":{"id":12027,"nodeType":"Block","src":"23849:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":12023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:41","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":12024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23905:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12022,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"23870:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12026,"nodeType":"RevertStatement","src":"23863:48:41"}]}}]},"documentation":{"id":12005,"nodeType":"StructuredDocumentation","src":"23387:312:41","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":12030,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:41","nodeType":"FunctionDefinition","parameters":{"id":12008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12007,"mutability":"mutable","name":"value","nameLocation":"23729:5:41","nodeType":"VariableDeclaration","scope":12030,"src":"23722:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12006,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:41"},"returnParameters":{"id":12011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12010,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:41","nodeType":"VariableDeclaration","scope":12030,"src":"23759:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":12009,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:41"},"scope":12565,"src":"23704:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12055,"nodeType":"Block","src":"24325:150:41","statements":[{"expression":{"id":12043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12038,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12036,"src":"24335:10:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12041,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24355:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":12039,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:41","typeDescriptions":{}}},"id":12042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":12044,"nodeType":"ExpressionStatement","src":"24335:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12045,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12036,"src":"24375:10:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12046,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24389:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12054,"nodeType":"IfStatement","src":"24371:98:41","trueBody":{"id":12053,"nodeType":"Block","src":"24396:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":12049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:41","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":12050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24452:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12048,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"24417:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12052,"nodeType":"RevertStatement","src":"24410:48:41"}]}}]},"documentation":{"id":12031,"nodeType":"StructuredDocumentation","src":"23934:312:41","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":12056,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:41","nodeType":"FunctionDefinition","parameters":{"id":12034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12033,"mutability":"mutable","name":"value","nameLocation":"24276:5:41","nodeType":"VariableDeclaration","scope":12056,"src":"24269:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12032,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:41"},"returnParameters":{"id":12037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12036,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:41","nodeType":"VariableDeclaration","scope":12056,"src":"24306:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":12035,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:41"},"scope":12565,"src":"24251:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12081,"nodeType":"Block","src":"24872:150:41","statements":[{"expression":{"id":12069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12064,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12062,"src":"24882:10:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12067,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24902:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":12065,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:41","typeDescriptions":{}}},"id":12068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":12070,"nodeType":"ExpressionStatement","src":"24882:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12071,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12062,"src":"24922:10:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24936:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12080,"nodeType":"IfStatement","src":"24918:98:41","trueBody":{"id":12079,"nodeType":"Block","src":"24943:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":12075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:41","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":12076,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24999:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12074,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"24964:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12078,"nodeType":"RevertStatement","src":"24957:48:41"}]}}]},"documentation":{"id":12057,"nodeType":"StructuredDocumentation","src":"24481:312:41","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":12082,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:41","nodeType":"FunctionDefinition","parameters":{"id":12060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12059,"mutability":"mutable","name":"value","nameLocation":"24823:5:41","nodeType":"VariableDeclaration","scope":12082,"src":"24816:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12058,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:41"},"returnParameters":{"id":12063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12062,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:41","nodeType":"VariableDeclaration","scope":12082,"src":"24853:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":12061,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:41"},"scope":12565,"src":"24798:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12107,"nodeType":"Block","src":"25419:150:41","statements":[{"expression":{"id":12095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12090,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12088,"src":"25429:10:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12093,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25449:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":12091,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:41","typeDescriptions":{}}},"id":12094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":12096,"nodeType":"ExpressionStatement","src":"25429:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12097,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12088,"src":"25469:10:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12098,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25483:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12106,"nodeType":"IfStatement","src":"25465:98:41","trueBody":{"id":12105,"nodeType":"Block","src":"25490:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":12101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:41","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":12102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25546:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12100,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"25511:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12104,"nodeType":"RevertStatement","src":"25504:48:41"}]}}]},"documentation":{"id":12083,"nodeType":"StructuredDocumentation","src":"25028:312:41","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":12108,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:41","nodeType":"FunctionDefinition","parameters":{"id":12086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12085,"mutability":"mutable","name":"value","nameLocation":"25370:5:41","nodeType":"VariableDeclaration","scope":12108,"src":"25363:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12084,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:41"},"returnParameters":{"id":12089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12088,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:41","nodeType":"VariableDeclaration","scope":12108,"src":"25400:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":12087,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:41"},"scope":12565,"src":"25345:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12133,"nodeType":"Block","src":"25966:150:41","statements":[{"expression":{"id":12121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12116,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12114,"src":"25976:10:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12119,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"25996:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":12117,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:41","typeDescriptions":{}}},"id":12120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":12122,"nodeType":"ExpressionStatement","src":"25976:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12123,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12114,"src":"26016:10:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12124,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"26030:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12132,"nodeType":"IfStatement","src":"26012:98:41","trueBody":{"id":12131,"nodeType":"Block","src":"26037:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":12127,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:41","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":12128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"26093:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12126,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"26058:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12130,"nodeType":"RevertStatement","src":"26051:48:41"}]}}]},"documentation":{"id":12109,"nodeType":"StructuredDocumentation","src":"25575:312:41","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":12134,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:41","nodeType":"FunctionDefinition","parameters":{"id":12112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12111,"mutability":"mutable","name":"value","nameLocation":"25917:5:41","nodeType":"VariableDeclaration","scope":12134,"src":"25910:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12110,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:41"},"returnParameters":{"id":12115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12114,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:41","nodeType":"VariableDeclaration","scope":12134,"src":"25947:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":12113,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:41"},"scope":12565,"src":"25892:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12159,"nodeType":"Block","src":"26513:150:41","statements":[{"expression":{"id":12147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12142,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12140,"src":"26523:10:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26543:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12144,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":12143,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:41","typeDescriptions":{}}},"id":12146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":12148,"nodeType":"ExpressionStatement","src":"26523:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12149,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12140,"src":"26563:10:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12150,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26577:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12158,"nodeType":"IfStatement","src":"26559:98:41","trueBody":{"id":12157,"nodeType":"Block","src":"26584:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":12153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:41","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":12154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26640:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12152,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"26605:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12156,"nodeType":"RevertStatement","src":"26598:48:41"}]}}]},"documentation":{"id":12135,"nodeType":"StructuredDocumentation","src":"26122:312:41","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":12160,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:41","nodeType":"FunctionDefinition","parameters":{"id":12138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12137,"mutability":"mutable","name":"value","nameLocation":"26464:5:41","nodeType":"VariableDeclaration","scope":12160,"src":"26457:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12136,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:41"},"returnParameters":{"id":12141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12140,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:41","nodeType":"VariableDeclaration","scope":12160,"src":"26494:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":12139,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:41"},"scope":12565,"src":"26439:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12185,"nodeType":"Block","src":"27060:150:41","statements":[{"expression":{"id":12173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12168,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12166,"src":"27070:10:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27090:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12170,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":12169,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:41","typeDescriptions":{}}},"id":12172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":12174,"nodeType":"ExpressionStatement","src":"27070:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12175,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12166,"src":"27110:10:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12176,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27124:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12184,"nodeType":"IfStatement","src":"27106:98:41","trueBody":{"id":12183,"nodeType":"Block","src":"27131:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":12179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:41","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":12180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27187:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12178,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"27152:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12182,"nodeType":"RevertStatement","src":"27145:48:41"}]}}]},"documentation":{"id":12161,"nodeType":"StructuredDocumentation","src":"26669:312:41","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":12186,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:41","nodeType":"FunctionDefinition","parameters":{"id":12164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12163,"mutability":"mutable","name":"value","nameLocation":"27011:5:41","nodeType":"VariableDeclaration","scope":12186,"src":"27004:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12162,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:41"},"returnParameters":{"id":12167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12166,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:41","nodeType":"VariableDeclaration","scope":12186,"src":"27041:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":12165,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:41"},"scope":12565,"src":"26986:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12211,"nodeType":"Block","src":"27607:150:41","statements":[{"expression":{"id":12199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12194,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12192,"src":"27617:10:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12197,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27637:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":12195,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:41","typeDescriptions":{}}},"id":12198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":12200,"nodeType":"ExpressionStatement","src":"27617:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12201,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12192,"src":"27657:10:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12202,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27671:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12210,"nodeType":"IfStatement","src":"27653:98:41","trueBody":{"id":12209,"nodeType":"Block","src":"27678:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":12205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:41","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":12206,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27734:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12204,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"27699:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12208,"nodeType":"RevertStatement","src":"27692:48:41"}]}}]},"documentation":{"id":12187,"nodeType":"StructuredDocumentation","src":"27216:312:41","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":12212,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:41","nodeType":"FunctionDefinition","parameters":{"id":12190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12189,"mutability":"mutable","name":"value","nameLocation":"27558:5:41","nodeType":"VariableDeclaration","scope":12212,"src":"27551:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12188,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:41"},"returnParameters":{"id":12193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12192,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:41","nodeType":"VariableDeclaration","scope":12212,"src":"27588:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":12191,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:41"},"scope":12565,"src":"27533:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12237,"nodeType":"Block","src":"28147:148:41","statements":[{"expression":{"id":12225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12220,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"28157:10:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12223,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28176:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":12221,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:41","typeDescriptions":{}}},"id":12224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":12226,"nodeType":"ExpressionStatement","src":"28157:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12227,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"28196:10:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12228,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28210:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12236,"nodeType":"IfStatement","src":"28192:97:41","trueBody":{"id":12235,"nodeType":"Block","src":"28217:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":12231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:41","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":12232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28272:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12230,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"28238:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12234,"nodeType":"RevertStatement","src":"28231:47:41"}]}}]},"documentation":{"id":12213,"nodeType":"StructuredDocumentation","src":"27763:307:41","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":12238,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:41","nodeType":"FunctionDefinition","parameters":{"id":12216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12215,"mutability":"mutable","name":"value","nameLocation":"28099:5:41","nodeType":"VariableDeclaration","scope":12238,"src":"28092:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12214,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:41"},"returnParameters":{"id":12219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12218,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:41","nodeType":"VariableDeclaration","scope":12238,"src":"28129:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":12217,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:41"},"scope":12565,"src":"28075:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12263,"nodeType":"Block","src":"28685:148:41","statements":[{"expression":{"id":12251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12246,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12244,"src":"28695:10:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12249,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28714:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":12247,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:41","typeDescriptions":{}}},"id":12250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":12252,"nodeType":"ExpressionStatement","src":"28695:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12253,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12244,"src":"28734:10:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12254,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28748:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12262,"nodeType":"IfStatement","src":"28730:97:41","trueBody":{"id":12261,"nodeType":"Block","src":"28755:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":12257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:41","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":12258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28810:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12256,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"28776:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12260,"nodeType":"RevertStatement","src":"28769:47:41"}]}}]},"documentation":{"id":12239,"nodeType":"StructuredDocumentation","src":"28301:307:41","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":12264,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:41","nodeType":"FunctionDefinition","parameters":{"id":12242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12241,"mutability":"mutable","name":"value","nameLocation":"28637:5:41","nodeType":"VariableDeclaration","scope":12264,"src":"28630:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12240,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:41"},"returnParameters":{"id":12245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12244,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:41","nodeType":"VariableDeclaration","scope":12264,"src":"28667:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":12243,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:41"},"scope":12565,"src":"28613:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12289,"nodeType":"Block","src":"29223:148:41","statements":[{"expression":{"id":12277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12272,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12270,"src":"29233:10:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12275,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29252:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":12273,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:41","typeDescriptions":{}}},"id":12276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":12278,"nodeType":"ExpressionStatement","src":"29233:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12279,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12270,"src":"29272:10:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29286:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12288,"nodeType":"IfStatement","src":"29268:97:41","trueBody":{"id":12287,"nodeType":"Block","src":"29293:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":12283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:41","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":12284,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29348:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12282,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"29314:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12286,"nodeType":"RevertStatement","src":"29307:47:41"}]}}]},"documentation":{"id":12265,"nodeType":"StructuredDocumentation","src":"28839:307:41","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":12290,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:41","nodeType":"FunctionDefinition","parameters":{"id":12268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12267,"mutability":"mutable","name":"value","nameLocation":"29175:5:41","nodeType":"VariableDeclaration","scope":12290,"src":"29168:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12266,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:41"},"returnParameters":{"id":12271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12270,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:41","nodeType":"VariableDeclaration","scope":12290,"src":"29205:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":12269,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:41"},"scope":12565,"src":"29151:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12315,"nodeType":"Block","src":"29761:148:41","statements":[{"expression":{"id":12303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12298,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12296,"src":"29771:10:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29790:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":12299,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:41","typeDescriptions":{}}},"id":12302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":12304,"nodeType":"ExpressionStatement","src":"29771:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12305,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12296,"src":"29810:10:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29824:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12314,"nodeType":"IfStatement","src":"29806:97:41","trueBody":{"id":12313,"nodeType":"Block","src":"29831:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":12309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:41","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":12310,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29886:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12308,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"29852:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12312,"nodeType":"RevertStatement","src":"29845:47:41"}]}}]},"documentation":{"id":12291,"nodeType":"StructuredDocumentation","src":"29377:307:41","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":12316,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:41","nodeType":"FunctionDefinition","parameters":{"id":12294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12293,"mutability":"mutable","name":"value","nameLocation":"29713:5:41","nodeType":"VariableDeclaration","scope":12316,"src":"29706:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12292,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:41"},"returnParameters":{"id":12297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12296,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:41","nodeType":"VariableDeclaration","scope":12316,"src":"29743:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":12295,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:41"},"scope":12565,"src":"29689:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12341,"nodeType":"Block","src":"30299:148:41","statements":[{"expression":{"id":12329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12324,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12322,"src":"30309:10:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12327,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30328:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12326,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":12325,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:41","typeDescriptions":{}}},"id":12328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":12330,"nodeType":"ExpressionStatement","src":"30309:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12331,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12322,"src":"30348:10:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12332,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30362:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12340,"nodeType":"IfStatement","src":"30344:97:41","trueBody":{"id":12339,"nodeType":"Block","src":"30369:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":12335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:41","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":12336,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30424:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12334,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"30390:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12338,"nodeType":"RevertStatement","src":"30383:47:41"}]}}]},"documentation":{"id":12317,"nodeType":"StructuredDocumentation","src":"29915:307:41","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":12342,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:41","nodeType":"FunctionDefinition","parameters":{"id":12320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12319,"mutability":"mutable","name":"value","nameLocation":"30251:5:41","nodeType":"VariableDeclaration","scope":12342,"src":"30244:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12318,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:41"},"returnParameters":{"id":12323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12322,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:41","nodeType":"VariableDeclaration","scope":12342,"src":"30281:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":12321,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:41"},"scope":12565,"src":"30227:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12367,"nodeType":"Block","src":"30837:148:41","statements":[{"expression":{"id":12355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12350,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12348,"src":"30847:10:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30866:5:41","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":"30860:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":12351,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:41","typeDescriptions":{}}},"id":12354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":12356,"nodeType":"ExpressionStatement","src":"30847:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12357,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12348,"src":"30886:10:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12358,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30900:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12366,"nodeType":"IfStatement","src":"30882:97:41","trueBody":{"id":12365,"nodeType":"Block","src":"30907:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":12361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:41","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":12362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30962:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12360,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"30928:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12364,"nodeType":"RevertStatement","src":"30921:47:41"}]}}]},"documentation":{"id":12343,"nodeType":"StructuredDocumentation","src":"30453:307:41","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":12368,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:41","nodeType":"FunctionDefinition","parameters":{"id":12346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12345,"mutability":"mutable","name":"value","nameLocation":"30789:5:41","nodeType":"VariableDeclaration","scope":12368,"src":"30782:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12344,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:41"},"returnParameters":{"id":12349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12348,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:41","nodeType":"VariableDeclaration","scope":12368,"src":"30819:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":12347,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:41"},"scope":12565,"src":"30765:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12393,"nodeType":"Block","src":"31375:148:41","statements":[{"expression":{"id":12381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12376,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12374,"src":"31385:10:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12379,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31404:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":12377,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:41","typeDescriptions":{}}},"id":12380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":12382,"nodeType":"ExpressionStatement","src":"31385:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12383,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12374,"src":"31424:10:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12384,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31438:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12392,"nodeType":"IfStatement","src":"31420:97:41","trueBody":{"id":12391,"nodeType":"Block","src":"31445:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":12387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:41","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":12388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31500:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12386,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"31466:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12390,"nodeType":"RevertStatement","src":"31459:47:41"}]}}]},"documentation":{"id":12369,"nodeType":"StructuredDocumentation","src":"30991:307:41","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":12394,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:41","nodeType":"FunctionDefinition","parameters":{"id":12372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12371,"mutability":"mutable","name":"value","nameLocation":"31327:5:41","nodeType":"VariableDeclaration","scope":12394,"src":"31320:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12370,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:41"},"returnParameters":{"id":12375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12374,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:41","nodeType":"VariableDeclaration","scope":12394,"src":"31357:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":12373,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:41"},"scope":12565,"src":"31303:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12419,"nodeType":"Block","src":"31913:148:41","statements":[{"expression":{"id":12407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12402,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"31923:10:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12405,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"31942:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12404,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":12403,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:41","typeDescriptions":{}}},"id":12406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":12408,"nodeType":"ExpressionStatement","src":"31923:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12409,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"31962:10:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12410,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"31976:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12418,"nodeType":"IfStatement","src":"31958:97:41","trueBody":{"id":12417,"nodeType":"Block","src":"31983:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":12413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:41","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":12414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"32038:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12412,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"32004:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12416,"nodeType":"RevertStatement","src":"31997:47:41"}]}}]},"documentation":{"id":12395,"nodeType":"StructuredDocumentation","src":"31529:307:41","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":12420,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:41","nodeType":"FunctionDefinition","parameters":{"id":12398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12397,"mutability":"mutable","name":"value","nameLocation":"31865:5:41","nodeType":"VariableDeclaration","scope":12420,"src":"31858:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12396,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:41"},"returnParameters":{"id":12401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12400,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:41","nodeType":"VariableDeclaration","scope":12420,"src":"31895:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":12399,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:41"},"scope":12565,"src":"31841:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12445,"nodeType":"Block","src":"32451:148:41","statements":[{"expression":{"id":12433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12428,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12426,"src":"32461:10:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12431,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32480:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":12429,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:41","typeDescriptions":{}}},"id":12432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":12434,"nodeType":"ExpressionStatement","src":"32461:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12435,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12426,"src":"32500:10:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12436,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32514:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12444,"nodeType":"IfStatement","src":"32496:97:41","trueBody":{"id":12443,"nodeType":"Block","src":"32521:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":12439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:41","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":12440,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32576:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12438,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"32542:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12442,"nodeType":"RevertStatement","src":"32535:47:41"}]}}]},"documentation":{"id":12421,"nodeType":"StructuredDocumentation","src":"32067:307:41","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":12446,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:41","nodeType":"FunctionDefinition","parameters":{"id":12424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12423,"mutability":"mutable","name":"value","nameLocation":"32403:5:41","nodeType":"VariableDeclaration","scope":12446,"src":"32396:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12422,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:41"},"returnParameters":{"id":12427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12426,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:41","nodeType":"VariableDeclaration","scope":12446,"src":"32433:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":12425,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:41"},"scope":12565,"src":"32379:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12471,"nodeType":"Block","src":"32989:148:41","statements":[{"expression":{"id":12459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12454,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12452,"src":"32999:10:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12457,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33018:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":12455,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:41","typeDescriptions":{}}},"id":12458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":12460,"nodeType":"ExpressionStatement","src":"32999:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12461,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12452,"src":"33038:10:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33052:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12470,"nodeType":"IfStatement","src":"33034:97:41","trueBody":{"id":12469,"nodeType":"Block","src":"33059:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":12465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:41","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":12466,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33114:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12464,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"33080:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12468,"nodeType":"RevertStatement","src":"33073:47:41"}]}}]},"documentation":{"id":12447,"nodeType":"StructuredDocumentation","src":"32605:307:41","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":12472,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:41","nodeType":"FunctionDefinition","parameters":{"id":12450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12449,"mutability":"mutable","name":"value","nameLocation":"32941:5:41","nodeType":"VariableDeclaration","scope":12472,"src":"32934:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12448,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:41"},"returnParameters":{"id":12453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12452,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:41","nodeType":"VariableDeclaration","scope":12472,"src":"32971:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":12451,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:41"},"scope":12565,"src":"32917:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12497,"nodeType":"Block","src":"33527:148:41","statements":[{"expression":{"id":12485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12480,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12478,"src":"33537:10:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33556:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":12481,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:41","typeDescriptions":{}}},"id":12484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":12486,"nodeType":"ExpressionStatement","src":"33537:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12487,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12478,"src":"33576:10:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33590:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12496,"nodeType":"IfStatement","src":"33572:97:41","trueBody":{"id":12495,"nodeType":"Block","src":"33597:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":12491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:41","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":12492,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33652:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12490,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"33618:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12494,"nodeType":"RevertStatement","src":"33611:47:41"}]}}]},"documentation":{"id":12473,"nodeType":"StructuredDocumentation","src":"33143:307:41","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":12498,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:41","nodeType":"FunctionDefinition","parameters":{"id":12476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12475,"mutability":"mutable","name":"value","nameLocation":"33479:5:41","nodeType":"VariableDeclaration","scope":12498,"src":"33472:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12474,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:41"},"returnParameters":{"id":12479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12478,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:41","nodeType":"VariableDeclaration","scope":12498,"src":"33509:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":12477,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:41"},"scope":12565,"src":"33455:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12523,"nodeType":"Block","src":"34058:146:41","statements":[{"expression":{"id":12511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12506,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"34068:10:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34086:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":12507,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:41","typeDescriptions":{}}},"id":12510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":12512,"nodeType":"ExpressionStatement","src":"34068:24:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12513,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"34106:10:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12514,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34120:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12522,"nodeType":"IfStatement","src":"34102:96:41","trueBody":{"id":12521,"nodeType":"Block","src":"34127:71:41","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":12517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:41","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":12518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34181:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12516,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"34148:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12520,"nodeType":"RevertStatement","src":"34141:46:41"}]}}]},"documentation":{"id":12499,"nodeType":"StructuredDocumentation","src":"33681:302:41","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":12524,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:41","nodeType":"FunctionDefinition","parameters":{"id":12502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12501,"mutability":"mutable","name":"value","nameLocation":"34011:5:41","nodeType":"VariableDeclaration","scope":12524,"src":"34004:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12500,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:41"},"returnParameters":{"id":12505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12504,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:41","nodeType":"VariableDeclaration","scope":12524,"src":"34041:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":12503,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:41"},"scope":12565,"src":"33988:216:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12553,"nodeType":"Block","src":"34444:250:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12532,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34557:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":12537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12536,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":12535,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":12539,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:41","memberName":"max","nodeType":"MemberAccess","src":"34573:16:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12533,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:41","typeDescriptions":{}}},"id":12540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12547,"nodeType":"IfStatement","src":"34553:105:41","trueBody":{"id":12546,"nodeType":"Block","src":"34592:66:41","statements":[{"errorCall":{"arguments":[{"id":12543,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34641:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12542,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"34613:27:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":12544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12545,"nodeType":"RevertStatement","src":"34606:41:41"}]}},{"expression":{"arguments":[{"id":12550,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34681:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12548,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:41","typeDescriptions":{}}},"id":12551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12531,"id":12552,"nodeType":"Return","src":"34667:20:41"}]},"documentation":{"id":12525,"nodeType":"StructuredDocumentation","src":"34210:165:41","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":12554,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:41","nodeType":"FunctionDefinition","parameters":{"id":12528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12527,"mutability":"mutable","name":"value","nameLocation":"34406:5:41","nodeType":"VariableDeclaration","scope":12554,"src":"34398:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12526,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:41"},"returnParameters":{"id":12531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12554,"src":"34436:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12529,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:41"},"scope":12565,"src":"34380:314:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12563,"nodeType":"Block","src":"34853:87:41","statements":[{"AST":{"nodeType":"YulBlock","src":"34888:46:41","statements":[{"nodeType":"YulAssignment","src":"34902:22:41","value":{"arguments":[{"arguments":[{"name":"b","nodeType":"YulIdentifier","src":"34921:1:41"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34914:6:41"},"nodeType":"YulFunctionCall","src":"34914:9:41"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34907:6:41"},"nodeType":"YulFunctionCall","src":"34907:17:41"},"variableNames":[{"name":"u","nodeType":"YulIdentifier","src":"34902:1:41"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":12557,"isOffset":false,"isSlot":false,"src":"34921:1:41","valueSize":1},{"declaration":12560,"isOffset":false,"isSlot":false,"src":"34902:1:41","valueSize":1}],"flags":["memory-safe"],"id":12562,"nodeType":"InlineAssembly","src":"34863:71:41"}]},"documentation":{"id":12555,"nodeType":"StructuredDocumentation","src":"34700:90:41","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":12564,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:41","nodeType":"FunctionDefinition","parameters":{"id":12558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12557,"mutability":"mutable","name":"b","nameLocation":"34816:1:41","nodeType":"VariableDeclaration","scope":12564,"src":"34811:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12556,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:41"},"returnParameters":{"id":12561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12560,"mutability":"mutable","name":"u","nameLocation":"34850:1:41","nodeType":"VariableDeclaration","scope":12564,"src":"34842:9:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12559,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:41"},"scope":12565,"src":"34795:145:41","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12566,"src":"769:34173:41","usedErrors":[10810,10815,10822,10827],"usedEvents":[]}],"src":"192:34751:41"},"id":41},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[12565],"SignedMath":[12709]},"id":12710,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12567,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:42"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":12569,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12710,"sourceUnit":12566,"src":"135:40:42","symbolAliases":[{"foreign":{"id":12568,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"143:8:42","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":12570,"nodeType":"StructuredDocumentation","src":"177:80:42","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":12709,"linearizedBaseContracts":[12709],"name":"SignedMath","nameLocation":"266:10:42","nodeType":"ContractDefinition","nodes":[{"body":{"id":12599,"nodeType":"Block","src":"746:215:42","statements":[{"id":12598,"nodeType":"UncheckedBlock","src":"756:199:42","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12582,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"894:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12583,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12575,"src":"900:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12584,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"904:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12586,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":12591,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12573,"src":"932:9:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":12589,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"916:8:42","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":12590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:42","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"916:15:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":12592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:42","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12587,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:42","typeDescriptions":{}}},"id":12593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12581,"id":12597,"nodeType":"Return","src":"887:57:42"}]}]},"documentation":{"id":12571,"nodeType":"StructuredDocumentation","src":"283:374:42","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":12600,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:42","nodeType":"FunctionDefinition","parameters":{"id":12578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12573,"mutability":"mutable","name":"condition","nameLocation":"684:9:42","nodeType":"VariableDeclaration","scope":12600,"src":"679:14:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12572,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12575,"mutability":"mutable","name":"a","nameLocation":"702:1:42","nodeType":"VariableDeclaration","scope":12600,"src":"695:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12574,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12577,"mutability":"mutable","name":"b","nameLocation":"712:1:42","nodeType":"VariableDeclaration","scope":12600,"src":"705:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12576,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:42"},"returnParameters":{"id":12581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12600,"src":"738:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12579,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:42"},"scope":12709,"src":"662:299:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12618,"nodeType":"Block","src":"1102:44:42","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12611,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12603,"src":"1127:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12612,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"src":"1131:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12614,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12603,"src":"1134:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12615,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"src":"1137:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12610,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12600,"src":"1119:7:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":12616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12609,"id":12617,"nodeType":"Return","src":"1112:27:42"}]},"documentation":{"id":12601,"nodeType":"StructuredDocumentation","src":"967:66:42","text":" @dev Returns the largest of two signed numbers."},"id":12619,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:42","nodeType":"FunctionDefinition","parameters":{"id":12606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12603,"mutability":"mutable","name":"a","nameLocation":"1058:1:42","nodeType":"VariableDeclaration","scope":12619,"src":"1051:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12602,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12605,"mutability":"mutable","name":"b","nameLocation":"1068:1:42","nodeType":"VariableDeclaration","scope":12619,"src":"1061:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12604,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:42"},"returnParameters":{"id":12609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12608,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12619,"src":"1094:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12607,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:42"},"scope":12709,"src":"1038:108:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12637,"nodeType":"Block","src":"1288:44:42","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12630,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12622,"src":"1313:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12631,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12624,"src":"1317:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12633,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12622,"src":"1320:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12634,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12624,"src":"1323:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12629,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12600,"src":"1305:7:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":12635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12628,"id":12636,"nodeType":"Return","src":"1298:27:42"}]},"documentation":{"id":12620,"nodeType":"StructuredDocumentation","src":"1152:67:42","text":" @dev Returns the smallest of two signed numbers."},"id":12638,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:42","nodeType":"FunctionDefinition","parameters":{"id":12625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12622,"mutability":"mutable","name":"a","nameLocation":"1244:1:42","nodeType":"VariableDeclaration","scope":12638,"src":"1237:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12621,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12624,"mutability":"mutable","name":"b","nameLocation":"1254:1:42","nodeType":"VariableDeclaration","scope":12638,"src":"1247:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12623,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:42"},"returnParameters":{"id":12628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12627,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12638,"src":"1280:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12626,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:42"},"scope":12709,"src":"1224:108:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12681,"nodeType":"Block","src":"1537:162:42","statements":[{"assignments":[12649],"declarations":[{"constant":false,"id":12649,"mutability":"mutable","name":"x","nameLocation":"1606:1:42","nodeType":"VariableDeclaration","scope":12681,"src":"1599:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12648,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12662,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12650,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1611:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":12651,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1615:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12653,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12654,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1622:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12655,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1626:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12657,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":12658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:42","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12660,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:42"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12663,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1651:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12668,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1671:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12666,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:42","typeDescriptions":{}}},"id":12669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":12670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:42","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12665,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:42","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12664,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:42","typeDescriptions":{}}},"id":12672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12673,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1685:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12674,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1689:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12676,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12678,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12647,"id":12680,"nodeType":"Return","src":"1644:48:42"}]},"documentation":{"id":12639,"nodeType":"StructuredDocumentation","src":"1338:126:42","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":12682,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:42","nodeType":"FunctionDefinition","parameters":{"id":12644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12641,"mutability":"mutable","name":"a","nameLocation":"1493:1:42","nodeType":"VariableDeclaration","scope":12682,"src":"1486:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12640,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12643,"mutability":"mutable","name":"b","nameLocation":"1503:1:42","nodeType":"VariableDeclaration","scope":12682,"src":"1496:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12642,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:42"},"returnParameters":{"id":12647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12646,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12682,"src":"1529:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12645,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:42"},"scope":12709,"src":"1469:230:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12707,"nodeType":"Block","src":"1843:767:42","statements":[{"id":12706,"nodeType":"UncheckedBlock","src":"1853:751:42","statements":[{"assignments":[12691],"declarations":[{"constant":false,"id":12691,"mutability":"mutable","name":"mask","nameLocation":"2424:4:42","nodeType":"VariableDeclaration","scope":12706,"src":"2417:11:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12690,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12695,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12692,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12685,"src":"2431:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":12693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:42","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:42"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12698,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12685,"src":"2576:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12699,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12691,"src":"2580:4:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12701,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12702,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12691,"src":"2588:4:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12696,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:42","typeDescriptions":{}}},"id":12704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12689,"id":12705,"nodeType":"Return","src":"2560:33:42"}]}]},"documentation":{"id":12683,"nodeType":"StructuredDocumentation","src":"1705:78:42","text":" @dev Returns the absolute unsigned value of a signed value."},"id":12708,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:42","nodeType":"FunctionDefinition","parameters":{"id":12686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12685,"mutability":"mutable","name":"n","nameLocation":"1808:1:42","nodeType":"VariableDeclaration","scope":12708,"src":"1801:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12684,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:42"},"returnParameters":{"id":12689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12708,"src":"1834:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12687,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:42"},"scope":12709,"src":"1788:822:42","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12710,"src":"258:2354:42","usedErrors":[],"usedEvents":[]}],"src":"109:2504:42"},"id":42},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","exportedSymbols":{"Checkpoints":[14290],"Math":[10800]},"id":14291,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12711,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"201:24:43"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":12713,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14291,"sourceUnit":10801,"src":"227:38:43","symbolAliases":[{"foreign":{"id":12712,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"235:4:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Checkpoints","contractDependencies":[],"contractKind":"library","documentation":{"id":12714,"nodeType":"StructuredDocumentation","src":"267:400:43","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":14290,"linearizedBaseContracts":[14290],"name":"Checkpoints","nameLocation":"676:11:43","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":12715,"nodeType":"StructuredDocumentation","src":"694:82:43","text":" @dev A value was attempted to be inserted on a past checkpoint."},"errorSelector":"2520601d","id":12717,"name":"CheckpointUnorderedInsertion","nameLocation":"787:28:43","nodeType":"ErrorDefinition","parameters":{"id":12716,"nodeType":"ParameterList","parameters":[],"src":"815:2:43"},"src":"781:37:43"},{"canonicalName":"Checkpoints.Trace224","id":12722,"members":[{"constant":false,"id":12721,"mutability":"mutable","name":"_checkpoints","nameLocation":"866:12:43","nodeType":"VariableDeclaration","scope":12722,"src":"850:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":12719,"nodeType":"UserDefinedTypeName","pathNode":{"id":12718,"name":"Checkpoint224","nameLocations":["850:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"850:13:43"},"referencedDeclaration":12727,"src":"850:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":12720,"nodeType":"ArrayTypeName","src":"850:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"}],"name":"Trace224","nameLocation":"831:8:43","nodeType":"StructDefinition","scope":14290,"src":"824:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint224","id":12727,"members":[{"constant":false,"id":12724,"mutability":"mutable","name":"_key","nameLocation":"929:4:43","nodeType":"VariableDeclaration","scope":12727,"src":"922:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12723,"name":"uint32","nodeType":"ElementaryTypeName","src":"922:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12726,"mutability":"mutable","name":"_value","nameLocation":"951:6:43","nodeType":"VariableDeclaration","scope":12727,"src":"943:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12725,"name":"uint224","nodeType":"ElementaryTypeName","src":"943:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"name":"Checkpoint224","nameLocation":"898:13:43","nodeType":"StructDefinition","scope":14290,"src":"891:73:43","visibility":"public"},{"body":{"id":12749,"nodeType":"Block","src":"1425:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":12743,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"1450:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12744,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1455:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1450:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12745,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"1469:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12746,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12735,"src":"1474:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":12742,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":13122,"src":"1442:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_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":12747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":12741,"id":12748,"nodeType":"Return","src":"1435:45:43"}]},"documentation":{"id":12728,"nodeType":"StructuredDocumentation","src":"970:302:43","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":12750,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"1286:4:43","nodeType":"FunctionDefinition","parameters":{"id":12736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12731,"mutability":"mutable","name":"self","nameLocation":"1317:4:43","nodeType":"VariableDeclaration","scope":12750,"src":"1300:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12730,"nodeType":"UserDefinedTypeName","pathNode":{"id":12729,"name":"Trace224","nameLocations":["1300:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"1300:8:43"},"referencedDeclaration":12722,"src":"1300:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12733,"mutability":"mutable","name":"key","nameLocation":"1338:3:43","nodeType":"VariableDeclaration","scope":12750,"src":"1331:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12732,"name":"uint32","nodeType":"ElementaryTypeName","src":"1331:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12735,"mutability":"mutable","name":"value","nameLocation":"1359:5:43","nodeType":"VariableDeclaration","scope":12750,"src":"1351:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12734,"name":"uint224","nodeType":"ElementaryTypeName","src":"1351:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1290:80:43"},"returnParameters":{"id":12741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12738,"mutability":"mutable","name":"oldValue","nameLocation":"1397:8:43","nodeType":"VariableDeclaration","scope":12750,"src":"1389:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12737,"name":"uint224","nodeType":"ElementaryTypeName","src":"1389:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":12740,"mutability":"mutable","name":"newValue","nameLocation":"1415:8:43","nodeType":"VariableDeclaration","scope":12750,"src":"1407:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12739,"name":"uint224","nodeType":"ElementaryTypeName","src":"1407:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1388:36:43"},"scope":14290,"src":"1277:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12789,"nodeType":"Block","src":"1740:207:43","statements":[{"assignments":[12762],"declarations":[{"constant":false,"id":12762,"mutability":"mutable","name":"len","nameLocation":"1758:3:43","nodeType":"VariableDeclaration","scope":12789,"src":"1750:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12761,"name":"uint256","nodeType":"ElementaryTypeName","src":"1750:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12766,"initialValue":{"expression":{"expression":{"id":12763,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1764:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12764,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1769:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1764:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1782:6:43","memberName":"length","nodeType":"MemberAccess","src":"1764:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1750:38:43"},{"assignments":[12768],"declarations":[{"constant":false,"id":12768,"mutability":"mutable","name":"pos","nameLocation":"1806:3:43","nodeType":"VariableDeclaration","scope":12789,"src":"1798:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12767,"name":"uint256","nodeType":"ElementaryTypeName","src":"1798:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12776,"initialValue":{"arguments":[{"expression":{"id":12770,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1831:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12771,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1836:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1831:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12772,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12756,"src":"1850:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":12773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1855:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":12774,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"1858:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_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":12769,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":13226,"src":"1812:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_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":12775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1798:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12777,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12768,"src":"1879:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12778,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"1886:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12782,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1910:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12783,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1915:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1910:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12784,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12768,"src":"1929:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12781,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"1896:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1896:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12786,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1934:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"1896:44:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1879:61:43","trueExpression":{"hexValue":"30","id":12780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1892:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12760,"id":12788,"nodeType":"Return","src":"1872:68:43"}]},"documentation":{"id":12751,"nodeType":"StructuredDocumentation","src":"1493:154:43","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":12790,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"1661:11:43","nodeType":"FunctionDefinition","parameters":{"id":12757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12754,"mutability":"mutable","name":"self","nameLocation":"1690:4:43","nodeType":"VariableDeclaration","scope":12790,"src":"1673:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12753,"nodeType":"UserDefinedTypeName","pathNode":{"id":12752,"name":"Trace224","nameLocations":["1673:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"1673:8:43"},"referencedDeclaration":12722,"src":"1673:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12756,"mutability":"mutable","name":"key","nameLocation":"1703:3:43","nodeType":"VariableDeclaration","scope":12790,"src":"1696:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12755,"name":"uint32","nodeType":"ElementaryTypeName","src":"1696:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"1672:35:43"},"returnParameters":{"id":12760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12790,"src":"1731:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12758,"name":"uint224","nodeType":"ElementaryTypeName","src":"1731:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1730:9:43"},"scope":14290,"src":"1652:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12831,"nodeType":"Block","src":"2202:209:43","statements":[{"assignments":[12802],"declarations":[{"constant":false,"id":12802,"mutability":"mutable","name":"len","nameLocation":"2220:3:43","nodeType":"VariableDeclaration","scope":12831,"src":"2212:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12801,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12806,"initialValue":{"expression":{"expression":{"id":12803,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2226:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2231:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2226:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2244:6:43","memberName":"length","nodeType":"MemberAccess","src":"2226:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2212:38:43"},{"assignments":[12808],"declarations":[{"constant":false,"id":12808,"mutability":"mutable","name":"pos","nameLocation":"2268:3:43","nodeType":"VariableDeclaration","scope":12831,"src":"2260:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12807,"name":"uint256","nodeType":"ElementaryTypeName","src":"2260:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12816,"initialValue":{"arguments":[{"expression":{"id":12810,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2293:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2293:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12812,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12796,"src":"2312:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":12813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2317:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":12814,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12802,"src":"2320:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_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":12809,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13174,"src":"2274:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_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":12815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2274:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2260:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12817,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12808,"src":"2341:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2348:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2341:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12822,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2370:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12823,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2375:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2370:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12824,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12808,"src":"2389:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2395:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2389:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12821,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"2356:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2356:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12828,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2398:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"2356:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2341:63:43","trueExpression":{"hexValue":"30","id":12820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2352:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12800,"id":12830,"nodeType":"Return","src":"2334:70:43"}]},"documentation":{"id":12791,"nodeType":"StructuredDocumentation","src":"1953:156:43","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":12832,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"2123:11:43","nodeType":"FunctionDefinition","parameters":{"id":12797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12794,"mutability":"mutable","name":"self","nameLocation":"2152:4:43","nodeType":"VariableDeclaration","scope":12832,"src":"2135:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12793,"nodeType":"UserDefinedTypeName","pathNode":{"id":12792,"name":"Trace224","nameLocations":["2135:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"2135:8:43"},"referencedDeclaration":12722,"src":"2135:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12796,"mutability":"mutable","name":"key","nameLocation":"2165:3:43","nodeType":"VariableDeclaration","scope":12832,"src":"2158:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12795,"name":"uint32","nodeType":"ElementaryTypeName","src":"2158:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2134:35:43"},"returnParameters":{"id":12800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12799,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12832,"src":"2193:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12798,"name":"uint224","nodeType":"ElementaryTypeName","src":"2193:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2192:9:43"},"scope":14290,"src":"2114:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12916,"nodeType":"Block","src":"2810:512:43","statements":[{"assignments":[12844],"declarations":[{"constant":false,"id":12844,"mutability":"mutable","name":"len","nameLocation":"2828:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"2820:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12843,"name":"uint256","nodeType":"ElementaryTypeName","src":"2820:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12848,"initialValue":{"expression":{"expression":{"id":12845,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"2834:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12846,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2839:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2834:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:6:43","memberName":"length","nodeType":"MemberAccess","src":"2834:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2820:38:43"},{"assignments":[12850],"declarations":[{"constant":false,"id":12850,"mutability":"mutable","name":"low","nameLocation":"2877:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"2869:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12849,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12852,"initialValue":{"hexValue":"30","id":12851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2883:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2869:15:43"},{"assignments":[12854],"declarations":[{"constant":false,"id":12854,"mutability":"mutable","name":"high","nameLocation":"2902:4:43","nodeType":"VariableDeclaration","scope":12916,"src":"2894:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12853,"name":"uint256","nodeType":"ElementaryTypeName","src":"2894:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12856,"initialValue":{"id":12855,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2909:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2894:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12857,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2927:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":12858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2933:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"2927:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12891,"nodeType":"IfStatement","src":"2923:234:43","trueBody":{"id":12890,"nodeType":"Block","src":"2936:221:43","statements":[{"assignments":[12861],"declarations":[{"constant":false,"id":12861,"mutability":"mutable","name":"mid","nameLocation":"2958:3:43","nodeType":"VariableDeclaration","scope":12890,"src":"2950:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12860,"name":"uint256","nodeType":"ElementaryTypeName","src":"2950:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12868,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12862,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2964:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":12865,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2980:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12863,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"2970:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":12864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2975:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"2970:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":12866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2970:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2964:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2950:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":12876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12869,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12838,"src":"3002:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":12871,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3022:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12872,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3022:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12873,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3041:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12870,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3008:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3008:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3046:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"3008:42:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3002:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12888,"nodeType":"Block","src":"3101:46:43","statements":[{"expression":{"id":12886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12882,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"3119:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12883,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3125:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3125:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3119:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12887,"nodeType":"ExpressionStatement","src":"3119:13:43"}]},"id":12889,"nodeType":"IfStatement","src":"2998:149:43","trueBody":{"id":12881,"nodeType":"Block","src":"3052:43:43","statements":[{"expression":{"id":12879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12877,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"3070:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":12878,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3077:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3070:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12880,"nodeType":"ExpressionStatement","src":"3070:10:43"}]}}]}},{"assignments":[12893],"declarations":[{"constant":false,"id":12893,"mutability":"mutable","name":"pos","nameLocation":"3175:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"3167:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12892,"name":"uint256","nodeType":"ElementaryTypeName","src":"3167:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12901,"initialValue":{"arguments":[{"expression":{"id":12895,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3200:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12896,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3205:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3200:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12897,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12838,"src":"3219:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12898,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"3224:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12899,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"3229:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_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":12894,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13174,"src":"3181:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_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":12900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3167:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12902,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12893,"src":"3252:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3259:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3252:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12907,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3281:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3286:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3281:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12909,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12893,"src":"3300:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3306:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3300:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12906,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3267:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3267:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12913,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3309:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"3267:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3252:63:43","trueExpression":{"hexValue":"30","id":12905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3263:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12842,"id":12915,"nodeType":"Return","src":"3245:70:43"}]},"documentation":{"id":12833,"nodeType":"StructuredDocumentation","src":"2417:294:43","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":12917,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"2725:17:43","nodeType":"FunctionDefinition","parameters":{"id":12839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12836,"mutability":"mutable","name":"self","nameLocation":"2760:4:43","nodeType":"VariableDeclaration","scope":12917,"src":"2743:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12835,"nodeType":"UserDefinedTypeName","pathNode":{"id":12834,"name":"Trace224","nameLocations":["2743:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"2743:8:43"},"referencedDeclaration":12722,"src":"2743:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12838,"mutability":"mutable","name":"key","nameLocation":"2773:3:43","nodeType":"VariableDeclaration","scope":12917,"src":"2766:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12837,"name":"uint32","nodeType":"ElementaryTypeName","src":"2766:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2742:35:43"},"returnParameters":{"id":12842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12841,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12917,"src":"2801:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12840,"name":"uint224","nodeType":"ElementaryTypeName","src":"2801:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2800:9:43"},"scope":14290,"src":"2716:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12946,"nodeType":"Block","src":"3513:135:43","statements":[{"assignments":[12927],"declarations":[{"constant":false,"id":12927,"mutability":"mutable","name":"pos","nameLocation":"3531:3:43","nodeType":"VariableDeclaration","scope":12946,"src":"3523:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12926,"name":"uint256","nodeType":"ElementaryTypeName","src":"3523:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12931,"initialValue":{"expression":{"expression":{"id":12928,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12921,"src":"3537:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3542:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3537:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3555:6:43","memberName":"length","nodeType":"MemberAccess","src":"3537:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3523:38:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12932,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12927,"src":"3578:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3585:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3578:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12937,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12921,"src":"3607:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12938,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3612:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3607:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12939,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12927,"src":"3626:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3632:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3626:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12936,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3593:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3593:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12943,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3635:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"3593:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3578:63:43","trueExpression":{"hexValue":"30","id":12935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3589:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12925,"id":12945,"nodeType":"Return","src":"3571:70:43"}]},"documentation":{"id":12918,"nodeType":"StructuredDocumentation","src":"3328:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":12947,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"3451:6:43","nodeType":"FunctionDefinition","parameters":{"id":12922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12921,"mutability":"mutable","name":"self","nameLocation":"3475:4:43","nodeType":"VariableDeclaration","scope":12947,"src":"3458:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12920,"nodeType":"UserDefinedTypeName","pathNode":{"id":12919,"name":"Trace224","nameLocations":["3458:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"3458:8:43"},"referencedDeclaration":12722,"src":"3458:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3457:23:43"},"returnParameters":{"id":12925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12924,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12947,"src":"3504:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12923,"name":"uint224","nodeType":"ElementaryTypeName","src":"3504:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3503:9:43"},"scope":14290,"src":"3442:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12995,"nodeType":"Block","src":"3941:275:43","statements":[{"assignments":[12961],"declarations":[{"constant":false,"id":12961,"mutability":"mutable","name":"pos","nameLocation":"3959:3:43","nodeType":"VariableDeclaration","scope":12995,"src":"3951:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12960,"name":"uint256","nodeType":"ElementaryTypeName","src":"3951:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12965,"initialValue":{"expression":{"expression":{"id":12962,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12951,"src":"3965:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12963,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3970:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3965:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3983:6:43","memberName":"length","nodeType":"MemberAccess","src":"3965:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3951:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12966,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"4003:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4010:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4003:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12993,"nodeType":"Block","src":"4064:146:43","statements":[{"assignments":[12977],"declarations":[{"constant":false,"id":12977,"mutability":"mutable","name":"ckpt","nameLocation":"4100:4:43","nodeType":"VariableDeclaration","scope":12993,"src":"4078:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":12976,"nodeType":"UserDefinedTypeName","pathNode":{"id":12975,"name":"Checkpoint224","nameLocations":["4078:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4078:13:43"},"referencedDeclaration":12727,"src":"4078:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":12985,"initialValue":{"arguments":[{"expression":{"id":12979,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12951,"src":"4121:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12980,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4126:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4121:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12981,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"4140:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4146:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4140:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12978,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"4107:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4078:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":12986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4170:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":12987,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12977,"src":"4176:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12988,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4181:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"4176:9:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":12989,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12977,"src":"4187:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12990,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4192:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"4187:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":12991,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4169:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$_t_uint224_$","typeString":"tuple(bool,uint32,uint224)"}},"functionReturnParameters":12959,"id":12992,"nodeType":"Return","src":"4162:37:43"}]},"id":12994,"nodeType":"IfStatement","src":"3999:211:43","trueBody":{"id":12974,"nodeType":"Block","src":"4013:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":12969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4035:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4042:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":12971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4045:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12972,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"4034:13:43","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":12959,"id":12973,"nodeType":"Return","src":"4027:20:43"}]}}]},"documentation":{"id":12948,"nodeType":"StructuredDocumentation","src":"3654:168:43","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":12996,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"3836:16:43","nodeType":"FunctionDefinition","parameters":{"id":12952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12951,"mutability":"mutable","name":"self","nameLocation":"3870:4:43","nodeType":"VariableDeclaration","scope":12996,"src":"3853:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12950,"nodeType":"UserDefinedTypeName","pathNode":{"id":12949,"name":"Trace224","nameLocations":["3853:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"3853:8:43"},"referencedDeclaration":12722,"src":"3853:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3852:23:43"},"returnParameters":{"id":12959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12954,"mutability":"mutable","name":"exists","nameLocation":"3904:6:43","nodeType":"VariableDeclaration","scope":12996,"src":"3899:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12953,"name":"bool","nodeType":"ElementaryTypeName","src":"3899:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12956,"mutability":"mutable","name":"_key","nameLocation":"3919:4:43","nodeType":"VariableDeclaration","scope":12996,"src":"3912:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12955,"name":"uint32","nodeType":"ElementaryTypeName","src":"3912:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12958,"mutability":"mutable","name":"_value","nameLocation":"3933:6:43","nodeType":"VariableDeclaration","scope":12996,"src":"3925:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12957,"name":"uint224","nodeType":"ElementaryTypeName","src":"3925:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3898:42:43"},"scope":14290,"src":"3827:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13009,"nodeType":"Block","src":"4355:48:43","statements":[{"expression":{"expression":{"expression":{"id":13005,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13000,"src":"4372:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4377:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4372:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4390:6:43","memberName":"length","nodeType":"MemberAccess","src":"4372:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13004,"id":13008,"nodeType":"Return","src":"4365:31:43"}]},"documentation":{"id":12997,"nodeType":"StructuredDocumentation","src":"4222:57:43","text":" @dev Returns the number of checkpoint."},"id":13010,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"4293:6:43","nodeType":"FunctionDefinition","parameters":{"id":13001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13000,"mutability":"mutable","name":"self","nameLocation":"4317:4:43","nodeType":"VariableDeclaration","scope":13010,"src":"4300:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12999,"nodeType":"UserDefinedTypeName","pathNode":{"id":12998,"name":"Trace224","nameLocations":["4300:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"4300:8:43"},"referencedDeclaration":12722,"src":"4300:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"4299:23:43"},"returnParameters":{"id":13004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13010,"src":"4346:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13002,"name":"uint256","nodeType":"ElementaryTypeName","src":"4346:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4345:9:43"},"scope":14290,"src":"4284:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13027,"nodeType":"Block","src":"4567:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":13022,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13014,"src":"4584:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13023,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4589:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4584:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13025,"indexExpression":{"id":13024,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13016,"src":"4602:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4584:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref"}},"functionReturnParameters":13021,"id":13026,"nodeType":"Return","src":"4577:29:43"}]},"documentation":{"id":13011,"nodeType":"StructuredDocumentation","src":"4409:61:43","text":" @dev Returns checkpoint at given position."},"id":13028,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4484:2:43","nodeType":"FunctionDefinition","parameters":{"id":13017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13014,"mutability":"mutable","name":"self","nameLocation":"4504:4:43","nodeType":"VariableDeclaration","scope":13028,"src":"4487:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13013,"nodeType":"UserDefinedTypeName","pathNode":{"id":13012,"name":"Trace224","nameLocations":["4487:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"4487:8:43"},"referencedDeclaration":12722,"src":"4487:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13016,"mutability":"mutable","name":"pos","nameLocation":"4517:3:43","nodeType":"VariableDeclaration","scope":13028,"src":"4510:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13015,"name":"uint32","nodeType":"ElementaryTypeName","src":"4510:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4486:35:43"},"returnParameters":{"id":13021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13028,"src":"4545:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13019,"nodeType":"UserDefinedTypeName","pathNode":{"id":13018,"name":"Checkpoint224","nameLocations":["4545:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4545:13:43"},"referencedDeclaration":12727,"src":"4545:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"4544:22:43"},"scope":14290,"src":"4475:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13121,"nodeType":"Block","src":"4946:765:43","statements":[{"assignments":[13045],"declarations":[{"constant":false,"id":13045,"mutability":"mutable","name":"pos","nameLocation":"4964:3:43","nodeType":"VariableDeclaration","scope":13121,"src":"4956:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13044,"name":"uint256","nodeType":"ElementaryTypeName","src":"4956:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13048,"initialValue":{"expression":{"id":13046,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"4970:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4975:6:43","memberName":"length","nodeType":"MemberAccess","src":"4970:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4956:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13049,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13045,"src":"4996:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":13050,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5002:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4996:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13119,"nodeType":"Block","src":"5597:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13110,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5642:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5655:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13109,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"5621:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5636:4:43","5647:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5621:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13106,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5611:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5616:4:43","memberName":"push","nodeType":"MemberAccess","src":"5611:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$12727_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5611:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13114,"nodeType":"ExpressionStatement","src":"5611:52:43"},{"expression":{"components":[{"hexValue":"30","id":13115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5685:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13116,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5688:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5684:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint224_$","typeString":"tuple(int_const 0,uint224)"}},"functionReturnParameters":13043,"id":13118,"nodeType":"Return","src":"5677:17:43"}]},"id":13120,"nodeType":"IfStatement","src":"4992:713:43","trueBody":{"id":13105,"nodeType":"Block","src":"5005:586:43","statements":[{"assignments":[13054],"declarations":[{"constant":false,"id":13054,"mutability":"mutable","name":"last","nameLocation":"5041:4:43","nodeType":"VariableDeclaration","scope":13105,"src":"5019:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13053,"nodeType":"UserDefinedTypeName","pathNode":{"id":13052,"name":"Checkpoint224","nameLocations":["5019:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"5019:13:43"},"referencedDeclaration":12727,"src":"5019:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":13061,"initialValue":{"arguments":[{"id":13056,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5062:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13057,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13045,"src":"5068:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5074:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5068:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13055,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"5048:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5048:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5019:57:43"},{"assignments":[13063],"declarations":[{"constant":false,"id":13063,"mutability":"mutable","name":"lastKey","nameLocation":"5097:7:43","nodeType":"VariableDeclaration","scope":13105,"src":"5090:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13062,"name":"uint32","nodeType":"ElementaryTypeName","src":"5090:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":13066,"initialValue":{"expression":{"id":13064,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5107:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5112:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"5107:9:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"5090:26:43"},{"assignments":[13068],"declarations":[{"constant":false,"id":13068,"mutability":"mutable","name":"lastValue","nameLocation":"5138:9:43","nodeType":"VariableDeclaration","scope":13105,"src":"5130:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13067,"name":"uint224","nodeType":"ElementaryTypeName","src":"5130:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"id":13071,"initialValue":{"expression":{"id":13069,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5150:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5155:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"5150:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"VariableDeclarationStatement","src":"5130:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13072,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13063,"src":"5235:7:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13073,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5245:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5235:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13079,"nodeType":"IfStatement","src":"5231:89:43","trueBody":{"id":13078,"nodeType":"Block","src":"5250:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13075,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"5275:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":13076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5275:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13077,"nodeType":"RevertStatement","src":"5268:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13080,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13063,"src":"5383:7:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13081,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5394:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5383:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13099,"nodeType":"Block","src":"5457:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13094,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5506:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13095,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5519:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13093,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"5485:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5500:4:43","5511:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5485:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13090,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5475:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5480:4:43","memberName":"push","nodeType":"MemberAccess","src":"5475:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$12727_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5475:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13098,"nodeType":"ExpressionStatement","src":"5475:52:43"}]},"id":13100,"nodeType":"IfStatement","src":"5379:163:43","trueBody":{"id":13089,"nodeType":"Block","src":"5399:52:43","statements":[{"expression":{"id":13087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13083,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5417:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5422:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"5417:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13086,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5431:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"5417:19:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13088,"nodeType":"ExpressionStatement","src":"5417:19:43"}]}},{"expression":{"components":[{"id":13101,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13068,"src":"5563:9:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},{"id":13102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5574:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13103,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5562:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":13043,"id":13104,"nodeType":"Return","src":"5555:25:43"}]}}]},"documentation":{"id":13029,"nodeType":"StructuredDocumentation","src":"4619:165:43","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":13122,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"4798:7:43","nodeType":"FunctionDefinition","parameters":{"id":13038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13033,"mutability":"mutable","name":"self","nameLocation":"4839:4:43","nodeType":"VariableDeclaration","scope":13122,"src":"4815:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13031,"nodeType":"UserDefinedTypeName","pathNode":{"id":13030,"name":"Checkpoint224","nameLocations":["4815:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4815:13:43"},"referencedDeclaration":12727,"src":"4815:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13032,"nodeType":"ArrayTypeName","src":"4815:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13035,"mutability":"mutable","name":"key","nameLocation":"4860:3:43","nodeType":"VariableDeclaration","scope":13122,"src":"4853:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13034,"name":"uint32","nodeType":"ElementaryTypeName","src":"4853:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13037,"mutability":"mutable","name":"value","nameLocation":"4881:5:43","nodeType":"VariableDeclaration","scope":13122,"src":"4873:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13036,"name":"uint224","nodeType":"ElementaryTypeName","src":"4873:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4805:87:43"},"returnParameters":{"id":13043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13040,"mutability":"mutable","name":"oldValue","nameLocation":"4918:8:43","nodeType":"VariableDeclaration","scope":13122,"src":"4910:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13039,"name":"uint224","nodeType":"ElementaryTypeName","src":"4910:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":13042,"mutability":"mutable","name":"newValue","nameLocation":"4936:8:43","nodeType":"VariableDeclaration","scope":13122,"src":"4928:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13041,"name":"uint224","nodeType":"ElementaryTypeName","src":"4928:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4909:36:43"},"scope":14290,"src":"4789:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":13173,"nodeType":"Block","src":"6227:267:43","statements":[{"body":{"id":13169,"nodeType":"Block","src":"6256:211:43","statements":[{"assignments":[13142],"declarations":[{"constant":false,"id":13142,"mutability":"mutable","name":"mid","nameLocation":"6278:3:43","nodeType":"VariableDeclaration","scope":13169,"src":"6270:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13141,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13148,"initialValue":{"arguments":[{"id":13145,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6297:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13146,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6302:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13143,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"6284:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6289:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"6284:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6284:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6270:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13150,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13127,"src":"6339:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13151,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6345:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13149,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"6325:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6325:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6350:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"6325:29:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13154,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13129,"src":"6357:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6325:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13167,"nodeType":"Block","src":"6411:46:43","statements":[{"expression":{"id":13165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13161,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6429:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13162,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6435:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6441:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6435:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6429:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13166,"nodeType":"ExpressionStatement","src":"6429:13:43"}]},"id":13168,"nodeType":"IfStatement","src":"6321:136:43","trueBody":{"id":13160,"nodeType":"Block","src":"6362:43:43","statements":[{"expression":{"id":13158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13156,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6380:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13157,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6387:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6380:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13159,"nodeType":"ExpressionStatement","src":"6380:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13138,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6244:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13139,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6250:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13170,"nodeType":"WhileStatement","src":"6237:230:43"},{"expression":{"id":13171,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6483:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13137,"id":13172,"nodeType":"Return","src":"6476:11:43"}]},"documentation":{"id":13123,"nodeType":"StructuredDocumentation","src":"5717:339:43","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":13174,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"6070:18:43","nodeType":"FunctionDefinition","parameters":{"id":13134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13127,"mutability":"mutable","name":"self","nameLocation":"6122:4:43","nodeType":"VariableDeclaration","scope":13174,"src":"6098:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13125,"nodeType":"UserDefinedTypeName","pathNode":{"id":13124,"name":"Checkpoint224","nameLocations":["6098:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"6098:13:43"},"referencedDeclaration":12727,"src":"6098:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13126,"nodeType":"ArrayTypeName","src":"6098:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13129,"mutability":"mutable","name":"key","nameLocation":"6143:3:43","nodeType":"VariableDeclaration","scope":13174,"src":"6136:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13128,"name":"uint32","nodeType":"ElementaryTypeName","src":"6136:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13131,"mutability":"mutable","name":"low","nameLocation":"6164:3:43","nodeType":"VariableDeclaration","scope":13174,"src":"6156:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13130,"name":"uint256","nodeType":"ElementaryTypeName","src":"6156:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13133,"mutability":"mutable","name":"high","nameLocation":"6185:4:43","nodeType":"VariableDeclaration","scope":13174,"src":"6177:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13132,"name":"uint256","nodeType":"ElementaryTypeName","src":"6177:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6088:107:43"},"returnParameters":{"id":13137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13136,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13174,"src":"6218:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13135,"name":"uint256","nodeType":"ElementaryTypeName","src":"6218:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6217:9:43"},"scope":14290,"src":"6061:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13225,"nodeType":"Block","src":"7011:267:43","statements":[{"body":{"id":13221,"nodeType":"Block","src":"7040:211:43","statements":[{"assignments":[13194],"declarations":[{"constant":false,"id":13194,"mutability":"mutable","name":"mid","nameLocation":"7062:3:43","nodeType":"VariableDeclaration","scope":13221,"src":"7054:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13193,"name":"uint256","nodeType":"ElementaryTypeName","src":"7054:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13200,"initialValue":{"arguments":[{"id":13197,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7081:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13198,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7086:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13195,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"7068:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7073:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"7068:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7068:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7054:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13202,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13179,"src":"7123:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13203,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7129:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13201,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"7109:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7109:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13205,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7134:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"7109:29:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13206,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13181,"src":"7141:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7109:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13219,"nodeType":"Block","src":"7198:43:43","statements":[{"expression":{"id":13217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13215,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7216:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13216,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7223:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7216:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13218,"nodeType":"ExpressionStatement","src":"7216:10:43"}]},"id":13220,"nodeType":"IfStatement","src":"7105:136:43","trueBody":{"id":13214,"nodeType":"Block","src":"7146:46:43","statements":[{"expression":{"id":13212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13208,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7164:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13209,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7170:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7176:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7170:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7164:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13213,"nodeType":"ExpressionStatement","src":"7164:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13190,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7028:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13191,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7034:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7028:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13222,"nodeType":"WhileStatement","src":"7021:230:43"},{"expression":{"id":13223,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7267:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13189,"id":13224,"nodeType":"Return","src":"7260:11:43"}]},"documentation":{"id":13175,"nodeType":"StructuredDocumentation","src":"6500:340:43","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":13226,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"6854:18:43","nodeType":"FunctionDefinition","parameters":{"id":13186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13179,"mutability":"mutable","name":"self","nameLocation":"6906:4:43","nodeType":"VariableDeclaration","scope":13226,"src":"6882:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13177,"nodeType":"UserDefinedTypeName","pathNode":{"id":13176,"name":"Checkpoint224","nameLocations":["6882:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"6882:13:43"},"referencedDeclaration":12727,"src":"6882:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13178,"nodeType":"ArrayTypeName","src":"6882:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13181,"mutability":"mutable","name":"key","nameLocation":"6927:3:43","nodeType":"VariableDeclaration","scope":13226,"src":"6920:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13180,"name":"uint32","nodeType":"ElementaryTypeName","src":"6920:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13183,"mutability":"mutable","name":"low","nameLocation":"6948:3:43","nodeType":"VariableDeclaration","scope":13226,"src":"6940:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13182,"name":"uint256","nodeType":"ElementaryTypeName","src":"6940:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13185,"mutability":"mutable","name":"high","nameLocation":"6969:4:43","nodeType":"VariableDeclaration","scope":13226,"src":"6961:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13184,"name":"uint256","nodeType":"ElementaryTypeName","src":"6961:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6872:107:43"},"returnParameters":{"id":13189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13226,"src":"7002:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13187,"name":"uint256","nodeType":"ElementaryTypeName","src":"7002:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7001:9:43"},"scope":14290,"src":"6845:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13240,"nodeType":"Block","src":"7561:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"7580:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7601:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"7604:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7594:6:43"},"nodeType":"YulFunctionCall","src":"7594:20:43"},"nodeType":"YulExpressionStatement","src":"7594:20:43"},{"nodeType":"YulAssignment","src":"7627:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7656:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7659:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"7646:9:43"},"nodeType":"YulFunctionCall","src":"7646:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"7666:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7642:3:43"},"nodeType":"YulFunctionCall","src":"7642:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"7627:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13233,"isOffset":false,"isSlot":false,"src":"7666:3:43","valueSize":1},{"declaration":13237,"isOffset":false,"isSlot":true,"src":"7627:11:43","suffix":"slot","valueSize":1},{"declaration":13231,"isOffset":false,"isSlot":true,"src":"7604:9:43","suffix":"slot","valueSize":1}],"id":13239,"nodeType":"InlineAssembly","src":"7571:109:43"}]},"documentation":{"id":13227,"nodeType":"StructuredDocumentation","src":"7284:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":13241,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"7430:13:43","nodeType":"FunctionDefinition","parameters":{"id":13234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13231,"mutability":"mutable","name":"self","nameLocation":"7477:4:43","nodeType":"VariableDeclaration","scope":13241,"src":"7453:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13229,"nodeType":"UserDefinedTypeName","pathNode":{"id":13228,"name":"Checkpoint224","nameLocations":["7453:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"7453:13:43"},"referencedDeclaration":12727,"src":"7453:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13230,"nodeType":"ArrayTypeName","src":"7453:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13233,"mutability":"mutable","name":"pos","nameLocation":"7499:3:43","nodeType":"VariableDeclaration","scope":13241,"src":"7491:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13232,"name":"uint256","nodeType":"ElementaryTypeName","src":"7491:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7443:65:43"},"returnParameters":{"id":13238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13237,"mutability":"mutable","name":"result","nameLocation":"7553:6:43","nodeType":"VariableDeclaration","scope":13241,"src":"7531:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13236,"nodeType":"UserDefinedTypeName","pathNode":{"id":13235,"name":"Checkpoint224","nameLocations":["7531:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"7531:13:43"},"referencedDeclaration":12727,"src":"7531:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"7530:30:43"},"scope":14290,"src":"7421:265:43","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace208","id":13246,"members":[{"constant":false,"id":13245,"mutability":"mutable","name":"_checkpoints","nameLocation":"7734:12:43","nodeType":"VariableDeclaration","scope":13246,"src":"7718:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13243,"nodeType":"UserDefinedTypeName","pathNode":{"id":13242,"name":"Checkpoint208","nameLocations":["7718:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"7718:13:43"},"referencedDeclaration":13251,"src":"7718:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13244,"nodeType":"ArrayTypeName","src":"7718:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"}],"name":"Trace208","nameLocation":"7699:8:43","nodeType":"StructDefinition","scope":14290,"src":"7692:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint208","id":13251,"members":[{"constant":false,"id":13248,"mutability":"mutable","name":"_key","nameLocation":"7797:4:43","nodeType":"VariableDeclaration","scope":13251,"src":"7790:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13247,"name":"uint48","nodeType":"ElementaryTypeName","src":"7790:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13250,"mutability":"mutable","name":"_value","nameLocation":"7819:6:43","nodeType":"VariableDeclaration","scope":13251,"src":"7811:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13249,"name":"uint208","nodeType":"ElementaryTypeName","src":"7811:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"name":"Checkpoint208","nameLocation":"7766:13:43","nodeType":"StructDefinition","scope":14290,"src":"7759:73:43","visibility":"public"},{"body":{"id":13273,"nodeType":"Block","src":"8293:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":13267,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13255,"src":"8318:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8323:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8318:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13269,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13257,"src":"8337:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"8342:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13266,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":13646,"src":"8310:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_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":13271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8310:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":13265,"id":13272,"nodeType":"Return","src":"8303:45:43"}]},"documentation":{"id":13252,"nodeType":"StructuredDocumentation","src":"7838:302:43","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":13274,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"8154:4:43","nodeType":"FunctionDefinition","parameters":{"id":13260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13255,"mutability":"mutable","name":"self","nameLocation":"8185:4:43","nodeType":"VariableDeclaration","scope":13274,"src":"8168:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13254,"nodeType":"UserDefinedTypeName","pathNode":{"id":13253,"name":"Trace208","nameLocations":["8168:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"8168:8:43"},"referencedDeclaration":13246,"src":"8168:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13257,"mutability":"mutable","name":"key","nameLocation":"8206:3:43","nodeType":"VariableDeclaration","scope":13274,"src":"8199:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13256,"name":"uint48","nodeType":"ElementaryTypeName","src":"8199:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13259,"mutability":"mutable","name":"value","nameLocation":"8227:5:43","nodeType":"VariableDeclaration","scope":13274,"src":"8219:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13258,"name":"uint208","nodeType":"ElementaryTypeName","src":"8219:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8158:80:43"},"returnParameters":{"id":13265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13262,"mutability":"mutable","name":"oldValue","nameLocation":"8265:8:43","nodeType":"VariableDeclaration","scope":13274,"src":"8257:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13261,"name":"uint208","nodeType":"ElementaryTypeName","src":"8257:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":13264,"mutability":"mutable","name":"newValue","nameLocation":"8283:8:43","nodeType":"VariableDeclaration","scope":13274,"src":"8275:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13263,"name":"uint208","nodeType":"ElementaryTypeName","src":"8275:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8256:36:43"},"scope":14290,"src":"8145:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13313,"nodeType":"Block","src":"8608:207:43","statements":[{"assignments":[13286],"declarations":[{"constant":false,"id":13286,"mutability":"mutable","name":"len","nameLocation":"8626:3:43","nodeType":"VariableDeclaration","scope":13313,"src":"8618:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13285,"name":"uint256","nodeType":"ElementaryTypeName","src":"8618:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13290,"initialValue":{"expression":{"expression":{"id":13287,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8632:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13288,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8637:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8632:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8650:6:43","memberName":"length","nodeType":"MemberAccess","src":"8632:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8618:38:43"},{"assignments":[13292],"declarations":[{"constant":false,"id":13292,"mutability":"mutable","name":"pos","nameLocation":"8674:3:43","nodeType":"VariableDeclaration","scope":13313,"src":"8666:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13291,"name":"uint256","nodeType":"ElementaryTypeName","src":"8666:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13300,"initialValue":{"arguments":[{"expression":{"id":13294,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8699:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8704:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8699:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13296,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13280,"src":"8718:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8723:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13298,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13286,"src":"8726:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_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":13293,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":13750,"src":"8680:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_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":13299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8680:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8666:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13301,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"8747:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13302,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13286,"src":"8754:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8747:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13306,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8778:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13307,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8783:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8778:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13308,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"8797:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13305,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"8764:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8764:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13310,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8802:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"8764:44:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8747:61:43","trueExpression":{"hexValue":"30","id":13304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8760:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13284,"id":13312,"nodeType":"Return","src":"8740:68:43"}]},"documentation":{"id":13275,"nodeType":"StructuredDocumentation","src":"8361:154:43","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":13314,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"8529:11:43","nodeType":"FunctionDefinition","parameters":{"id":13281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13278,"mutability":"mutable","name":"self","nameLocation":"8558:4:43","nodeType":"VariableDeclaration","scope":13314,"src":"8541:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13277,"nodeType":"UserDefinedTypeName","pathNode":{"id":13276,"name":"Trace208","nameLocations":["8541:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"8541:8:43"},"referencedDeclaration":13246,"src":"8541:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13280,"mutability":"mutable","name":"key","nameLocation":"8571:3:43","nodeType":"VariableDeclaration","scope":13314,"src":"8564:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13279,"name":"uint48","nodeType":"ElementaryTypeName","src":"8564:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"8540:35:43"},"returnParameters":{"id":13284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13314,"src":"8599:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13282,"name":"uint208","nodeType":"ElementaryTypeName","src":"8599:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8598:9:43"},"scope":14290,"src":"8520:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13355,"nodeType":"Block","src":"9070:209:43","statements":[{"assignments":[13326],"declarations":[{"constant":false,"id":13326,"mutability":"mutable","name":"len","nameLocation":"9088:3:43","nodeType":"VariableDeclaration","scope":13355,"src":"9080:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13325,"name":"uint256","nodeType":"ElementaryTypeName","src":"9080:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13330,"initialValue":{"expression":{"expression":{"id":13327,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9094:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13328,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9099:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9094:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9112:6:43","memberName":"length","nodeType":"MemberAccess","src":"9094:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9080:38:43"},{"assignments":[13332],"declarations":[{"constant":false,"id":13332,"mutability":"mutable","name":"pos","nameLocation":"9136:3:43","nodeType":"VariableDeclaration","scope":13355,"src":"9128:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13331,"name":"uint256","nodeType":"ElementaryTypeName","src":"9128:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13340,"initialValue":{"arguments":[{"expression":{"id":13334,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9161:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9166:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9161:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13336,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13320,"src":"9180:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9185:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13338,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13326,"src":"9188:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_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":13333,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13698,"src":"9142:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_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":13339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9142:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9128:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13341,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13332,"src":"9209:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9216:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9209:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13346,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9238:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9243:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9238:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13348,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13332,"src":"9257:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9263:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9257:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13345,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"9224:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9224:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9266:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"9224:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9209:63:43","trueExpression":{"hexValue":"30","id":13344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9220:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13324,"id":13354,"nodeType":"Return","src":"9202:70:43"}]},"documentation":{"id":13315,"nodeType":"StructuredDocumentation","src":"8821:156:43","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":13356,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"8991:11:43","nodeType":"FunctionDefinition","parameters":{"id":13321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13318,"mutability":"mutable","name":"self","nameLocation":"9020:4:43","nodeType":"VariableDeclaration","scope":13356,"src":"9003:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13317,"nodeType":"UserDefinedTypeName","pathNode":{"id":13316,"name":"Trace208","nameLocations":["9003:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9003:8:43"},"referencedDeclaration":13246,"src":"9003:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13320,"mutability":"mutable","name":"key","nameLocation":"9033:3:43","nodeType":"VariableDeclaration","scope":13356,"src":"9026:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13319,"name":"uint48","nodeType":"ElementaryTypeName","src":"9026:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9002:35:43"},"returnParameters":{"id":13324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13323,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13356,"src":"9061:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13322,"name":"uint208","nodeType":"ElementaryTypeName","src":"9061:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9060:9:43"},"scope":14290,"src":"8982:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13440,"nodeType":"Block","src":"9678:512:43","statements":[{"assignments":[13368],"declarations":[{"constant":false,"id":13368,"mutability":"mutable","name":"len","nameLocation":"9696:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"9688:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13367,"name":"uint256","nodeType":"ElementaryTypeName","src":"9688:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13372,"initialValue":{"expression":{"expression":{"id":13369,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"9702:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9707:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9702:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9720:6:43","memberName":"length","nodeType":"MemberAccess","src":"9702:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9688:38:43"},{"assignments":[13374],"declarations":[{"constant":false,"id":13374,"mutability":"mutable","name":"low","nameLocation":"9745:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"9737:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13373,"name":"uint256","nodeType":"ElementaryTypeName","src":"9737:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13376,"initialValue":{"hexValue":"30","id":13375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9751:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9737:15:43"},{"assignments":[13378],"declarations":[{"constant":false,"id":13378,"mutability":"mutable","name":"high","nameLocation":"9770:4:43","nodeType":"VariableDeclaration","scope":13440,"src":"9762:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13377,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13380,"initialValue":{"id":13379,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9777:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9762:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13381,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9795:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9801:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9795:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13415,"nodeType":"IfStatement","src":"9791:234:43","trueBody":{"id":13414,"nodeType":"Block","src":"9804:221:43","statements":[{"assignments":[13385],"declarations":[{"constant":false,"id":13385,"mutability":"mutable","name":"mid","nameLocation":"9826:3:43","nodeType":"VariableDeclaration","scope":13414,"src":"9818:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13384,"name":"uint256","nodeType":"ElementaryTypeName","src":"9818:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13392,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13386,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9832:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13389,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9848:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13387,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"9838:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9843:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"9838:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":13390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9838:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9832:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9818:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13393,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13362,"src":"9870:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":13395,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"9890:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13396,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9895:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9890:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13397,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9909:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13394,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"9876:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9914:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"9876:42:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9870:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13412,"nodeType":"Block","src":"9969:46:43","statements":[{"expression":{"id":13410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13406,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13374,"src":"9987:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13407,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9993:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9999:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9993:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9987:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13411,"nodeType":"ExpressionStatement","src":"9987:13:43"}]},"id":13413,"nodeType":"IfStatement","src":"9866:149:43","trueBody":{"id":13405,"nodeType":"Block","src":"9920:43:43","statements":[{"expression":{"id":13403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13401,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"9938:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13402,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9945:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9938:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13404,"nodeType":"ExpressionStatement","src":"9938:10:43"}]}}]}},{"assignments":[13417],"declarations":[{"constant":false,"id":13417,"mutability":"mutable","name":"pos","nameLocation":"10043:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"10035:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13416,"name":"uint256","nodeType":"ElementaryTypeName","src":"10035:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13425,"initialValue":{"arguments":[{"expression":{"id":13419,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"10068:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10073:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10068:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13421,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13362,"src":"10087:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13422,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13374,"src":"10092:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13423,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"10097:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_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":13418,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13698,"src":"10049:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_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":13424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10049:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10035:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13426,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13417,"src":"10120:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10127:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10120:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13431,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"10149:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10154:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10149:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13433,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13417,"src":"10168:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10174:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10168:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13430,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10135:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10135:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10177:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"10135:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10120:63:43","trueExpression":{"hexValue":"30","id":13429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13366,"id":13439,"nodeType":"Return","src":"10113:70:43"}]},"documentation":{"id":13357,"nodeType":"StructuredDocumentation","src":"9285:294:43","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":13441,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"9593:17:43","nodeType":"FunctionDefinition","parameters":{"id":13363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13360,"mutability":"mutable","name":"self","nameLocation":"9628:4:43","nodeType":"VariableDeclaration","scope":13441,"src":"9611:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13359,"nodeType":"UserDefinedTypeName","pathNode":{"id":13358,"name":"Trace208","nameLocations":["9611:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9611:8:43"},"referencedDeclaration":13246,"src":"9611:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13362,"mutability":"mutable","name":"key","nameLocation":"9641:3:43","nodeType":"VariableDeclaration","scope":13441,"src":"9634:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13361,"name":"uint48","nodeType":"ElementaryTypeName","src":"9634:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9610:35:43"},"returnParameters":{"id":13366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13441,"src":"9669:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13364,"name":"uint208","nodeType":"ElementaryTypeName","src":"9669:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9668:9:43"},"scope":14290,"src":"9584:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13470,"nodeType":"Block","src":"10381:135:43","statements":[{"assignments":[13451],"declarations":[{"constant":false,"id":13451,"mutability":"mutable","name":"pos","nameLocation":"10399:3:43","nodeType":"VariableDeclaration","scope":13470,"src":"10391:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13450,"name":"uint256","nodeType":"ElementaryTypeName","src":"10391:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13455,"initialValue":{"expression":{"expression":{"id":13452,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13445,"src":"10405:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10410:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10405:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10423:6:43","memberName":"length","nodeType":"MemberAccess","src":"10405:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10391:38:43"},{"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":13451,"src":"10446:3:43","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":"10453:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10446:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13461,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13445,"src":"10475:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13462,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10480:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10475:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 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":13451,"src":"10494:3:43","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":"10500:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10494:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13460,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10461:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10461:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13467,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10503:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"10461:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10446:63:43","trueExpression":{"hexValue":"30","id":13459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10457:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13449,"id":13469,"nodeType":"Return","src":"10439:70:43"}]},"documentation":{"id":13442,"nodeType":"StructuredDocumentation","src":"10196:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":13471,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"10319:6:43","nodeType":"FunctionDefinition","parameters":{"id":13446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13445,"mutability":"mutable","name":"self","nameLocation":"10343:4:43","nodeType":"VariableDeclaration","scope":13471,"src":"10326:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13444,"nodeType":"UserDefinedTypeName","pathNode":{"id":13443,"name":"Trace208","nameLocations":["10326:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"10326:8:43"},"referencedDeclaration":13246,"src":"10326:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10325:23:43"},"returnParameters":{"id":13449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13448,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13471,"src":"10372:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13447,"name":"uint208","nodeType":"ElementaryTypeName","src":"10372:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10371:9:43"},"scope":14290,"src":"10310:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13519,"nodeType":"Block","src":"10809:275:43","statements":[{"assignments":[13485],"declarations":[{"constant":false,"id":13485,"mutability":"mutable","name":"pos","nameLocation":"10827:3:43","nodeType":"VariableDeclaration","scope":13519,"src":"10819:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13484,"name":"uint256","nodeType":"ElementaryTypeName","src":"10819:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13489,"initialValue":{"expression":{"expression":{"id":13486,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"10833:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13487,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10838:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10833:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10851:6:43","memberName":"length","nodeType":"MemberAccess","src":"10833:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10819:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13490,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13485,"src":"10871:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10878:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10871:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13517,"nodeType":"Block","src":"10932:146:43","statements":[{"assignments":[13501],"declarations":[{"constant":false,"id":13501,"mutability":"mutable","name":"ckpt","nameLocation":"10968:4:43","nodeType":"VariableDeclaration","scope":13517,"src":"10946:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13500,"nodeType":"UserDefinedTypeName","pathNode":{"id":13499,"name":"Checkpoint208","nameLocations":["10946:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"10946:13:43"},"referencedDeclaration":13251,"src":"10946:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":13509,"initialValue":{"arguments":[{"expression":{"id":13503,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"10989:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13504,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10994:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10989:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13505,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13485,"src":"11008:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11014:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11008:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13502,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10975:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10975:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10946:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":13510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11038:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":13511,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13501,"src":"11044:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11049:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"11044:9:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"expression":{"id":13513,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13501,"src":"11055:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11060:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"11055:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13515,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11037:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint48_$_t_uint208_$","typeString":"tuple(bool,uint48,uint208)"}},"functionReturnParameters":13483,"id":13516,"nodeType":"Return","src":"11030:37:43"}]},"id":13518,"nodeType":"IfStatement","src":"10867:211:43","trueBody":{"id":13498,"nodeType":"Block","src":"10881:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":13493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10903:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":13494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10910:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":13495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10913:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":13496,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10902:13:43","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":13483,"id":13497,"nodeType":"Return","src":"10895:20:43"}]}}]},"documentation":{"id":13472,"nodeType":"StructuredDocumentation","src":"10522:168:43","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":13520,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"10704:16:43","nodeType":"FunctionDefinition","parameters":{"id":13476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13475,"mutability":"mutable","name":"self","nameLocation":"10738:4:43","nodeType":"VariableDeclaration","scope":13520,"src":"10721:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13474,"nodeType":"UserDefinedTypeName","pathNode":{"id":13473,"name":"Trace208","nameLocations":["10721:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"10721:8:43"},"referencedDeclaration":13246,"src":"10721:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10720:23:43"},"returnParameters":{"id":13483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13478,"mutability":"mutable","name":"exists","nameLocation":"10772:6:43","nodeType":"VariableDeclaration","scope":13520,"src":"10767:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13477,"name":"bool","nodeType":"ElementaryTypeName","src":"10767:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":13480,"mutability":"mutable","name":"_key","nameLocation":"10787:4:43","nodeType":"VariableDeclaration","scope":13520,"src":"10780:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13479,"name":"uint48","nodeType":"ElementaryTypeName","src":"10780:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13482,"mutability":"mutable","name":"_value","nameLocation":"10801:6:43","nodeType":"VariableDeclaration","scope":13520,"src":"10793:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13481,"name":"uint208","nodeType":"ElementaryTypeName","src":"10793:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10766:42:43"},"scope":14290,"src":"10695:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13533,"nodeType":"Block","src":"11223:48:43","statements":[{"expression":{"expression":{"expression":{"id":13529,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13524,"src":"11240:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11245:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"11240:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11258:6:43","memberName":"length","nodeType":"MemberAccess","src":"11240:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13528,"id":13532,"nodeType":"Return","src":"11233:31:43"}]},"documentation":{"id":13521,"nodeType":"StructuredDocumentation","src":"11090:57:43","text":" @dev Returns the number of checkpoint."},"id":13534,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"11161:6:43","nodeType":"FunctionDefinition","parameters":{"id":13525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13524,"mutability":"mutable","name":"self","nameLocation":"11185:4:43","nodeType":"VariableDeclaration","scope":13534,"src":"11168:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13523,"nodeType":"UserDefinedTypeName","pathNode":{"id":13522,"name":"Trace208","nameLocations":["11168:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"11168:8:43"},"referencedDeclaration":13246,"src":"11168:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"11167:23:43"},"returnParameters":{"id":13528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13527,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13534,"src":"11214:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13526,"name":"uint256","nodeType":"ElementaryTypeName","src":"11214:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11213:9:43"},"scope":14290,"src":"11152:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13551,"nodeType":"Block","src":"11435:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":13546,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13538,"src":"11452:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11457:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"11452:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13549,"indexExpression":{"id":13548,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13540,"src":"11470:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11452:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref"}},"functionReturnParameters":13545,"id":13550,"nodeType":"Return","src":"11445:29:43"}]},"documentation":{"id":13535,"nodeType":"StructuredDocumentation","src":"11277:61:43","text":" @dev Returns checkpoint at given position."},"id":13552,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"11352:2:43","nodeType":"FunctionDefinition","parameters":{"id":13541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13538,"mutability":"mutable","name":"self","nameLocation":"11372:4:43","nodeType":"VariableDeclaration","scope":13552,"src":"11355:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13537,"nodeType":"UserDefinedTypeName","pathNode":{"id":13536,"name":"Trace208","nameLocations":["11355:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"11355:8:43"},"referencedDeclaration":13246,"src":"11355:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13540,"mutability":"mutable","name":"pos","nameLocation":"11385:3:43","nodeType":"VariableDeclaration","scope":13552,"src":"11378:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13539,"name":"uint32","nodeType":"ElementaryTypeName","src":"11378:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11354:35:43"},"returnParameters":{"id":13545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13552,"src":"11413:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13543,"nodeType":"UserDefinedTypeName","pathNode":{"id":13542,"name":"Checkpoint208","nameLocations":["11413:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11413:13:43"},"referencedDeclaration":13251,"src":"11413:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"11412:22:43"},"scope":14290,"src":"11343:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13645,"nodeType":"Block","src":"11814:765:43","statements":[{"assignments":[13569],"declarations":[{"constant":false,"id":13569,"mutability":"mutable","name":"pos","nameLocation":"11832:3:43","nodeType":"VariableDeclaration","scope":13645,"src":"11824:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13568,"name":"uint256","nodeType":"ElementaryTypeName","src":"11824:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13572,"initialValue":{"expression":{"id":13570,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"11838:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11843:6:43","memberName":"length","nodeType":"MemberAccess","src":"11838:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11824:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13573,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13569,"src":"11864:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":13574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11870:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11864:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13643,"nodeType":"Block","src":"12465:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13634,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12510:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12523:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13633,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13251,"src":"12489:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12504:4:43","12515:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12489:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":13630,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"12479:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12484:4:43","memberName":"push","nodeType":"MemberAccess","src":"12479:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13251_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":13637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13638,"nodeType":"ExpressionStatement","src":"12479:52:43"},{"expression":{"components":[{"hexValue":"30","id":13639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12553:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13640,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12556:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13641,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12552:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint208_$","typeString":"tuple(int_const 0,uint208)"}},"functionReturnParameters":13567,"id":13642,"nodeType":"Return","src":"12545:17:43"}]},"id":13644,"nodeType":"IfStatement","src":"11860:713:43","trueBody":{"id":13629,"nodeType":"Block","src":"11873:586:43","statements":[{"assignments":[13578],"declarations":[{"constant":false,"id":13578,"mutability":"mutable","name":"last","nameLocation":"11909:4:43","nodeType":"VariableDeclaration","scope":13629,"src":"11887:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13577,"nodeType":"UserDefinedTypeName","pathNode":{"id":13576,"name":"Checkpoint208","nameLocations":["11887:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11887:13:43"},"referencedDeclaration":13251,"src":"11887:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":13585,"initialValue":{"arguments":[{"id":13580,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"11930:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13581,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13569,"src":"11936:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11942:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11936:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13579,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"11916:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11916:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11887:57:43"},{"assignments":[13587],"declarations":[{"constant":false,"id":13587,"mutability":"mutable","name":"lastKey","nameLocation":"11965:7:43","nodeType":"VariableDeclaration","scope":13629,"src":"11958:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13586,"name":"uint48","nodeType":"ElementaryTypeName","src":"11958:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":13590,"initialValue":{"expression":{"id":13588,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"11975:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11980:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"11975:9:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"11958:26:43"},{"assignments":[13592],"declarations":[{"constant":false,"id":13592,"mutability":"mutable","name":"lastValue","nameLocation":"12006:9:43","nodeType":"VariableDeclaration","scope":13629,"src":"11998:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13591,"name":"uint208","nodeType":"ElementaryTypeName","src":"11998:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":13595,"initialValue":{"expression":{"id":13593,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"12018:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13594,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12023:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"12018:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"VariableDeclarationStatement","src":"11998:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13596,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13587,"src":"12103:7:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13597,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12113:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12103:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13603,"nodeType":"IfStatement","src":"12099:89:43","trueBody":{"id":13602,"nodeType":"Block","src":"12118:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13599,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"12143:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":13600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12143:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13601,"nodeType":"RevertStatement","src":"12136:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13604,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13587,"src":"12251:7:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13605,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12262:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12251:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13623,"nodeType":"Block","src":"12325:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13618,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12374:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13619,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12387:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13617,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13251,"src":"12353:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12368:4:43","12379:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12353:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":13614,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"12343:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12348:4:43","memberName":"push","nodeType":"MemberAccess","src":"12343:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13251_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":13621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12343:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13622,"nodeType":"ExpressionStatement","src":"12343:52:43"}]},"id":13624,"nodeType":"IfStatement","src":"12247:163:43","trueBody":{"id":13613,"nodeType":"Block","src":"12267:52:43","statements":[{"expression":{"id":13611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13607,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"12285:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12290:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"12285:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13610,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12299:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"12285:19:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13612,"nodeType":"ExpressionStatement","src":"12285:19:43"}]}},{"expression":{"components":[{"id":13625,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13592,"src":"12431:9:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":13626,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12442:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13627,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12430:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":13567,"id":13628,"nodeType":"Return","src":"12423:25:43"}]}}]},"documentation":{"id":13553,"nodeType":"StructuredDocumentation","src":"11487:165:43","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":13646,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"11666:7:43","nodeType":"FunctionDefinition","parameters":{"id":13562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13557,"mutability":"mutable","name":"self","nameLocation":"11707:4:43","nodeType":"VariableDeclaration","scope":13646,"src":"11683:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13555,"nodeType":"UserDefinedTypeName","pathNode":{"id":13554,"name":"Checkpoint208","nameLocations":["11683:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11683:13:43"},"referencedDeclaration":13251,"src":"11683:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13556,"nodeType":"ArrayTypeName","src":"11683:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13559,"mutability":"mutable","name":"key","nameLocation":"11728:3:43","nodeType":"VariableDeclaration","scope":13646,"src":"11721:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13558,"name":"uint48","nodeType":"ElementaryTypeName","src":"11721:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13561,"mutability":"mutable","name":"value","nameLocation":"11749:5:43","nodeType":"VariableDeclaration","scope":13646,"src":"11741:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13560,"name":"uint208","nodeType":"ElementaryTypeName","src":"11741:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11673:87:43"},"returnParameters":{"id":13567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13564,"mutability":"mutable","name":"oldValue","nameLocation":"11786:8:43","nodeType":"VariableDeclaration","scope":13646,"src":"11778:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13563,"name":"uint208","nodeType":"ElementaryTypeName","src":"11778:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":13566,"mutability":"mutable","name":"newValue","nameLocation":"11804:8:43","nodeType":"VariableDeclaration","scope":13646,"src":"11796:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13565,"name":"uint208","nodeType":"ElementaryTypeName","src":"11796:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11777:36:43"},"scope":14290,"src":"11657:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":13697,"nodeType":"Block","src":"13095:267:43","statements":[{"body":{"id":13693,"nodeType":"Block","src":"13124:211:43","statements":[{"assignments":[13666],"declarations":[{"constant":false,"id":13666,"mutability":"mutable","name":"mid","nameLocation":"13146:3:43","nodeType":"VariableDeclaration","scope":13693,"src":"13138:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13665,"name":"uint256","nodeType":"ElementaryTypeName","src":"13138:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13672,"initialValue":{"arguments":[{"id":13669,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13165:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13670,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13170:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13667,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"13152:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13157:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"13152:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13152:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13138:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13674,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"13207:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":13675,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13213:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13673,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"13193:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13193:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13677,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13218:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"13193:29:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13678,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13653,"src":"13225:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13193:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13691,"nodeType":"Block","src":"13279:46:43","statements":[{"expression":{"id":13689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13685,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13297:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13686,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13303:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13309:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"13303:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13297:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13690,"nodeType":"ExpressionStatement","src":"13297:13:43"}]},"id":13692,"nodeType":"IfStatement","src":"13189:136:43","trueBody":{"id":13684,"nodeType":"Block","src":"13230:43:43","statements":[{"expression":{"id":13682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13680,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13248:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13681,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13255:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13248:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13683,"nodeType":"ExpressionStatement","src":"13248:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13662,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13112:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13663,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13118:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13112:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13694,"nodeType":"WhileStatement","src":"13105:230:43"},{"expression":{"id":13695,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13351:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13661,"id":13696,"nodeType":"Return","src":"13344:11:43"}]},"documentation":{"id":13647,"nodeType":"StructuredDocumentation","src":"12585:339:43","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":13698,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"12938:18:43","nodeType":"FunctionDefinition","parameters":{"id":13658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13651,"mutability":"mutable","name":"self","nameLocation":"12990:4:43","nodeType":"VariableDeclaration","scope":13698,"src":"12966:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13649,"nodeType":"UserDefinedTypeName","pathNode":{"id":13648,"name":"Checkpoint208","nameLocations":["12966:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"12966:13:43"},"referencedDeclaration":13251,"src":"12966:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13650,"nodeType":"ArrayTypeName","src":"12966:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13653,"mutability":"mutable","name":"key","nameLocation":"13011:3:43","nodeType":"VariableDeclaration","scope":13698,"src":"13004:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13652,"name":"uint48","nodeType":"ElementaryTypeName","src":"13004:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13655,"mutability":"mutable","name":"low","nameLocation":"13032:3:43","nodeType":"VariableDeclaration","scope":13698,"src":"13024:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13654,"name":"uint256","nodeType":"ElementaryTypeName","src":"13024:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13657,"mutability":"mutable","name":"high","nameLocation":"13053:4:43","nodeType":"VariableDeclaration","scope":13698,"src":"13045:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13656,"name":"uint256","nodeType":"ElementaryTypeName","src":"13045:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12956:107:43"},"returnParameters":{"id":13661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13660,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13698,"src":"13086:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13659,"name":"uint256","nodeType":"ElementaryTypeName","src":"13086:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13085:9:43"},"scope":14290,"src":"12929:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13749,"nodeType":"Block","src":"13879:267:43","statements":[{"body":{"id":13745,"nodeType":"Block","src":"13908:211:43","statements":[{"assignments":[13718],"declarations":[{"constant":false,"id":13718,"mutability":"mutable","name":"mid","nameLocation":"13930:3:43","nodeType":"VariableDeclaration","scope":13745,"src":"13922:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13717,"name":"uint256","nodeType":"ElementaryTypeName","src":"13922:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13724,"initialValue":{"arguments":[{"id":13721,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"13949:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13722,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"13954:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13719,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"13936:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13941:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"13936:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13936:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13922:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13726,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13703,"src":"13991:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":13727,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"13997:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13725,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"13977:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13977:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13729,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14002:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"13977:29:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13730,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13705,"src":"14009:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13977:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13743,"nodeType":"Block","src":"14066:43:43","statements":[{"expression":{"id":13741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13739,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"14084:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13740,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"14091:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14084:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13742,"nodeType":"ExpressionStatement","src":"14084:10:43"}]},"id":13744,"nodeType":"IfStatement","src":"13973:136:43","trueBody":{"id":13738,"nodeType":"Block","src":"14014:46:43","statements":[{"expression":{"id":13736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13732,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"14032:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13733,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"14038:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14044:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14038:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14032:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13737,"nodeType":"ExpressionStatement","src":"14032:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13714,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"13896:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13715,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"13902:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13896:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13746,"nodeType":"WhileStatement","src":"13889:230:43"},{"expression":{"id":13747,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"14135:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13713,"id":13748,"nodeType":"Return","src":"14128:11:43"}]},"documentation":{"id":13699,"nodeType":"StructuredDocumentation","src":"13368:340:43","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":13750,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"13722:18:43","nodeType":"FunctionDefinition","parameters":{"id":13710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13703,"mutability":"mutable","name":"self","nameLocation":"13774:4:43","nodeType":"VariableDeclaration","scope":13750,"src":"13750:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13701,"nodeType":"UserDefinedTypeName","pathNode":{"id":13700,"name":"Checkpoint208","nameLocations":["13750:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"13750:13:43"},"referencedDeclaration":13251,"src":"13750:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13702,"nodeType":"ArrayTypeName","src":"13750:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13705,"mutability":"mutable","name":"key","nameLocation":"13795:3:43","nodeType":"VariableDeclaration","scope":13750,"src":"13788:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13704,"name":"uint48","nodeType":"ElementaryTypeName","src":"13788:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13707,"mutability":"mutable","name":"low","nameLocation":"13816:3:43","nodeType":"VariableDeclaration","scope":13750,"src":"13808:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13706,"name":"uint256","nodeType":"ElementaryTypeName","src":"13808:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13709,"mutability":"mutable","name":"high","nameLocation":"13837:4:43","nodeType":"VariableDeclaration","scope":13750,"src":"13829:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13708,"name":"uint256","nodeType":"ElementaryTypeName","src":"13829:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13740:107:43"},"returnParameters":{"id":13713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13750,"src":"13870:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13711,"name":"uint256","nodeType":"ElementaryTypeName","src":"13870:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13869:9:43"},"scope":14290,"src":"13713:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13764,"nodeType":"Block","src":"14429:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"14448:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14469:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"14472:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14462:6:43"},"nodeType":"YulFunctionCall","src":"14462:20:43"},"nodeType":"YulExpressionStatement","src":"14462:20:43"},{"nodeType":"YulAssignment","src":"14495:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14524:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"14527:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"14514:9:43"},"nodeType":"YulFunctionCall","src":"14514:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"14534:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14510:3:43"},"nodeType":"YulFunctionCall","src":"14510:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"14495:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13757,"isOffset":false,"isSlot":false,"src":"14534:3:43","valueSize":1},{"declaration":13761,"isOffset":false,"isSlot":true,"src":"14495:11:43","suffix":"slot","valueSize":1},{"declaration":13755,"isOffset":false,"isSlot":true,"src":"14472:9:43","suffix":"slot","valueSize":1}],"id":13763,"nodeType":"InlineAssembly","src":"14439:109:43"}]},"documentation":{"id":13751,"nodeType":"StructuredDocumentation","src":"14152:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":13765,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"14298:13:43","nodeType":"FunctionDefinition","parameters":{"id":13758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13755,"mutability":"mutable","name":"self","nameLocation":"14345:4:43","nodeType":"VariableDeclaration","scope":13765,"src":"14321:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13753,"nodeType":"UserDefinedTypeName","pathNode":{"id":13752,"name":"Checkpoint208","nameLocations":["14321:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"14321:13:43"},"referencedDeclaration":13251,"src":"14321:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13754,"nodeType":"ArrayTypeName","src":"14321:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13757,"mutability":"mutable","name":"pos","nameLocation":"14367:3:43","nodeType":"VariableDeclaration","scope":13765,"src":"14359:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13756,"name":"uint256","nodeType":"ElementaryTypeName","src":"14359:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14311:65:43"},"returnParameters":{"id":13762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13761,"mutability":"mutable","name":"result","nameLocation":"14421:6:43","nodeType":"VariableDeclaration","scope":13765,"src":"14399:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13760,"nodeType":"UserDefinedTypeName","pathNode":{"id":13759,"name":"Checkpoint208","nameLocations":["14399:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"14399:13:43"},"referencedDeclaration":13251,"src":"14399:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"14398:30:43"},"scope":14290,"src":"14289:265:43","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace160","id":13770,"members":[{"constant":false,"id":13769,"mutability":"mutable","name":"_checkpoints","nameLocation":"14602:12:43","nodeType":"VariableDeclaration","scope":13770,"src":"14586:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":13767,"nodeType":"UserDefinedTypeName","pathNode":{"id":13766,"name":"Checkpoint160","nameLocations":["14586:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"14586:13:43"},"referencedDeclaration":13775,"src":"14586:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":13768,"nodeType":"ArrayTypeName","src":"14586:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"}],"name":"Trace160","nameLocation":"14567:8:43","nodeType":"StructDefinition","scope":14290,"src":"14560:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint160","id":13775,"members":[{"constant":false,"id":13772,"mutability":"mutable","name":"_key","nameLocation":"14665:4:43","nodeType":"VariableDeclaration","scope":13775,"src":"14658:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13771,"name":"uint96","nodeType":"ElementaryTypeName","src":"14658:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13774,"mutability":"mutable","name":"_value","nameLocation":"14687:6:43","nodeType":"VariableDeclaration","scope":13775,"src":"14679:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13773,"name":"uint160","nodeType":"ElementaryTypeName","src":"14679:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"name":"Checkpoint160","nameLocation":"14634:13:43","nodeType":"StructDefinition","scope":14290,"src":"14627:73:43","visibility":"public"},{"body":{"id":13797,"nodeType":"Block","src":"15161:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":13791,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13779,"src":"15186:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15191:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15186:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13793,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13781,"src":"15205:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":13794,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13783,"src":"15210:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":13790,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":14170,"src":"15178:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_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":13795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15178:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":13789,"id":13796,"nodeType":"Return","src":"15171:45:43"}]},"documentation":{"id":13776,"nodeType":"StructuredDocumentation","src":"14706:302:43","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":13798,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"15022:4:43","nodeType":"FunctionDefinition","parameters":{"id":13784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13779,"mutability":"mutable","name":"self","nameLocation":"15053:4:43","nodeType":"VariableDeclaration","scope":13798,"src":"15036:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13778,"nodeType":"UserDefinedTypeName","pathNode":{"id":13777,"name":"Trace160","nameLocations":["15036:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15036:8:43"},"referencedDeclaration":13770,"src":"15036:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13781,"mutability":"mutable","name":"key","nameLocation":"15074:3:43","nodeType":"VariableDeclaration","scope":13798,"src":"15067:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13780,"name":"uint96","nodeType":"ElementaryTypeName","src":"15067:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13783,"mutability":"mutable","name":"value","nameLocation":"15095:5:43","nodeType":"VariableDeclaration","scope":13798,"src":"15087:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13782,"name":"uint160","nodeType":"ElementaryTypeName","src":"15087:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15026:80:43"},"returnParameters":{"id":13789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13786,"mutability":"mutable","name":"oldValue","nameLocation":"15133:8:43","nodeType":"VariableDeclaration","scope":13798,"src":"15125:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13785,"name":"uint160","nodeType":"ElementaryTypeName","src":"15125:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":13788,"mutability":"mutable","name":"newValue","nameLocation":"15151:8:43","nodeType":"VariableDeclaration","scope":13798,"src":"15143:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13787,"name":"uint160","nodeType":"ElementaryTypeName","src":"15143:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15124:36:43"},"scope":14290,"src":"15013:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13837,"nodeType":"Block","src":"15476:207:43","statements":[{"assignments":[13810],"declarations":[{"constant":false,"id":13810,"mutability":"mutable","name":"len","nameLocation":"15494:3:43","nodeType":"VariableDeclaration","scope":13837,"src":"15486:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13809,"name":"uint256","nodeType":"ElementaryTypeName","src":"15486:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13814,"initialValue":{"expression":{"expression":{"id":13811,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15500:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13812,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15505:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15500:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15518:6:43","memberName":"length","nodeType":"MemberAccess","src":"15500:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15486:38:43"},{"assignments":[13816],"declarations":[{"constant":false,"id":13816,"mutability":"mutable","name":"pos","nameLocation":"15542:3:43","nodeType":"VariableDeclaration","scope":13837,"src":"15534:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13815,"name":"uint256","nodeType":"ElementaryTypeName","src":"15534:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13824,"initialValue":{"arguments":[{"expression":{"id":13818,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15567:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13819,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15572:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15567:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13820,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13804,"src":"15586:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":13821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15591:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13822,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"15594:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_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":13817,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":14274,"src":"15548:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_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":13823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15548:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15534:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13825,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13816,"src":"15615:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13826,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"15622:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15615:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13830,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15646:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13831,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15651:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15646:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13832,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13816,"src":"15665:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13829,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"15632:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15632:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15670:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"15632:44:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"15615:61:43","trueExpression":{"hexValue":"30","id":13828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15628:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13808,"id":13836,"nodeType":"Return","src":"15608:68:43"}]},"documentation":{"id":13799,"nodeType":"StructuredDocumentation","src":"15229:154:43","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":13838,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"15397:11:43","nodeType":"FunctionDefinition","parameters":{"id":13805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13802,"mutability":"mutable","name":"self","nameLocation":"15426:4:43","nodeType":"VariableDeclaration","scope":13838,"src":"15409:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13801,"nodeType":"UserDefinedTypeName","pathNode":{"id":13800,"name":"Trace160","nameLocations":["15409:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15409:8:43"},"referencedDeclaration":13770,"src":"15409:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13804,"mutability":"mutable","name":"key","nameLocation":"15439:3:43","nodeType":"VariableDeclaration","scope":13838,"src":"15432:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13803,"name":"uint96","nodeType":"ElementaryTypeName","src":"15432:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15408:35:43"},"returnParameters":{"id":13808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13807,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13838,"src":"15467:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13806,"name":"uint160","nodeType":"ElementaryTypeName","src":"15467:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15466:9:43"},"scope":14290,"src":"15388:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13879,"nodeType":"Block","src":"15938:209:43","statements":[{"assignments":[13850],"declarations":[{"constant":false,"id":13850,"mutability":"mutable","name":"len","nameLocation":"15956:3:43","nodeType":"VariableDeclaration","scope":13879,"src":"15948:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13849,"name":"uint256","nodeType":"ElementaryTypeName","src":"15948:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13854,"initialValue":{"expression":{"expression":{"id":13851,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"15962:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13852,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15967:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15962:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15980:6:43","memberName":"length","nodeType":"MemberAccess","src":"15962:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15948:38:43"},{"assignments":[13856],"declarations":[{"constant":false,"id":13856,"mutability":"mutable","name":"pos","nameLocation":"16004:3:43","nodeType":"VariableDeclaration","scope":13879,"src":"15996:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13855,"name":"uint256","nodeType":"ElementaryTypeName","src":"15996:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13864,"initialValue":{"arguments":[{"expression":{"id":13858,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"16029:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13859,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16034:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16029:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13860,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13844,"src":"16048:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":13861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16053:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13862,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13850,"src":"16056:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_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":13857,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":14222,"src":"16010:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_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":13863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16010:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15996:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13865,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"16077:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16084:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16077:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13870,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"16106:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13871,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16111:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16106:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13872,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"16125:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16125:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13869,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"16092:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16092:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13876,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16134:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"16092:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16077:63:43","trueExpression":{"hexValue":"30","id":13868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16088:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13848,"id":13878,"nodeType":"Return","src":"16070:70:43"}]},"documentation":{"id":13839,"nodeType":"StructuredDocumentation","src":"15689:156:43","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":13880,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"15859:11:43","nodeType":"FunctionDefinition","parameters":{"id":13845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13842,"mutability":"mutable","name":"self","nameLocation":"15888:4:43","nodeType":"VariableDeclaration","scope":13880,"src":"15871:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13841,"nodeType":"UserDefinedTypeName","pathNode":{"id":13840,"name":"Trace160","nameLocations":["15871:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15871:8:43"},"referencedDeclaration":13770,"src":"15871:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13844,"mutability":"mutable","name":"key","nameLocation":"15901:3:43","nodeType":"VariableDeclaration","scope":13880,"src":"15894:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13843,"name":"uint96","nodeType":"ElementaryTypeName","src":"15894:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15870:35:43"},"returnParameters":{"id":13848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13880,"src":"15929:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13846,"name":"uint160","nodeType":"ElementaryTypeName","src":"15929:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15928:9:43"},"scope":14290,"src":"15850:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13964,"nodeType":"Block","src":"16546:512:43","statements":[{"assignments":[13892],"declarations":[{"constant":false,"id":13892,"mutability":"mutable","name":"len","nameLocation":"16564:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16556:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13891,"name":"uint256","nodeType":"ElementaryTypeName","src":"16556:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13896,"initialValue":{"expression":{"expression":{"id":13893,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16570:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16575:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16570:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16588:6:43","memberName":"length","nodeType":"MemberAccess","src":"16570:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16556:38:43"},{"assignments":[13898],"declarations":[{"constant":false,"id":13898,"mutability":"mutable","name":"low","nameLocation":"16613:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16605:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13897,"name":"uint256","nodeType":"ElementaryTypeName","src":"16605:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13900,"initialValue":{"hexValue":"30","id":13899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16619:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"16605:15:43"},{"assignments":[13902],"declarations":[{"constant":false,"id":13902,"mutability":"mutable","name":"high","nameLocation":"16638:4:43","nodeType":"VariableDeclaration","scope":13964,"src":"16630:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13901,"name":"uint256","nodeType":"ElementaryTypeName","src":"16630:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13904,"initialValue":{"id":13903,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16645:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16630:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13905,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16663:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16669:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"16663:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13939,"nodeType":"IfStatement","src":"16659:234:43","trueBody":{"id":13938,"nodeType":"Block","src":"16672:221:43","statements":[{"assignments":[13909],"declarations":[{"constant":false,"id":13909,"mutability":"mutable","name":"mid","nameLocation":"16694:3:43","nodeType":"VariableDeclaration","scope":13938,"src":"16686:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13908,"name":"uint256","nodeType":"ElementaryTypeName","src":"16686:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13916,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13910,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16700:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13913,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16716:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13911,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"16706:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16711:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"16706:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":13914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16706:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16700:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16686:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":13924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13917,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13886,"src":"16738:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":13919,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16758:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13920,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16763:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16758:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13921,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16777:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13918,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"16744:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16744:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13923,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16782:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"16744:42:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"16738:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13936,"nodeType":"Block","src":"16837:46:43","statements":[{"expression":{"id":13934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13930,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13898,"src":"16855:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13931,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16861:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16867:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16861:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16855:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13935,"nodeType":"ExpressionStatement","src":"16855:13:43"}]},"id":13937,"nodeType":"IfStatement","src":"16734:149:43","trueBody":{"id":13929,"nodeType":"Block","src":"16788:43:43","statements":[{"expression":{"id":13927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13925,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13902,"src":"16806:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13926,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16813:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16806:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13928,"nodeType":"ExpressionStatement","src":"16806:10:43"}]}}]}},{"assignments":[13941],"declarations":[{"constant":false,"id":13941,"mutability":"mutable","name":"pos","nameLocation":"16911:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16903:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13940,"name":"uint256","nodeType":"ElementaryTypeName","src":"16903:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13949,"initialValue":{"arguments":[{"expression":{"id":13943,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16936:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13944,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16941:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16936:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13945,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13886,"src":"16955:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":13946,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13898,"src":"16960:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13947,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13902,"src":"16965:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_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":13942,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":14222,"src":"16917:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_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":13948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16917:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16903:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13950,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13941,"src":"16988:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16995:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16988:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13955,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"17017:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13956,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17022:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17017:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13957,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13941,"src":"17036:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17042:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17036:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13954,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17003:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17003:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13961,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17045:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17003:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16988:63:43","trueExpression":{"hexValue":"30","id":13953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16999:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13890,"id":13963,"nodeType":"Return","src":"16981:70:43"}]},"documentation":{"id":13881,"nodeType":"StructuredDocumentation","src":"16153:294:43","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":13965,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"16461:17:43","nodeType":"FunctionDefinition","parameters":{"id":13887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13884,"mutability":"mutable","name":"self","nameLocation":"16496:4:43","nodeType":"VariableDeclaration","scope":13965,"src":"16479:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13883,"nodeType":"UserDefinedTypeName","pathNode":{"id":13882,"name":"Trace160","nameLocations":["16479:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"16479:8:43"},"referencedDeclaration":13770,"src":"16479:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13886,"mutability":"mutable","name":"key","nameLocation":"16509:3:43","nodeType":"VariableDeclaration","scope":13965,"src":"16502:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13885,"name":"uint96","nodeType":"ElementaryTypeName","src":"16502:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"16478:35:43"},"returnParameters":{"id":13890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13889,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13965,"src":"16537:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13888,"name":"uint160","nodeType":"ElementaryTypeName","src":"16537:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"16536:9:43"},"scope":14290,"src":"16452:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13994,"nodeType":"Block","src":"17249:135:43","statements":[{"assignments":[13975],"declarations":[{"constant":false,"id":13975,"mutability":"mutable","name":"pos","nameLocation":"17267:3:43","nodeType":"VariableDeclaration","scope":13994,"src":"17259:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13974,"name":"uint256","nodeType":"ElementaryTypeName","src":"17259:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13979,"initialValue":{"expression":{"expression":{"id":13976,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13969,"src":"17273:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13977,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17278:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17273:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17291:6:43","memberName":"length","nodeType":"MemberAccess","src":"17273:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17259:38:43"},{"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":13975,"src":"17314:3:43","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":"17321:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17314:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13985,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13969,"src":"17343:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13986,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17348:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17343:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 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":13975,"src":"17362:3:43","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":"17368:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17362:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13984,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17329:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17329:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13991,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17371:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17329:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17314:63:43","trueExpression":{"hexValue":"30","id":13983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17325:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13973,"id":13993,"nodeType":"Return","src":"17307:70:43"}]},"documentation":{"id":13966,"nodeType":"StructuredDocumentation","src":"17064:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":13995,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"17187:6:43","nodeType":"FunctionDefinition","parameters":{"id":13970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13969,"mutability":"mutable","name":"self","nameLocation":"17211:4:43","nodeType":"VariableDeclaration","scope":13995,"src":"17194:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13968,"nodeType":"UserDefinedTypeName","pathNode":{"id":13967,"name":"Trace160","nameLocations":["17194:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"17194:8:43"},"referencedDeclaration":13770,"src":"17194:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17193:23:43"},"returnParameters":{"id":13973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13972,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13995,"src":"17240:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13971,"name":"uint160","nodeType":"ElementaryTypeName","src":"17240:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17239:9:43"},"scope":14290,"src":"17178:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14043,"nodeType":"Block","src":"17677:275:43","statements":[{"assignments":[14009],"declarations":[{"constant":false,"id":14009,"mutability":"mutable","name":"pos","nameLocation":"17695:3:43","nodeType":"VariableDeclaration","scope":14043,"src":"17687:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14008,"name":"uint256","nodeType":"ElementaryTypeName","src":"17687:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14013,"initialValue":{"expression":{"expression":{"id":14010,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"17701:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14011,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17706:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17701:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17719:6:43","memberName":"length","nodeType":"MemberAccess","src":"17701:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17687:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14014,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"17739:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17746:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17739:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14041,"nodeType":"Block","src":"17800:146:43","statements":[{"assignments":[14025],"declarations":[{"constant":false,"id":14025,"mutability":"mutable","name":"ckpt","nameLocation":"17836:4:43","nodeType":"VariableDeclaration","scope":14041,"src":"17814:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14024,"nodeType":"UserDefinedTypeName","pathNode":{"id":14023,"name":"Checkpoint160","nameLocations":["17814:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"17814:13:43"},"referencedDeclaration":13775,"src":"17814:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14033,"initialValue":{"arguments":[{"expression":{"id":14027,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"17857:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14028,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17862:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17857:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14029,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"17876:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17882:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17876:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14026,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17843:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17843:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17814:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":14034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17906:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":14035,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14025,"src":"17912:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14036,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17917:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"17912:9:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"expression":{"id":14037,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14025,"src":"17923:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14038,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17928:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17923:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14039,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17905:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint96_$_t_uint160_$","typeString":"tuple(bool,uint96,uint160)"}},"functionReturnParameters":14007,"id":14040,"nodeType":"Return","src":"17898:37:43"}]},"id":14042,"nodeType":"IfStatement","src":"17735:211:43","trueBody":{"id":14022,"nodeType":"Block","src":"17749:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":14017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17771:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":14018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17778:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17781:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14020,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17770:13:43","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":14007,"id":14021,"nodeType":"Return","src":"17763:20:43"}]}}]},"documentation":{"id":13996,"nodeType":"StructuredDocumentation","src":"17390:168:43","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":14044,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"17572:16:43","nodeType":"FunctionDefinition","parameters":{"id":14000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13999,"mutability":"mutable","name":"self","nameLocation":"17606:4:43","nodeType":"VariableDeclaration","scope":14044,"src":"17589:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13998,"nodeType":"UserDefinedTypeName","pathNode":{"id":13997,"name":"Trace160","nameLocations":["17589:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"17589:8:43"},"referencedDeclaration":13770,"src":"17589:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17588:23:43"},"returnParameters":{"id":14007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14002,"mutability":"mutable","name":"exists","nameLocation":"17640:6:43","nodeType":"VariableDeclaration","scope":14044,"src":"17635:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14001,"name":"bool","nodeType":"ElementaryTypeName","src":"17635:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14004,"mutability":"mutable","name":"_key","nameLocation":"17655:4:43","nodeType":"VariableDeclaration","scope":14044,"src":"17648:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14003,"name":"uint96","nodeType":"ElementaryTypeName","src":"17648:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14006,"mutability":"mutable","name":"_value","nameLocation":"17669:6:43","nodeType":"VariableDeclaration","scope":14044,"src":"17661:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14005,"name":"uint160","nodeType":"ElementaryTypeName","src":"17661:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17634:42:43"},"scope":14290,"src":"17563:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14057,"nodeType":"Block","src":"18091:48:43","statements":[{"expression":{"expression":{"expression":{"id":14053,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14048,"src":"18108:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14054,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18113:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"18108:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18126:6:43","memberName":"length","nodeType":"MemberAccess","src":"18108:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14052,"id":14056,"nodeType":"Return","src":"18101:31:43"}]},"documentation":{"id":14045,"nodeType":"StructuredDocumentation","src":"17958:57:43","text":" @dev Returns the number of checkpoint."},"id":14058,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"18029:6:43","nodeType":"FunctionDefinition","parameters":{"id":14049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14048,"mutability":"mutable","name":"self","nameLocation":"18053:4:43","nodeType":"VariableDeclaration","scope":14058,"src":"18036:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14047,"nodeType":"UserDefinedTypeName","pathNode":{"id":14046,"name":"Trace160","nameLocations":["18036:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"18036:8:43"},"referencedDeclaration":13770,"src":"18036:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"18035:23:43"},"returnParameters":{"id":14052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14058,"src":"18082:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14050,"name":"uint256","nodeType":"ElementaryTypeName","src":"18082:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18081:9:43"},"scope":14290,"src":"18020:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14075,"nodeType":"Block","src":"18303:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":14070,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14062,"src":"18320:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18325:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"18320:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14073,"indexExpression":{"id":14072,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14064,"src":"18338:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18320:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref"}},"functionReturnParameters":14069,"id":14074,"nodeType":"Return","src":"18313:29:43"}]},"documentation":{"id":14059,"nodeType":"StructuredDocumentation","src":"18145:61:43","text":" @dev Returns checkpoint at given position."},"id":14076,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"18220:2:43","nodeType":"FunctionDefinition","parameters":{"id":14065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14062,"mutability":"mutable","name":"self","nameLocation":"18240:4:43","nodeType":"VariableDeclaration","scope":14076,"src":"18223:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14061,"nodeType":"UserDefinedTypeName","pathNode":{"id":14060,"name":"Trace160","nameLocations":["18223:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"18223:8:43"},"referencedDeclaration":13770,"src":"18223:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14064,"mutability":"mutable","name":"pos","nameLocation":"18253:3:43","nodeType":"VariableDeclaration","scope":14076,"src":"18246:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14063,"name":"uint32","nodeType":"ElementaryTypeName","src":"18246:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"18222:35:43"},"returnParameters":{"id":14069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14076,"src":"18281:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14067,"nodeType":"UserDefinedTypeName","pathNode":{"id":14066,"name":"Checkpoint160","nameLocations":["18281:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18281:13:43"},"referencedDeclaration":13775,"src":"18281:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"18280:22:43"},"scope":14290,"src":"18211:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14169,"nodeType":"Block","src":"18682:765:43","statements":[{"assignments":[14093],"declarations":[{"constant":false,"id":14093,"mutability":"mutable","name":"pos","nameLocation":"18700:3:43","nodeType":"VariableDeclaration","scope":14169,"src":"18692:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14092,"name":"uint256","nodeType":"ElementaryTypeName","src":"18692:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14096,"initialValue":{"expression":{"id":14094,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"18706:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18711:6:43","memberName":"length","nodeType":"MemberAccess","src":"18706:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18692:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14097,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"18732:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18738:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18732:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14167,"nodeType":"Block","src":"19333:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":14158,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19378:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19391:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14157,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13775,"src":"19357:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19372:4:43","19383:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19357:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14154,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"19347:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19352:4:43","memberName":"push","nodeType":"MemberAccess","src":"19347:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$13775_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19347:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14162,"nodeType":"ExpressionStatement","src":"19347:52:43"},{"expression":{"components":[{"hexValue":"30","id":14163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19421:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14164,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19424:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14165,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19420:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint160_$","typeString":"tuple(int_const 0,uint160)"}},"functionReturnParameters":14091,"id":14166,"nodeType":"Return","src":"19413:17:43"}]},"id":14168,"nodeType":"IfStatement","src":"18728:713:43","trueBody":{"id":14153,"nodeType":"Block","src":"18741:586:43","statements":[{"assignments":[14102],"declarations":[{"constant":false,"id":14102,"mutability":"mutable","name":"last","nameLocation":"18777:4:43","nodeType":"VariableDeclaration","scope":14153,"src":"18755:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14101,"nodeType":"UserDefinedTypeName","pathNode":{"id":14100,"name":"Checkpoint160","nameLocations":["18755:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18755:13:43"},"referencedDeclaration":13775,"src":"18755:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14109,"initialValue":{"arguments":[{"id":14104,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"18798:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14105,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"18804:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18810:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18804:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14103,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"18784:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18784:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18755:57:43"},{"assignments":[14111],"declarations":[{"constant":false,"id":14111,"mutability":"mutable","name":"lastKey","nameLocation":"18833:7:43","nodeType":"VariableDeclaration","scope":14153,"src":"18826:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14110,"name":"uint96","nodeType":"ElementaryTypeName","src":"18826:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"id":14114,"initialValue":{"expression":{"id":14112,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"18843:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18848:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"18843:9:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"18826:26:43"},{"assignments":[14116],"declarations":[{"constant":false,"id":14116,"mutability":"mutable","name":"lastValue","nameLocation":"18874:9:43","nodeType":"VariableDeclaration","scope":14153,"src":"18866:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14115,"name":"uint160","nodeType":"ElementaryTypeName","src":"18866:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"id":14119,"initialValue":{"expression":{"id":14117,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"18886:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18891:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"18886:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"VariableDeclarationStatement","src":"18866:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14120,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14111,"src":"18971:7:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14121,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"18981:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"18971:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14127,"nodeType":"IfStatement","src":"18967:89:43","trueBody":{"id":14126,"nodeType":"Block","src":"18986:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14123,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"19011:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":14124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19011:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14125,"nodeType":"RevertStatement","src":"19004:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14128,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14111,"src":"19119:7:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14129,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19130:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"19119:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14147,"nodeType":"Block","src":"19193:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":14142,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19242:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14143,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19255:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14141,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13775,"src":"19221:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19236:4:43","19247:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19221:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14138,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"19211:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19216:4:43","memberName":"push","nodeType":"MemberAccess","src":"19211:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$13775_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19211:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14146,"nodeType":"ExpressionStatement","src":"19211:52:43"}]},"id":14148,"nodeType":"IfStatement","src":"19115:163:43","trueBody":{"id":14137,"nodeType":"Block","src":"19135:52:43","statements":[{"expression":{"id":14135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14131,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"19153:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19158:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"19153:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19167:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"19153:19:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14136,"nodeType":"ExpressionStatement","src":"19153:19:43"}]}},{"expression":{"components":[{"id":14149,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14116,"src":"19299:9:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},{"id":14150,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19310:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14151,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19298:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":14091,"id":14152,"nodeType":"Return","src":"19291:25:43"}]}}]},"documentation":{"id":14077,"nodeType":"StructuredDocumentation","src":"18355:165:43","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":14170,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"18534:7:43","nodeType":"FunctionDefinition","parameters":{"id":14086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14081,"mutability":"mutable","name":"self","nameLocation":"18575:4:43","nodeType":"VariableDeclaration","scope":14170,"src":"18551:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14079,"nodeType":"UserDefinedTypeName","pathNode":{"id":14078,"name":"Checkpoint160","nameLocations":["18551:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18551:13:43"},"referencedDeclaration":13775,"src":"18551:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14080,"nodeType":"ArrayTypeName","src":"18551:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14083,"mutability":"mutable","name":"key","nameLocation":"18596:3:43","nodeType":"VariableDeclaration","scope":14170,"src":"18589:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14082,"name":"uint96","nodeType":"ElementaryTypeName","src":"18589:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14085,"mutability":"mutable","name":"value","nameLocation":"18617:5:43","nodeType":"VariableDeclaration","scope":14170,"src":"18609:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14084,"name":"uint160","nodeType":"ElementaryTypeName","src":"18609:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18541:87:43"},"returnParameters":{"id":14091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14088,"mutability":"mutable","name":"oldValue","nameLocation":"18654:8:43","nodeType":"VariableDeclaration","scope":14170,"src":"18646:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14087,"name":"uint160","nodeType":"ElementaryTypeName","src":"18646:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":14090,"mutability":"mutable","name":"newValue","nameLocation":"18672:8:43","nodeType":"VariableDeclaration","scope":14170,"src":"18664:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14089,"name":"uint160","nodeType":"ElementaryTypeName","src":"18664:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18645:36:43"},"scope":14290,"src":"18525:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":14221,"nodeType":"Block","src":"19963:267:43","statements":[{"body":{"id":14217,"nodeType":"Block","src":"19992:211:43","statements":[{"assignments":[14190],"declarations":[{"constant":false,"id":14190,"mutability":"mutable","name":"mid","nameLocation":"20014:3:43","nodeType":"VariableDeclaration","scope":14217,"src":"20006:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14189,"name":"uint256","nodeType":"ElementaryTypeName","src":"20006:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14196,"initialValue":{"arguments":[{"id":14193,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"20033:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14194,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20038:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14191,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"20020:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20025:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"20020:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20020:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20006:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14198,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14175,"src":"20075:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14199,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20081:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14197,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"20061:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20061:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14201,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20086:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"20061:29:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14202,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14177,"src":"20093:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20061:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14215,"nodeType":"Block","src":"20147:46:43","statements":[{"expression":{"id":14213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14209,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"20165:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14210,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20171:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20177:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20171:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20165:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14214,"nodeType":"ExpressionStatement","src":"20165:13:43"}]},"id":14216,"nodeType":"IfStatement","src":"20057:136:43","trueBody":{"id":14208,"nodeType":"Block","src":"20098:43:43","statements":[{"expression":{"id":14206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14204,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20116:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14205,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20123:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20116:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14207,"nodeType":"ExpressionStatement","src":"20116:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14186,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"19980:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14187,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"19986:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19980:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14218,"nodeType":"WhileStatement","src":"19973:230:43"},{"expression":{"id":14219,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20219:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14185,"id":14220,"nodeType":"Return","src":"20212:11:43"}]},"documentation":{"id":14171,"nodeType":"StructuredDocumentation","src":"19453:339:43","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":14222,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"19806:18:43","nodeType":"FunctionDefinition","parameters":{"id":14182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14175,"mutability":"mutable","name":"self","nameLocation":"19858:4:43","nodeType":"VariableDeclaration","scope":14222,"src":"19834:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14173,"nodeType":"UserDefinedTypeName","pathNode":{"id":14172,"name":"Checkpoint160","nameLocations":["19834:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"19834:13:43"},"referencedDeclaration":13775,"src":"19834:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14174,"nodeType":"ArrayTypeName","src":"19834:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14177,"mutability":"mutable","name":"key","nameLocation":"19879:3:43","nodeType":"VariableDeclaration","scope":14222,"src":"19872:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14176,"name":"uint96","nodeType":"ElementaryTypeName","src":"19872:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14179,"mutability":"mutable","name":"low","nameLocation":"19900:3:43","nodeType":"VariableDeclaration","scope":14222,"src":"19892:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14178,"name":"uint256","nodeType":"ElementaryTypeName","src":"19892:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14181,"mutability":"mutable","name":"high","nameLocation":"19921:4:43","nodeType":"VariableDeclaration","scope":14222,"src":"19913:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14180,"name":"uint256","nodeType":"ElementaryTypeName","src":"19913:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19824:107:43"},"returnParameters":{"id":14185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14222,"src":"19954:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14183,"name":"uint256","nodeType":"ElementaryTypeName","src":"19954:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19953:9:43"},"scope":14290,"src":"19797:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14273,"nodeType":"Block","src":"20747:267:43","statements":[{"body":{"id":14269,"nodeType":"Block","src":"20776:211:43","statements":[{"assignments":[14242],"declarations":[{"constant":false,"id":14242,"mutability":"mutable","name":"mid","nameLocation":"20798:3:43","nodeType":"VariableDeclaration","scope":14269,"src":"20790:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14241,"name":"uint256","nodeType":"ElementaryTypeName","src":"20790:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14248,"initialValue":{"arguments":[{"id":14245,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20817:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14246,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20822:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14243,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"20804:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20809:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"20804:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20804:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20790:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14250,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14227,"src":"20859:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14251,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20865:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14249,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"20845:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20845:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20870:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"20845:29:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14254,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14229,"src":"20877:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20845:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14267,"nodeType":"Block","src":"20934:43:43","statements":[{"expression":{"id":14265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14263,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20952:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14264,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20959:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20952:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14266,"nodeType":"ExpressionStatement","src":"20952:10:43"}]},"id":14268,"nodeType":"IfStatement","src":"20841:136:43","trueBody":{"id":14262,"nodeType":"Block","src":"20882:46:43","statements":[{"expression":{"id":14260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14256,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20900:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14257,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20906:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20912:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20906:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20900:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14261,"nodeType":"ExpressionStatement","src":"20900:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14238,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20764:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14239,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20770:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20764:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14270,"nodeType":"WhileStatement","src":"20757:230:43"},{"expression":{"id":14271,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"21003:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14237,"id":14272,"nodeType":"Return","src":"20996:11:43"}]},"documentation":{"id":14223,"nodeType":"StructuredDocumentation","src":"20236:340:43","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":14274,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"20590:18:43","nodeType":"FunctionDefinition","parameters":{"id":14234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14227,"mutability":"mutable","name":"self","nameLocation":"20642:4:43","nodeType":"VariableDeclaration","scope":14274,"src":"20618:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14225,"nodeType":"UserDefinedTypeName","pathNode":{"id":14224,"name":"Checkpoint160","nameLocations":["20618:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"20618:13:43"},"referencedDeclaration":13775,"src":"20618:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14226,"nodeType":"ArrayTypeName","src":"20618:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14229,"mutability":"mutable","name":"key","nameLocation":"20663:3:43","nodeType":"VariableDeclaration","scope":14274,"src":"20656:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14228,"name":"uint96","nodeType":"ElementaryTypeName","src":"20656:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14231,"mutability":"mutable","name":"low","nameLocation":"20684:3:43","nodeType":"VariableDeclaration","scope":14274,"src":"20676:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14230,"name":"uint256","nodeType":"ElementaryTypeName","src":"20676:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14233,"mutability":"mutable","name":"high","nameLocation":"20705:4:43","nodeType":"VariableDeclaration","scope":14274,"src":"20697:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14232,"name":"uint256","nodeType":"ElementaryTypeName","src":"20697:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20608:107:43"},"returnParameters":{"id":14237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14274,"src":"20738:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14235,"name":"uint256","nodeType":"ElementaryTypeName","src":"20738:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20737:9:43"},"scope":14290,"src":"20581:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14288,"nodeType":"Block","src":"21297:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"21316:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21337:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"21340:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21330:6:43"},"nodeType":"YulFunctionCall","src":"21330:20:43"},"nodeType":"YulExpressionStatement","src":"21330:20:43"},{"nodeType":"YulAssignment","src":"21363:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21392:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21395:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"21382:9:43"},"nodeType":"YulFunctionCall","src":"21382:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"21402:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21378:3:43"},"nodeType":"YulFunctionCall","src":"21378:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"21363:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":14281,"isOffset":false,"isSlot":false,"src":"21402:3:43","valueSize":1},{"declaration":14285,"isOffset":false,"isSlot":true,"src":"21363:11:43","suffix":"slot","valueSize":1},{"declaration":14279,"isOffset":false,"isSlot":true,"src":"21340:9:43","suffix":"slot","valueSize":1}],"id":14287,"nodeType":"InlineAssembly","src":"21307:109:43"}]},"documentation":{"id":14275,"nodeType":"StructuredDocumentation","src":"21020:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":14289,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"21166:13:43","nodeType":"FunctionDefinition","parameters":{"id":14282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14279,"mutability":"mutable","name":"self","nameLocation":"21213:4:43","nodeType":"VariableDeclaration","scope":14289,"src":"21189:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14277,"nodeType":"UserDefinedTypeName","pathNode":{"id":14276,"name":"Checkpoint160","nameLocations":["21189:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"21189:13:43"},"referencedDeclaration":13775,"src":"21189:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14278,"nodeType":"ArrayTypeName","src":"21189:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14281,"mutability":"mutable","name":"pos","nameLocation":"21235:3:43","nodeType":"VariableDeclaration","scope":14289,"src":"21227:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14280,"name":"uint256","nodeType":"ElementaryTypeName","src":"21227:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21179:65:43"},"returnParameters":{"id":14286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14285,"mutability":"mutable","name":"result","nameLocation":"21289:6:43","nodeType":"VariableDeclaration","scope":14289,"src":"21267:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14284,"nodeType":"UserDefinedTypeName","pathNode":{"id":14283,"name":"Checkpoint160","nameLocations":["21267:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"21267:13:43"},"referencedDeclaration":13775,"src":"21267:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"21266:30:43"},"scope":14290,"src":"21157:265:43","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":14291,"src":"668:20756:43","usedErrors":[12717],"usedEvents":[]}],"src":"201:21224:43"},"id":43},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","exportedSymbols":{"DoubleEndedQueue":[14645],"Panic":[6860]},"id":14646,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14292,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:44"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":14294,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14646,"sourceUnit":6861,"src":"143:35:44","symbolAliases":[{"foreign":{"id":14293,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"151:5:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"DoubleEndedQueue","contractDependencies":[],"contractKind":"library","documentation":{"id":14295,"nodeType":"StructuredDocumentation","src":"180:638:44","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":14645,"linearizedBaseContracts":[14645],"name":"DoubleEndedQueue","nameLocation":"827:16:44","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DoubleEndedQueue.Bytes32Deque","documentation":{"id":14296,"nodeType":"StructuredDocumentation","src":"850:513:44","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":14305,"members":[{"constant":false,"id":14298,"mutability":"mutable","name":"_begin","nameLocation":"1406:6:44","nodeType":"VariableDeclaration","scope":14305,"src":"1398:14:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14297,"name":"uint128","nodeType":"ElementaryTypeName","src":"1398:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14300,"mutability":"mutable","name":"_end","nameLocation":"1430:4:44","nodeType":"VariableDeclaration","scope":14305,"src":"1422:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14299,"name":"uint128","nodeType":"ElementaryTypeName","src":"1422:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14304,"mutability":"mutable","name":"_data","nameLocation":"1478:5:44","nodeType":"VariableDeclaration","scope":14305,"src":"1444:39:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"typeName":{"id":14303,"keyName":"index","keyNameLocation":"1460:5:44","keyType":{"id":14301,"name":"uint128","nodeType":"ElementaryTypeName","src":"1452:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Mapping","src":"1444:33:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":14302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1469:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"}],"name":"Bytes32Deque","nameLocation":"1375:12:44","nodeType":"StructDefinition","scope":14645,"src":"1368:122:44","visibility":"public"},{"body":{"id":14350,"nodeType":"Block","src":"1707:247:44","statements":[{"id":14349,"nodeType":"UncheckedBlock","src":"1717:231:44","statements":[{"assignments":[14315],"declarations":[{"constant":false,"id":14315,"mutability":"mutable","name":"backIndex","nameLocation":"1749:9:44","nodeType":"VariableDeclaration","scope":14349,"src":"1741:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14314,"name":"uint128","nodeType":"ElementaryTypeName","src":"1741:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14318,"initialValue":{"expression":{"id":14316,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1761:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14317,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1767:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"1761:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"1741:30:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14319,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1789:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1801:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1789:13:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14322,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1806:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14323,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1812:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"1806:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1789:29:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14332,"nodeType":"IfStatement","src":"1785:68:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14328,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"1832:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1838:14:44","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":6847,"src":"1832:20:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14325,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"1820:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1826:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"1820:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1820:33:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14331,"nodeType":"ExpressionStatement","src":"1820:33:44"}},{"expression":{"id":14339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":14333,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1867:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14336,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1873:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"1867:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14337,"indexExpression":{"id":14335,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1879:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1867:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14338,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14311,"src":"1892:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"1867:30:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14340,"nodeType":"ExpressionStatement","src":"1867:30:44"},{"expression":{"id":14347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14341,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1911:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14343,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1917:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"1911:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14344,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1924:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1936:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1924:13:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1911:26:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14348,"nodeType":"ExpressionStatement","src":"1911:26:44"}]}]},"documentation":{"id":14306,"nodeType":"StructuredDocumentation","src":"1496:136:44","text":" @dev Inserts an item at the end of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":14351,"implemented":true,"kind":"function","modifiers":[],"name":"pushBack","nameLocation":"1646:8:44","nodeType":"FunctionDefinition","parameters":{"id":14312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14309,"mutability":"mutable","name":"deque","nameLocation":"1676:5:44","nodeType":"VariableDeclaration","scope":14351,"src":"1655:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14308,"nodeType":"UserDefinedTypeName","pathNode":{"id":14307,"name":"Bytes32Deque","nameLocations":["1655:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"1655:12:44"},"referencedDeclaration":14305,"src":"1655:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14311,"mutability":"mutable","name":"value","nameLocation":"1691:5:44","nodeType":"VariableDeclaration","scope":14351,"src":"1683:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1683:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1654:43:44"},"returnParameters":{"id":14313,"nodeType":"ParameterList","parameters":[],"src":"1707:0:44"},"scope":14645,"src":"1637:317:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14400,"nodeType":"Block","src":"2197:308:44","statements":[{"id":14399,"nodeType":"UncheckedBlock","src":"2207:292:44","statements":[{"assignments":[14361],"declarations":[{"constant":false,"id":14361,"mutability":"mutable","name":"backIndex","nameLocation":"2239:9:44","nodeType":"VariableDeclaration","scope":14399,"src":"2231:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14360,"name":"uint128","nodeType":"ElementaryTypeName","src":"2231:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14364,"initialValue":{"expression":{"id":14362,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2251:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2257:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2251:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2231:30:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14365,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2279:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14366,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2292:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14367,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2292:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2279:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14376,"nodeType":"IfStatement","src":"2275:65:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14372,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2318:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2324:15:44","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":6839,"src":"2318:21:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14369,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2306:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2312:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"2306:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2306:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14375,"nodeType":"ExpressionStatement","src":"2306:34:44"}},{"expression":{"id":14378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2354:11:44","subExpression":{"id":14377,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2356:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14379,"nodeType":"ExpressionStatement","src":"2354:11:44"},{"expression":{"id":14385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14380,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14358,"src":"2379:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":14381,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2387:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14382,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2393:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2387:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14384,"indexExpression":{"id":14383,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2399:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2387:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2379:30:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14386,"nodeType":"ExpressionStatement","src":"2379:30:44"},{"expression":{"id":14391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2423:29:44","subExpression":{"baseExpression":{"expression":{"id":14387,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2430:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14388,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2436:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2430:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14390,"indexExpression":{"id":14389,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2442:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2430:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14392,"nodeType":"ExpressionStatement","src":"2423:29:44"},{"expression":{"id":14397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14393,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2466:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14395,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2472:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2466:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14396,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2479:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2466:22:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14398,"nodeType":"ExpressionStatement","src":"2466:22:44"}]}]},"documentation":{"id":14352,"nodeType":"StructuredDocumentation","src":"1960:154:44","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":14401,"implemented":true,"kind":"function","modifiers":[],"name":"popBack","nameLocation":"2128:7:44","nodeType":"FunctionDefinition","parameters":{"id":14356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14355,"mutability":"mutable","name":"deque","nameLocation":"2157:5:44","nodeType":"VariableDeclaration","scope":14401,"src":"2136:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14354,"nodeType":"UserDefinedTypeName","pathNode":{"id":14353,"name":"Bytes32Deque","nameLocations":["2136:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2136:12:44"},"referencedDeclaration":14305,"src":"2136:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"2135:28:44"},"returnParameters":{"id":14359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14358,"mutability":"mutable","name":"value","nameLocation":"2190:5:44","nodeType":"VariableDeclaration","scope":14401,"src":"2182:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14357,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2182:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2181:15:44"},"scope":14645,"src":"2119:386:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14444,"nodeType":"Block","src":"2729:249:44","statements":[{"id":14443,"nodeType":"UncheckedBlock","src":"2739:233:44","statements":[{"assignments":[14411],"declarations":[{"constant":false,"id":14411,"mutability":"mutable","name":"frontIndex","nameLocation":"2771:10:44","nodeType":"VariableDeclaration","scope":14443,"src":"2763:18:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14410,"name":"uint128","nodeType":"ElementaryTypeName","src":"2763:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14416,"initialValue":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14412,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2784:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14413,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2790:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2784:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2799:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2784:16:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2763:37:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14417,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2818:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14418,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2832:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2838:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2832:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2818:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14428,"nodeType":"IfStatement","src":"2814:63:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14424,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2856:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2862:14:44","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":6847,"src":"2856:20:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14421,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2844:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2850:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"2844:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:33:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14427,"nodeType":"ExpressionStatement","src":"2844:33:44"}},{"expression":{"id":14435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":14429,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2891:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2897:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2891:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14433,"indexExpression":{"id":14431,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2903:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2891:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14407,"src":"2917:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2891:31:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14436,"nodeType":"ExpressionStatement","src":"2891:31:44"},{"expression":{"id":14441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14437,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2936:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14439,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2942:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2936:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14440,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2951:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2936:25:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14442,"nodeType":"ExpressionStatement","src":"2936:25:44"}]}]},"documentation":{"id":14402,"nodeType":"StructuredDocumentation","src":"2511:142:44","text":" @dev Inserts an item at the beginning of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":14445,"implemented":true,"kind":"function","modifiers":[],"name":"pushFront","nameLocation":"2667:9:44","nodeType":"FunctionDefinition","parameters":{"id":14408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14405,"mutability":"mutable","name":"deque","nameLocation":"2698:5:44","nodeType":"VariableDeclaration","scope":14445,"src":"2677:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14404,"nodeType":"UserDefinedTypeName","pathNode":{"id":14403,"name":"Bytes32Deque","nameLocations":["2677:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2677:12:44"},"referencedDeclaration":14305,"src":"2677:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14407,"mutability":"mutable","name":"value","nameLocation":"2713:5:44","nodeType":"VariableDeclaration","scope":14445,"src":"2705:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14406,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2705:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2676:43:44"},"returnParameters":{"id":14409,"nodeType":"ParameterList","parameters":[],"src":"2729:0:44"},"scope":14645,"src":"2658:320:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14493,"nodeType":"Block","src":"3228:294:44","statements":[{"id":14492,"nodeType":"UncheckedBlock","src":"3238:278:44","statements":[{"assignments":[14455],"declarations":[{"constant":false,"id":14455,"mutability":"mutable","name":"frontIndex","nameLocation":"3270:10:44","nodeType":"VariableDeclaration","scope":14492,"src":"3262:18:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14454,"name":"uint128","nodeType":"ElementaryTypeName","src":"3262:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14458,"initialValue":{"expression":{"id":14456,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3283:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3289:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3283:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"3262:33:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14459,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3313:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14460,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3327:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14461,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3333:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"3327:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3313:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14470,"nodeType":"IfStatement","src":"3309:64:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14466,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3351:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3357:15:44","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":6839,"src":"3351:21:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14463,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3339:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3345:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"3339:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3339:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14469,"nodeType":"ExpressionStatement","src":"3339:34:44"}},{"expression":{"id":14476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14471,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14452,"src":"3387:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":14472,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3395:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14473,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3401:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3395:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14475,"indexExpression":{"id":14474,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3407:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3395:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3387:31:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14477,"nodeType":"ExpressionStatement","src":"3387:31:44"},{"expression":{"id":14482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"3432:30:44","subExpression":{"baseExpression":{"expression":{"id":14478,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3439:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14479,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3445:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3439:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14481,"indexExpression":{"id":14480,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3451:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3439:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14483,"nodeType":"ExpressionStatement","src":"3432:30:44"},{"expression":{"id":14490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14484,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3476:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14486,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3482:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3476:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14487,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3491:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3504:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3491:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3476:29:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14491,"nodeType":"ExpressionStatement","src":"3476:29:44"}]}]},"documentation":{"id":14446,"nodeType":"StructuredDocumentation","src":"2984:160:44","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":14494,"implemented":true,"kind":"function","modifiers":[],"name":"popFront","nameLocation":"3158:8:44","nodeType":"FunctionDefinition","parameters":{"id":14450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14449,"mutability":"mutable","name":"deque","nameLocation":"3188:5:44","nodeType":"VariableDeclaration","scope":14494,"src":"3167:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14448,"nodeType":"UserDefinedTypeName","pathNode":{"id":14447,"name":"Bytes32Deque","nameLocations":["3167:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"3167:12:44"},"referencedDeclaration":14305,"src":"3167:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3166:28:44"},"returnParameters":{"id":14453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14452,"mutability":"mutable","name":"value","nameLocation":"3221:5:44","nodeType":"VariableDeclaration","scope":14494,"src":"3213:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14451,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3213:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3212:15:44"},"scope":14645,"src":"3149:373:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14520,"nodeType":"Block","src":"3763:115:44","statements":[{"condition":{"arguments":[{"id":14504,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3783:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14503,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14644,"src":"3777:5:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":14505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3777:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14513,"nodeType":"IfStatement","src":"3773:56:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14509,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3803:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3809:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"3803:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14506,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3791:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3797:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"3791:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3791:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14512,"nodeType":"ExpressionStatement","src":"3791:38:44"}},{"expression":{"baseExpression":{"expression":{"id":14514,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3846:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14515,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3852:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3846:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14518,"indexExpression":{"expression":{"id":14516,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3858:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14517,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3864:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3858:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3846:25:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14502,"id":14519,"nodeType":"Return","src":"3839:32:44"}]},"documentation":{"id":14495,"nodeType":"StructuredDocumentation","src":"3528:149:44","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":14521,"implemented":true,"kind":"function","modifiers":[],"name":"front","nameLocation":"3691:5:44","nodeType":"FunctionDefinition","parameters":{"id":14499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14498,"mutability":"mutable","name":"deque","nameLocation":"3718:5:44","nodeType":"VariableDeclaration","scope":14521,"src":"3697:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14497,"nodeType":"UserDefinedTypeName","pathNode":{"id":14496,"name":"Bytes32Deque","nameLocations":["3697:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"3697:12:44"},"referencedDeclaration":14305,"src":"3697:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3696:28:44"},"returnParameters":{"id":14502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14501,"mutability":"mutable","name":"value","nameLocation":"3756:5:44","nodeType":"VariableDeclaration","scope":14521,"src":"3748:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14500,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3748:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3747:15:44"},"scope":14645,"src":"3682:196:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14550,"nodeType":"Block","src":"4112:151:44","statements":[{"condition":{"arguments":[{"id":14531,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4132:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14530,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14644,"src":"4126:5:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":14532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4126:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14540,"nodeType":"IfStatement","src":"4122:56:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14536,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4152:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4158:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"4152:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14533,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4140:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4146:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4140:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4140:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14539,"nodeType":"ExpressionStatement","src":"4140:38:44"}},{"id":14549,"nodeType":"UncheckedBlock","src":"4188:69:44","statements":[{"expression":{"baseExpression":{"expression":{"id":14541,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4219:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14542,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4225:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"4219:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14547,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14543,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4231:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14544,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4237:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"4231:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4244:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4231:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4219:27:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14529,"id":14548,"nodeType":"Return","src":"4212:34:44"}]}]},"documentation":{"id":14522,"nodeType":"StructuredDocumentation","src":"3884:143:44","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":14551,"implemented":true,"kind":"function","modifiers":[],"name":"back","nameLocation":"4041:4:44","nodeType":"FunctionDefinition","parameters":{"id":14526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14525,"mutability":"mutable","name":"deque","nameLocation":"4067:5:44","nodeType":"VariableDeclaration","scope":14551,"src":"4046:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14524,"nodeType":"UserDefinedTypeName","pathNode":{"id":14523,"name":"Bytes32Deque","nameLocations":["4046:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"4046:12:44"},"referencedDeclaration":14305,"src":"4046:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"4045:28:44"},"returnParameters":{"id":14529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14528,"mutability":"mutable","name":"value","nameLocation":"4105:5:44","nodeType":"VariableDeclaration","scope":14551,"src":"4097:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14527,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4097:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4096:15:44"},"scope":14645,"src":"4032:231:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14587,"nodeType":"Block","src":"4607:297:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14562,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14557,"src":"4621:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"id":14564,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4637:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14563,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14628,"src":"4630:6:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (uint256)"}},"id":14565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4630:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4621:22:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14574,"nodeType":"IfStatement","src":"4617:66:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14570,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4657:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4663:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"4657:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14567,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4645:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4651:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4645:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14573,"nodeType":"ExpressionStatement","src":"4645:38:44"}},{"id":14586,"nodeType":"UncheckedBlock","src":"4814:84:44","statements":[{"expression":{"baseExpression":{"expression":{"id":14575,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4845:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14576,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4851:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"4845:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14584,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14577,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4857:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14578,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4863:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"4857:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":14581,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14557,"src":"4880:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4872:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":14579,"name":"uint128","nodeType":"ElementaryTypeName","src":"4872:7:44","typeDescriptions":{}}},"id":14582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4872:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"4857:29:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4845:42:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14561,"id":14585,"nodeType":"Return","src":"4838:49:44"}]}]},"documentation":{"id":14552,"nodeType":"StructuredDocumentation","src":"4269:240:44","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":14588,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4523:2:44","nodeType":"FunctionDefinition","parameters":{"id":14558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14555,"mutability":"mutable","name":"deque","nameLocation":"4547:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4526:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14554,"nodeType":"UserDefinedTypeName","pathNode":{"id":14553,"name":"Bytes32Deque","nameLocations":["4526:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"4526:12:44"},"referencedDeclaration":14305,"src":"4526:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14557,"mutability":"mutable","name":"index","nameLocation":"4562:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4554:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14556,"name":"uint256","nodeType":"ElementaryTypeName","src":"4554:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4525:43:44"},"returnParameters":{"id":14561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14560,"mutability":"mutable","name":"value","nameLocation":"4600:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4592:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4592:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4591:15:44"},"scope":14645,"src":"4514:390:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14607,"nodeType":"Block","src":"5193:57:44","statements":[{"expression":{"id":14599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14595,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14592,"src":"5203:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5209:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5203:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":14598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5218:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5203:16:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14600,"nodeType":"ExpressionStatement","src":"5203:16:44"},{"expression":{"id":14605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14601,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14592,"src":"5229:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5235:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5229:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":14604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5242:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5229:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14606,"nodeType":"ExpressionStatement","src":"5229:14:44"}]},"documentation":{"id":14589,"nodeType":"StructuredDocumentation","src":"4910:226:44","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":14608,"implemented":true,"kind":"function","modifiers":[],"name":"clear","nameLocation":"5150:5:44","nodeType":"FunctionDefinition","parameters":{"id":14593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14592,"mutability":"mutable","name":"deque","nameLocation":"5177:5:44","nodeType":"VariableDeclaration","scope":14608,"src":"5156:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14591,"nodeType":"UserDefinedTypeName","pathNode":{"id":14590,"name":"Bytes32Deque","nameLocations":["5156:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5156:12:44"},"referencedDeclaration":14305,"src":"5156:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5155:28:44"},"returnParameters":{"id":14594,"nodeType":"ParameterList","parameters":[],"src":"5193:0:44"},"scope":14645,"src":"5141:109:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14627,"nodeType":"Block","src":"5402:92:44","statements":[{"id":14626,"nodeType":"UncheckedBlock","src":"5412:76:44","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14619,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14612,"src":"5451:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14620,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5457:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5451:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":14621,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14612,"src":"5464:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14622,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5470:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5464:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5451:25:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":14618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5443:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":14617,"name":"uint256","nodeType":"ElementaryTypeName","src":"5443:7:44","typeDescriptions":{}}},"id":14624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14616,"id":14625,"nodeType":"Return","src":"5436:41:44"}]}]},"documentation":{"id":14609,"nodeType":"StructuredDocumentation","src":"5256:65:44","text":" @dev Returns the number of items in the queue."},"id":14628,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"5335:6:44","nodeType":"FunctionDefinition","parameters":{"id":14613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14612,"mutability":"mutable","name":"deque","nameLocation":"5363:5:44","nodeType":"VariableDeclaration","scope":14628,"src":"5342:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14611,"nodeType":"UserDefinedTypeName","pathNode":{"id":14610,"name":"Bytes32Deque","nameLocations":["5342:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5342:12:44"},"referencedDeclaration":14305,"src":"5342:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5341:28:44"},"returnParameters":{"id":14616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14628,"src":"5393:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14614,"name":"uint256","nodeType":"ElementaryTypeName","src":"5393:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5392:9:44"},"scope":14645,"src":"5326:168:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14643,"nodeType":"Block","src":"5636:50:44","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14637,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14632,"src":"5653:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14638,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5659:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5653:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14639,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14632,"src":"5667:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14640,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5673:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5667:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5653:26:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14636,"id":14642,"nodeType":"Return","src":"5646:33:44"}]},"documentation":{"id":14629,"nodeType":"StructuredDocumentation","src":"5500:59:44","text":" @dev Returns true if the queue is empty."},"id":14644,"implemented":true,"kind":"function","modifiers":[],"name":"empty","nameLocation":"5573:5:44","nodeType":"FunctionDefinition","parameters":{"id":14633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14632,"mutability":"mutable","name":"deque","nameLocation":"5600:5:44","nodeType":"VariableDeclaration","scope":14644,"src":"5579:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14631,"nodeType":"UserDefinedTypeName","pathNode":{"id":14630,"name":"Bytes32Deque","nameLocations":["5579:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5579:12:44"},"referencedDeclaration":14305,"src":"5579:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5578:28:44"},"returnParameters":{"id":14636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14635,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14644,"src":"5630:4:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14634,"name":"bool","nodeType":"ElementaryTypeName","src":"5630:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5629:6:44"},"scope":14645,"src":"5564:122:44","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":14646,"src":"819:4869:44","usedErrors":[],"usedEvents":[]}],"src":"117:5572:44"},"id":44},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[10800],"SafeCast":[12565],"Time":[14919]},"id":14920,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14647,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:45"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":14649,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14920,"sourceUnit":10801,"src":"130:38:45","symbolAliases":[{"foreign":{"id":14648,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"138:4:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":14651,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14920,"sourceUnit":12566,"src":"169:46:45","symbolAliases":[{"foreign":{"id":14650,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"177:8:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":14652,"nodeType":"StructuredDocumentation","src":"217:422:45","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":14919,"linearizedBaseContracts":[14919],"name":"Time","nameLocation":"648:4:45","nodeType":"ContractDefinition","nodes":[{"global":false,"id":14654,"libraryName":{"id":14653,"name":"Time","nameLocations":["665:4:45"],"nodeType":"IdentifierPath","referencedDeclaration":14919,"src":"665:4:45"},"nodeType":"UsingForDirective","src":"659:17:45"},{"body":{"id":14666,"nodeType":"Block","src":"802:58:45","statements":[{"expression":{"arguments":[{"expression":{"id":14662,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:45","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:45","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14660,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"819:8:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":14661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:45","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"819:17:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":14664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":14659,"id":14665,"nodeType":"Return","src":"812:41:45"}]},"documentation":{"id":14655,"nodeType":"StructuredDocumentation","src":"682:63:45","text":" @dev Get the block timestamp as a Timepoint."},"id":14667,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:45","nodeType":"FunctionDefinition","parameters":{"id":14656,"nodeType":"ParameterList","parameters":[],"src":"768:2:45"},"returnParameters":{"id":14659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14667,"src":"794:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14657,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:45"},"scope":14919,"src":"750:110:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14679,"nodeType":"Block","src":"985:55:45","statements":[{"expression":{"arguments":[{"expression":{"id":14675,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:45","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:45","memberName":"number","nodeType":"MemberAccess","src":"1020:12:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14673,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"1002:8:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":14674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:45","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"1002:17:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":14677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":14672,"id":14678,"nodeType":"Return","src":"995:38:45"}]},"documentation":{"id":14668,"nodeType":"StructuredDocumentation","src":"866:60:45","text":" @dev Get the block number as a Timepoint."},"id":14680,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:45","nodeType":"FunctionDefinition","parameters":{"id":14669,"nodeType":"ParameterList","parameters":[],"src":"951:2:45"},"returnParameters":{"id":14672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14680,"src":"977:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14670,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:45"},"scope":14919,"src":"931:109:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":14682,"name":"Delay","nameLocation":"2377:5:45","nodeType":"UserDefinedValueTypeDefinition","src":"2372:22:45","underlyingType":{"id":14681,"name":"uint112","nodeType":"ElementaryTypeName","src":"2386:7:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":14696,"nodeType":"Block","src":"2572:44:45","statements":[{"expression":{"arguments":[{"id":14693,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14685,"src":"2600:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":14691,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"2589:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2595:4:45","memberName":"wrap","nodeType":"MemberAccess","src":"2589:10:45","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":14694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2589:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"functionReturnParameters":14690,"id":14695,"nodeType":"Return","src":"2582:27:45"}]},"documentation":{"id":14683,"nodeType":"StructuredDocumentation","src":"2400:103:45","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":14697,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2517:7:45","nodeType":"FunctionDefinition","parameters":{"id":14686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14685,"mutability":"mutable","name":"duration","nameLocation":"2532:8:45","nodeType":"VariableDeclaration","scope":14697,"src":"2525:15:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14684,"name":"uint32","nodeType":"ElementaryTypeName","src":"2525:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2524:17:45"},"returnParameters":{"id":14690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14697,"src":"2565:5:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14688,"nodeType":"UserDefinedTypeName","pathNode":{"id":14687,"name":"Delay","nameLocations":["2565:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"2565:5:45"},"referencedDeclaration":14682,"src":"2565:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2564:7:45"},"scope":14919,"src":"2508:108:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14734,"nodeType":"Block","src":"3016:159:45","statements":[{"expression":{"id":14719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":14712,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14706,"src":"3027:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14713,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3040:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14714,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3052:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14715,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3026:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14716,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14701,"src":"3062:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3067:6:45","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":14880,"src":"3062:11:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":14718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3026:49:45","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14720,"nodeType":"ExpressionStatement","src":"3026:49:45"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14721,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3092:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":14722,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14703,"src":"3102:9:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3092:19:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":14728,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14706,"src":"3136:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14729,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3149:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14730,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3161:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3135:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":14732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3092:76:45","trueExpression":{"components":[{"id":14724,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3115:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":14725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3130:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14727,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3114:18:45","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":14711,"id":14733,"nodeType":"Return","src":"3085:83:45"}]},"documentation":{"id":14698,"nodeType":"StructuredDocumentation","src":"2622:241:45","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":14735,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2877:10:45","nodeType":"FunctionDefinition","parameters":{"id":14704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14701,"mutability":"mutable","name":"self","nameLocation":"2903:4:45","nodeType":"VariableDeclaration","scope":14735,"src":"2897:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14700,"nodeType":"UserDefinedTypeName","pathNode":{"id":14699,"name":"Delay","nameLocations":["2897:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"2897:5:45"},"referencedDeclaration":14682,"src":"2897:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14703,"mutability":"mutable","name":"timepoint","nameLocation":"2924:9:45","nodeType":"VariableDeclaration","scope":14735,"src":"2917:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14702,"name":"uint48","nodeType":"ElementaryTypeName","src":"2917:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2887:52:45"},"returnParameters":{"id":14711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14706,"mutability":"mutable","name":"valueBefore","nameLocation":"2969:11:45","nodeType":"VariableDeclaration","scope":14735,"src":"2962:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14705,"name":"uint32","nodeType":"ElementaryTypeName","src":"2962:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14708,"mutability":"mutable","name":"valueAfter","nameLocation":"2989:10:45","nodeType":"VariableDeclaration","scope":14735,"src":"2982:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14707,"name":"uint32","nodeType":"ElementaryTypeName","src":"2982:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14710,"mutability":"mutable","name":"effect","nameLocation":"3008:6:45","nodeType":"VariableDeclaration","scope":14735,"src":"3001:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14709,"name":"uint48","nodeType":"ElementaryTypeName","src":"3001:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2961:54:45"},"scope":14919,"src":"2868:307:45","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":14754,"nodeType":"Block","src":"3499:53:45","statements":[{"expression":{"arguments":[{"id":14749,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14739,"src":"3527:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":14750,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14667,"src":"3533:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":14751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3533:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14748,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14735,"src":"3516:10:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$14682_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":14752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3516:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":14747,"id":14753,"nodeType":"Return","src":"3509:36:45"}]},"documentation":{"id":14736,"nodeType":"StructuredDocumentation","src":"3181:207:45","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":14755,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3402:7:45","nodeType":"FunctionDefinition","parameters":{"id":14740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14739,"mutability":"mutable","name":"self","nameLocation":"3416:4:45","nodeType":"VariableDeclaration","scope":14755,"src":"3410:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14738,"nodeType":"UserDefinedTypeName","pathNode":{"id":14737,"name":"Delay","nameLocations":["3410:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"3410:5:45"},"referencedDeclaration":14682,"src":"3410:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3409:12:45"},"returnParameters":{"id":14747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14742,"mutability":"mutable","name":"valueBefore","nameLocation":"3452:11:45","nodeType":"VariableDeclaration","scope":14755,"src":"3445:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14741,"name":"uint32","nodeType":"ElementaryTypeName","src":"3445:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14744,"mutability":"mutable","name":"valueAfter","nameLocation":"3472:10:45","nodeType":"VariableDeclaration","scope":14755,"src":"3465:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14743,"name":"uint32","nodeType":"ElementaryTypeName","src":"3465:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14746,"mutability":"mutable","name":"effect","nameLocation":"3491:6:45","nodeType":"VariableDeclaration","scope":14755,"src":"3484:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14745,"name":"uint48","nodeType":"ElementaryTypeName","src":"3484:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3444:54:45"},"scope":14919,"src":"3393:159:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14772,"nodeType":"Block","src":"3665:74:45","statements":[{"assignments":[14765,null,null],"declarations":[{"constant":false,"id":14765,"mutability":"mutable","name":"delay","nameLocation":"3683:5:45","nodeType":"VariableDeclaration","scope":14772,"src":"3676:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14764,"name":"uint32","nodeType":"ElementaryTypeName","src":"3676:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":14769,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14766,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14759,"src":"3696:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:7:45","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":14755,"src":"3696:12:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":14768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:14:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3675:35:45"},{"expression":{"id":14770,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14765,"src":"3727:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":14763,"id":14771,"nodeType":"Return","src":"3720:12:45"}]},"documentation":{"id":14756,"nodeType":"StructuredDocumentation","src":"3558:46:45","text":" @dev Get the current value."},"id":14773,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3618:3:45","nodeType":"FunctionDefinition","parameters":{"id":14760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14759,"mutability":"mutable","name":"self","nameLocation":"3628:4:45","nodeType":"VariableDeclaration","scope":14773,"src":"3622:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14758,"nodeType":"UserDefinedTypeName","pathNode":{"id":14757,"name":"Delay","nameLocations":["3622:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"3622:5:45"},"referencedDeclaration":14682,"src":"3622:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3621:12:45"},"returnParameters":{"id":14763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14762,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14773,"src":"3657:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14761,"name":"uint32","nodeType":"ElementaryTypeName","src":"3657:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3656:8:45"},"scope":14919,"src":"3609:130:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14828,"nodeType":"Block","src":"4189:234:45","statements":[{"assignments":[14790],"declarations":[{"constant":false,"id":14790,"mutability":"mutable","name":"value","nameLocation":"4206:5:45","nodeType":"VariableDeclaration","scope":14828,"src":"4199:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14789,"name":"uint32","nodeType":"ElementaryTypeName","src":"4199:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":14794,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14791,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14777,"src":"4214:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4219:3:45","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":14773,"src":"4214:8:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":14793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:10:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4199:25:45"},{"assignments":[14796],"declarations":[{"constant":false,"id":14796,"mutability":"mutable","name":"setback","nameLocation":"4241:7:45","nodeType":"VariableDeclaration","scope":14828,"src":"4234:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14795,"name":"uint32","nodeType":"ElementaryTypeName","src":"4234:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":14812,"initialValue":{"arguments":[{"arguments":[{"id":14801,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14781,"src":"4267:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":14804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14802,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4279:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14803,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4287:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4279:16:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":14808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4317:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":14809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4279:39:45","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":14807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14805,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4298:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":14806,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4306:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4298:16:45","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":14799,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"4258:4:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4263:3:45","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"4258:8:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4258:61:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14798,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4251:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14797,"name":"uint32","nodeType":"ElementaryTypeName","src":"4251:6:45","typeDescriptions":{}}},"id":14811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4251:69:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4234:86:45"},{"expression":{"id":14818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14813,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4330:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":14814,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14667,"src":"4339:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":14815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4339:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":14816,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14796,"src":"4353:7:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4339:21:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4330:30:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":14819,"nodeType":"ExpressionStatement","src":"4330:30:45"},{"expression":{"components":[{"arguments":[{"id":14821,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4383:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14822,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4390:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14823,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4400:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14820,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"4378:4:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":14824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},{"id":14825,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4409:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14826,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4377:39:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$14682_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":14788,"id":14827,"nodeType":"Return","src":"4370:46:45"}]},"documentation":{"id":14774,"nodeType":"StructuredDocumentation","src":"3745:283:45","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":14829,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4042:10:45","nodeType":"FunctionDefinition","parameters":{"id":14782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14777,"mutability":"mutable","name":"self","nameLocation":"4068:4:45","nodeType":"VariableDeclaration","scope":14829,"src":"4062:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14776,"nodeType":"UserDefinedTypeName","pathNode":{"id":14775,"name":"Delay","nameLocations":["4062:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4062:5:45"},"referencedDeclaration":14682,"src":"4062:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14779,"mutability":"mutable","name":"newValue","nameLocation":"4089:8:45","nodeType":"VariableDeclaration","scope":14829,"src":"4082:15:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14778,"name":"uint32","nodeType":"ElementaryTypeName","src":"4082:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14781,"mutability":"mutable","name":"minSetback","nameLocation":"4114:10:45","nodeType":"VariableDeclaration","scope":14829,"src":"4107:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14780,"name":"uint32","nodeType":"ElementaryTypeName","src":"4107:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4052:78:45"},"returnParameters":{"id":14788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14785,"mutability":"mutable","name":"updatedDelay","nameLocation":"4160:12:45","nodeType":"VariableDeclaration","scope":14829,"src":"4154:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14784,"nodeType":"UserDefinedTypeName","pathNode":{"id":14783,"name":"Delay","nameLocations":["4154:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4154:5:45"},"referencedDeclaration":14682,"src":"4154:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14787,"mutability":"mutable","name":"effect","nameLocation":"4181:6:45","nodeType":"VariableDeclaration","scope":14829,"src":"4174:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14786,"name":"uint48","nodeType":"ElementaryTypeName","src":"4174:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4153:35:45"},"scope":14919,"src":"4033:390:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14879,"nodeType":"Block","src":"4656:212:45","statements":[{"assignments":[14843],"declarations":[{"constant":false,"id":14843,"mutability":"mutable","name":"raw","nameLocation":"4674:3:45","nodeType":"VariableDeclaration","scope":14879,"src":"4666:11:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":14842,"name":"uint112","nodeType":"ElementaryTypeName","src":"4666:7:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":14848,"initialValue":{"arguments":[{"id":14846,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14833,"src":"4693:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}],"expression":{"id":14844,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"4680:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4686:6:45","memberName":"unwrap","nodeType":"MemberAccess","src":"4680:12:45","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":14847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4680:18:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4666:32:45"},{"expression":{"id":14854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14849,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14838,"src":"4709:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14852,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4729:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14851,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4722:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14850,"name":"uint32","nodeType":"ElementaryTypeName","src":"4722:6:45","typeDescriptions":{}}},"id":14853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4722:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4709:24:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":14855,"nodeType":"ExpressionStatement","src":"4709:24:45"},{"expression":{"id":14863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14856,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14836,"src":"4743:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14859,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4764:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":14860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:2:45","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4764:9:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4757:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14857,"name":"uint32","nodeType":"ElementaryTypeName","src":"4757:6:45","typeDescriptions":{}}},"id":14862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4757:17:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4743:31:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":14864,"nodeType":"ExpressionStatement","src":"4743:31:45"},{"expression":{"id":14872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14865,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"4784:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14868,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4800:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":14869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4807:2:45","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4800:9:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4793:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":14866,"name":"uint48","nodeType":"ElementaryTypeName","src":"4793:6:45","typeDescriptions":{}}},"id":14871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4793:17:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4784:26:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":14873,"nodeType":"ExpressionStatement","src":"4784:26:45"},{"expression":{"components":[{"id":14874,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14836,"src":"4829:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14875,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14838,"src":"4842:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14876,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"4854:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14877,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":14841,"id":14878,"nodeType":"Return","src":"4821:40:45"}]},"documentation":{"id":14830,"nodeType":"StructuredDocumentation","src":"4429:117:45","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":14880,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4560:6:45","nodeType":"FunctionDefinition","parameters":{"id":14834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14833,"mutability":"mutable","name":"self","nameLocation":"4573:4:45","nodeType":"VariableDeclaration","scope":14880,"src":"4567:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14832,"nodeType":"UserDefinedTypeName","pathNode":{"id":14831,"name":"Delay","nameLocations":["4567:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4567:5:45"},"referencedDeclaration":14682,"src":"4567:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4566:12:45"},"returnParameters":{"id":14841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14836,"mutability":"mutable","name":"valueBefore","nameLocation":"4609:11:45","nodeType":"VariableDeclaration","scope":14880,"src":"4602:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14835,"name":"uint32","nodeType":"ElementaryTypeName","src":"4602:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14838,"mutability":"mutable","name":"valueAfter","nameLocation":"4629:10:45","nodeType":"VariableDeclaration","scope":14880,"src":"4622:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14837,"name":"uint32","nodeType":"ElementaryTypeName","src":"4622:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14840,"mutability":"mutable","name":"effect","nameLocation":"4648:6:45","nodeType":"VariableDeclaration","scope":14880,"src":"4641:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14839,"name":"uint48","nodeType":"ElementaryTypeName","src":"4641:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4601:54:45"},"scope":14919,"src":"4551:317:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14917,"nodeType":"Block","src":"5041:112:45","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14897,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14887,"src":"5078:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5070:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14895,"name":"uint112","nodeType":"ElementaryTypeName","src":"5070:7:45","typeDescriptions":{}}},"id":14898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:15:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":14899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5089:2:45","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5070:21:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":14901,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5069:23:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14904,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14883,"src":"5104:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":14903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5096:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14902,"name":"uint112","nodeType":"ElementaryTypeName","src":"5096:7:45","typeDescriptions":{}}},"id":14905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":14906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5120:2:45","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5096:26:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":14908,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5095:28:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:54:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":14912,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14885,"src":"5134:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":14911,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5126:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14910,"name":"uint112","nodeType":"ElementaryTypeName","src":"5126:7:45","typeDescriptions":{}}},"id":14913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5126:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:76:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":14893,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"5058:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5064:4:45","memberName":"wrap","nodeType":"MemberAccess","src":"5058:10:45","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":14915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5058:88:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"functionReturnParameters":14892,"id":14916,"nodeType":"Return","src":"5051:95:45"}]},"documentation":{"id":14881,"nodeType":"StructuredDocumentation","src":"4874:64:45","text":" @dev pack the components into a Delay object."},"id":14918,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4952:4:45","nodeType":"FunctionDefinition","parameters":{"id":14888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14883,"mutability":"mutable","name":"valueBefore","nameLocation":"4964:11:45","nodeType":"VariableDeclaration","scope":14918,"src":"4957:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14882,"name":"uint32","nodeType":"ElementaryTypeName","src":"4957:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14885,"mutability":"mutable","name":"valueAfter","nameLocation":"4984:10:45","nodeType":"VariableDeclaration","scope":14918,"src":"4977:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14884,"name":"uint32","nodeType":"ElementaryTypeName","src":"4977:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14887,"mutability":"mutable","name":"effect","nameLocation":"5003:6:45","nodeType":"VariableDeclaration","scope":14918,"src":"4996:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14886,"name":"uint48","nodeType":"ElementaryTypeName","src":"4996:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4956:54:45"},"returnParameters":{"id":14892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14891,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14918,"src":"5034:5:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14890,"nodeType":"UserDefinedTypeName","pathNode":{"id":14889,"name":"Delay","nameLocations":["5034:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"5034:5:45"},"referencedDeclaration":14682,"src":"5034:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5033:7:45"},"scope":14919,"src":"4943:210:45","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":14920,"src":"640:4515:45","usedErrors":[],"usedEvents":[]}],"src":"104:5052:45"},"id":45},"contracts/DLE.sol":{"ast":{"absolutePath":"contracts/DLE.sol","exportedSymbols":{"Address":[6688],"Checkpoints":[14290],"Context":[6718],"DLE":[16619],"DoubleEndedQueue":[14645],"EIP712":[8976],"ERC165":[9182],"ERC20":[6147],"ERC20Votes":[6357],"Governor":[2134],"GovernorCountingSimple":[3840],"GovernorSettings":[4021],"GovernorTimelockControl":[4366],"GovernorVotes":[4482],"GovernorVotesQuorumFraction":[4677],"IERC1155Receiver":[5551],"IERC165":[9194],"IERC6372":[5372],"IERC721Receiver":[6401],"IGovernor":[2588],"IVotes":[4760],"Nonces":[6808],"SafeCast":[12565],"SignatureChecker":[9158],"Strings":[8401],"TimelockController":[3608],"Votes":[5303]},"id":16620,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14921,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:46"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","id":14922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":6358,"src":"58:71:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"@openzeppelin/contracts/governance/Governor.sol","id":14923,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":2135,"src":"130:57:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","id":14924,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":4022,"src":"188:76:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","id":14925,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":3841,"src":"265:82:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","id":14926,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":4678,"src":"348:87:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","id":14927,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":4367,"src":"436:83:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"@openzeppelin/contracts/governance/utils/IVotes.sol","id":14928,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":4761,"src":"520:61:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"@openzeppelin/contracts/utils/Nonces.sol","id":14929,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":6809,"src":"582:50:46","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":14931,"name":"ERC20Votes","nameLocations":["803:10:46"],"nodeType":"IdentifierPath","referencedDeclaration":6357,"src":"803:10:46"},"id":14932,"nodeType":"InheritanceSpecifier","src":"803:10:46"},{"baseName":{"id":14933,"name":"Governor","nameLocations":["820:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"820:8:46"},"id":14934,"nodeType":"InheritanceSpecifier","src":"820:8:46"},{"baseName":{"id":14935,"name":"GovernorSettings","nameLocations":["835:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"835:16:46"},"id":14936,"nodeType":"InheritanceSpecifier","src":"835:16:46"},{"baseName":{"id":14937,"name":"GovernorCountingSimple","nameLocations":["858:22:46"],"nodeType":"IdentifierPath","referencedDeclaration":3840,"src":"858:22:46"},"id":14938,"nodeType":"InheritanceSpecifier","src":"858:22:46"},{"baseName":{"id":14939,"name":"GovernorVotesQuorumFraction","nameLocations":["887:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"887:27:46"},"id":14940,"nodeType":"InheritanceSpecifier","src":"887:27:46"},{"baseName":{"id":14941,"name":"GovernorTimelockControl","nameLocations":["921:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"921:23:46"},"id":14942,"nodeType":"InheritanceSpecifier","src":"921:23:46"}],"canonicalName":"DLE","contractDependencies":[],"contractKind":"contract","documentation":{"id":14930,"nodeType":"StructuredDocumentation","src":"634:147:46","text":" @title DLE (Digital Legal Entity)\n @dev Основной контракт DLE с отдельным модулем TimelockController."},"fullyImplemented":true,"id":16619,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[16619,4366,4677,4482,3840,4021,2134,5551,6401,2588,6357,5303,5357,4760,5372,6808,8976,5346,9182,9194,6147,5414,6383,6225,6718],"name":"DLE","nameLocation":"791:3:46","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DLE.DLEInfo","id":14964,"members":[{"constant":false,"id":14944,"mutability":"mutable","name":"name","nameLocation":"984:4:46","nodeType":"VariableDeclaration","scope":14964,"src":"977:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14943,"name":"string","nodeType":"ElementaryTypeName","src":"977:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14946,"mutability":"mutable","name":"symbol","nameLocation":"1005:6:46","nodeType":"VariableDeclaration","scope":14964,"src":"998:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14945,"name":"string","nodeType":"ElementaryTypeName","src":"998:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14948,"mutability":"mutable","name":"location","nameLocation":"1028:8:46","nodeType":"VariableDeclaration","scope":14964,"src":"1021:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14947,"name":"string","nodeType":"ElementaryTypeName","src":"1021:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14950,"mutability":"mutable","name":"coordinates","nameLocation":"1053:11:46","nodeType":"VariableDeclaration","scope":14964,"src":"1046:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14949,"name":"string","nodeType":"ElementaryTypeName","src":"1046:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14952,"mutability":"mutable","name":"jurisdiction","nameLocation":"1082:12:46","nodeType":"VariableDeclaration","scope":14964,"src":"1074:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14951,"name":"uint256","nodeType":"ElementaryTypeName","src":"1074:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14954,"mutability":"mutable","name":"oktmo","nameLocation":"1112:5:46","nodeType":"VariableDeclaration","scope":14964,"src":"1104:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14953,"name":"uint256","nodeType":"ElementaryTypeName","src":"1104:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14957,"mutability":"mutable","name":"okvedCodes","nameLocation":"1136:10:46","nodeType":"VariableDeclaration","scope":14964,"src":"1127:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14955,"name":"string","nodeType":"ElementaryTypeName","src":"1127:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14956,"nodeType":"ArrayTypeName","src":"1127:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":14959,"mutability":"mutable","name":"kpp","nameLocation":"1164:3:46","nodeType":"VariableDeclaration","scope":14964,"src":"1156:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14958,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14961,"mutability":"mutable","name":"creationTimestamp","nameLocation":"1185:17:46","nodeType":"VariableDeclaration","scope":14964,"src":"1177:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14960,"name":"uint256","nodeType":"ElementaryTypeName","src":"1177:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14963,"mutability":"mutable","name":"isActive","nameLocation":"1217:8:46","nodeType":"VariableDeclaration","scope":14964,"src":"1212:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14962,"name":"bool","nodeType":"ElementaryTypeName","src":"1212:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"DLEInfo","nameLocation":"959:7:46","nodeType":"StructDefinition","scope":16619,"src":"952:280:46","visibility":"public"},{"canonicalName":"DLE.DLEConfig","id":14996,"members":[{"constant":false,"id":14966,"mutability":"mutable","name":"name","nameLocation":"1272:4:46","nodeType":"VariableDeclaration","scope":14996,"src":"1265:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14965,"name":"string","nodeType":"ElementaryTypeName","src":"1265:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14968,"mutability":"mutable","name":"symbol","nameLocation":"1293:6:46","nodeType":"VariableDeclaration","scope":14996,"src":"1286:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14967,"name":"string","nodeType":"ElementaryTypeName","src":"1286:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14970,"mutability":"mutable","name":"location","nameLocation":"1316:8:46","nodeType":"VariableDeclaration","scope":14996,"src":"1309:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14969,"name":"string","nodeType":"ElementaryTypeName","src":"1309:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14972,"mutability":"mutable","name":"coordinates","nameLocation":"1341:11:46","nodeType":"VariableDeclaration","scope":14996,"src":"1334:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14971,"name":"string","nodeType":"ElementaryTypeName","src":"1334:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14974,"mutability":"mutable","name":"jurisdiction","nameLocation":"1370:12:46","nodeType":"VariableDeclaration","scope":14996,"src":"1362:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14973,"name":"uint256","nodeType":"ElementaryTypeName","src":"1362:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14976,"mutability":"mutable","name":"oktmo","nameLocation":"1400:5:46","nodeType":"VariableDeclaration","scope":14996,"src":"1392:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14975,"name":"uint256","nodeType":"ElementaryTypeName","src":"1392:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14979,"mutability":"mutable","name":"okvedCodes","nameLocation":"1424:10:46","nodeType":"VariableDeclaration","scope":14996,"src":"1415:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14977,"name":"string","nodeType":"ElementaryTypeName","src":"1415:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14978,"nodeType":"ArrayTypeName","src":"1415:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":14981,"mutability":"mutable","name":"kpp","nameLocation":"1452:3:46","nodeType":"VariableDeclaration","scope":14996,"src":"1444:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14980,"name":"uint256","nodeType":"ElementaryTypeName","src":"1444:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14983,"mutability":"mutable","name":"votingDelay","nameLocation":"1472:11:46","nodeType":"VariableDeclaration","scope":14996,"src":"1465:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14982,"name":"uint48","nodeType":"ElementaryTypeName","src":"1465:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14985,"mutability":"mutable","name":"votingPeriod","nameLocation":"1500:12:46","nodeType":"VariableDeclaration","scope":14996,"src":"1493:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14984,"name":"uint32","nodeType":"ElementaryTypeName","src":"1493:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14987,"mutability":"mutable","name":"proposalThreshold","nameLocation":"1530:17:46","nodeType":"VariableDeclaration","scope":14996,"src":"1522:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14986,"name":"uint256","nodeType":"ElementaryTypeName","src":"1522:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14989,"mutability":"mutable","name":"quorumPercentage","nameLocation":"1565:16:46","nodeType":"VariableDeclaration","scope":14996,"src":"1557:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14988,"name":"uint256","nodeType":"ElementaryTypeName","src":"1557:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14992,"mutability":"mutable","name":"initialPartners","nameLocation":"1601:15:46","nodeType":"VariableDeclaration","scope":14996,"src":"1591:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":14990,"name":"address","nodeType":"ElementaryTypeName","src":"1591:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":14991,"nodeType":"ArrayTypeName","src":"1591:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":14995,"mutability":"mutable","name":"initialAmounts","nameLocation":"1636:14:46","nodeType":"VariableDeclaration","scope":14996,"src":"1626:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":14993,"name":"uint256","nodeType":"ElementaryTypeName","src":"1626:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14994,"nodeType":"ArrayTypeName","src":"1626:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"name":"DLEConfig","nameLocation":"1245:9:46","nodeType":"StructDefinition","scope":16619,"src":"1238:419:46","visibility":"public"},{"canonicalName":"DLE.Proposal","id":15017,"members":[{"constant":false,"id":14998,"mutability":"mutable","name":"operation","nameLocation":"1695:9:46","nodeType":"VariableDeclaration","scope":15017,"src":"1689:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":14997,"name":"bytes","nodeType":"ElementaryTypeName","src":"1689:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15001,"mutability":"mutable","name":"targetChains","nameLocation":"1724:12:46","nodeType":"VariableDeclaration","scope":15017,"src":"1714:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":14999,"name":"uint256","nodeType":"ElementaryTypeName","src":"1714:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15000,"nodeType":"ArrayTypeName","src":"1714:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15003,"mutability":"mutable","name":"timelock","nameLocation":"1754:8:46","nodeType":"VariableDeclaration","scope":15017,"src":"1746:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15002,"name":"uint256","nodeType":"ElementaryTypeName","src":"1746:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15005,"mutability":"mutable","name":"governanceChain","nameLocation":"1780:15:46","nodeType":"VariableDeclaration","scope":15017,"src":"1772:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15004,"name":"uint256","nodeType":"ElementaryTypeName","src":"1772:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15007,"mutability":"mutable","name":"initiator","nameLocation":"1813:9:46","nodeType":"VariableDeclaration","scope":15017,"src":"1805:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15006,"name":"address","nodeType":"ElementaryTypeName","src":"1805:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15010,"mutability":"mutable","name":"signatures","nameLocation":"1840:10:46","nodeType":"VariableDeclaration","scope":15017,"src":"1832:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15008,"name":"bytes","nodeType":"ElementaryTypeName","src":"1832:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15009,"nodeType":"ArrayTypeName","src":"1832:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15012,"mutability":"mutable","name":"executed","nameLocation":"1865:8:46","nodeType":"VariableDeclaration","scope":15017,"src":"1860:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15011,"name":"bool","nodeType":"ElementaryTypeName","src":"1860:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15014,"mutability":"mutable","name":"quorumRequired","nameLocation":"1891:14:46","nodeType":"VariableDeclaration","scope":15017,"src":"1883:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15013,"name":"uint256","nodeType":"ElementaryTypeName","src":"1883:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15016,"mutability":"mutable","name":"signaturesCount","nameLocation":"1923:15:46","nodeType":"VariableDeclaration","scope":15017,"src":"1915:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15015,"name":"uint256","nodeType":"ElementaryTypeName","src":"1915:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Proposal","nameLocation":"1670:8:46","nodeType":"StructDefinition","scope":16619,"src":"1663:282:46","visibility":"public"},{"canonicalName":"DLE.TokenDistributionProposal","id":15039,"members":[{"constant":false,"id":15020,"mutability":"mutable","name":"partners","nameLocation":"2004:8:46","nodeType":"VariableDeclaration","scope":15039,"src":"1994:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15018,"name":"address","nodeType":"ElementaryTypeName","src":"1994:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15019,"nodeType":"ArrayTypeName","src":"1994:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15023,"mutability":"mutable","name":"amounts","nameLocation":"2032:7:46","nodeType":"VariableDeclaration","scope":15039,"src":"2022:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15021,"name":"uint256","nodeType":"ElementaryTypeName","src":"2022:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15022,"nodeType":"ArrayTypeName","src":"2022:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15025,"mutability":"mutable","name":"timelock","nameLocation":"2057:8:46","nodeType":"VariableDeclaration","scope":15039,"src":"2049:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15024,"name":"uint256","nodeType":"ElementaryTypeName","src":"2049:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15027,"mutability":"mutable","name":"initiator","nameLocation":"2083:9:46","nodeType":"VariableDeclaration","scope":15039,"src":"2075:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15026,"name":"address","nodeType":"ElementaryTypeName","src":"2075:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15030,"mutability":"mutable","name":"signatures","nameLocation":"2110:10:46","nodeType":"VariableDeclaration","scope":15039,"src":"2102:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15028,"name":"bytes","nodeType":"ElementaryTypeName","src":"2102:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15029,"nodeType":"ArrayTypeName","src":"2102:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15032,"mutability":"mutable","name":"executed","nameLocation":"2135:8:46","nodeType":"VariableDeclaration","scope":15039,"src":"2130:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15031,"name":"bool","nodeType":"ElementaryTypeName","src":"2130:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15034,"mutability":"mutable","name":"quorumRequired","nameLocation":"2161:14:46","nodeType":"VariableDeclaration","scope":15039,"src":"2153:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15033,"name":"uint256","nodeType":"ElementaryTypeName","src":"2153:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15036,"mutability":"mutable","name":"signaturesCount","nameLocation":"2193:15:46","nodeType":"VariableDeclaration","scope":15039,"src":"2185:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15035,"name":"uint256","nodeType":"ElementaryTypeName","src":"2185:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15038,"mutability":"mutable","name":"description","nameLocation":"2225:11:46","nodeType":"VariableDeclaration","scope":15039,"src":"2218:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":15037,"name":"string","nodeType":"ElementaryTypeName","src":"2218:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"TokenDistributionProposal","nameLocation":"1958:25:46","nodeType":"StructDefinition","scope":16619,"src":"1951:292:46","visibility":"public"},{"canonicalName":"DLE.TreasuryProposal","id":15059,"members":[{"constant":false,"id":15041,"mutability":"mutable","name":"recipient","nameLocation":"2291:9:46","nodeType":"VariableDeclaration","scope":15059,"src":"2283:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15040,"name":"address","nodeType":"ElementaryTypeName","src":"2283:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15043,"mutability":"mutable","name":"amount","nameLocation":"2318:6:46","nodeType":"VariableDeclaration","scope":15059,"src":"2310:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15042,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15045,"mutability":"mutable","name":"timelock","nameLocation":"2342:8:46","nodeType":"VariableDeclaration","scope":15059,"src":"2334:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15044,"name":"uint256","nodeType":"ElementaryTypeName","src":"2334:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15047,"mutability":"mutable","name":"initiator","nameLocation":"2368:9:46","nodeType":"VariableDeclaration","scope":15059,"src":"2360:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15046,"name":"address","nodeType":"ElementaryTypeName","src":"2360:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15050,"mutability":"mutable","name":"signatures","nameLocation":"2395:10:46","nodeType":"VariableDeclaration","scope":15059,"src":"2387:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15048,"name":"bytes","nodeType":"ElementaryTypeName","src":"2387:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15049,"nodeType":"ArrayTypeName","src":"2387:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15052,"mutability":"mutable","name":"executed","nameLocation":"2420:8:46","nodeType":"VariableDeclaration","scope":15059,"src":"2415:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15051,"name":"bool","nodeType":"ElementaryTypeName","src":"2415:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15054,"mutability":"mutable","name":"quorumRequired","nameLocation":"2446:14:46","nodeType":"VariableDeclaration","scope":15059,"src":"2438:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15053,"name":"uint256","nodeType":"ElementaryTypeName","src":"2438:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15056,"mutability":"mutable","name":"signaturesCount","nameLocation":"2478:15:46","nodeType":"VariableDeclaration","scope":15059,"src":"2470:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15055,"name":"uint256","nodeType":"ElementaryTypeName","src":"2470:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15058,"mutability":"mutable","name":"description","nameLocation":"2510:11:46","nodeType":"VariableDeclaration","scope":15059,"src":"2503:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":15057,"name":"string","nodeType":"ElementaryTypeName","src":"2503:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"TreasuryProposal","nameLocation":"2256:16:46","nodeType":"StructDefinition","scope":16619,"src":"2249:279:46","visibility":"public"},{"constant":false,"functionSelector":"f2c26a47","id":15062,"mutability":"mutable","name":"dleInfo","nameLocation":"2549:7:46","nodeType":"VariableDeclaration","scope":16619,"src":"2534:22:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo"},"typeName":{"id":15061,"nodeType":"UserDefinedTypeName","pathNode":{"id":15060,"name":"DLEInfo","nameLocations":["2534:7:46"],"nodeType":"IdentifierPath","referencedDeclaration":14964,"src":"2534:7:46"},"referencedDeclaration":14964,"src":"2534:7:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"public"},{"constant":false,"functionSelector":"013cf08b","id":15067,"mutability":"mutable","name":"proposals","nameLocation":"2598:9:46","nodeType":"VariableDeclaration","scope":16619,"src":"2562:45:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15017_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"typeName":{"id":15066,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":15063,"name":"uint256","nodeType":"ElementaryTypeName","src":"2570:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2562:28:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15017_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":15065,"nodeType":"UserDefinedTypeName","pathNode":{"id":15064,"name":"Proposal","nameLocations":["2581:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":15017,"src":"2581:8:46"},"referencedDeclaration":15017,"src":"2581:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"82308158","id":15072,"mutability":"mutable","name":"tokenDistributionProposals","nameLocation":"2666:26:46","nodeType":"VariableDeclaration","scope":16619,"src":"2613:79:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal)"},"typeName":{"id":15071,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":15068,"name":"uint256","nodeType":"ElementaryTypeName","src":"2621:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2613:45:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":15070,"nodeType":"UserDefinedTypeName","pathNode":{"id":15069,"name":"TokenDistributionProposal","nameLocations":["2632:25:46"],"nodeType":"IdentifierPath","referencedDeclaration":15039,"src":"2632:25:46"},"referencedDeclaration":15039,"src":"2632:25:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"0eb12596","id":15077,"mutability":"mutable","name":"treasuryProposals","nameLocation":"2742:17:46","nodeType":"VariableDeclaration","scope":16619,"src":"2698:61:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal)"},"typeName":{"id":15076,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":15073,"name":"uint256","nodeType":"ElementaryTypeName","src":"2706:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2698:36:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":15075,"nodeType":"UserDefinedTypeName","pathNode":{"id":15074,"name":"TreasuryProposal","nameLocations":["2717:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":15059,"src":"2717:16:46"},"referencedDeclaration":15059,"src":"2717:16:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"0c0512e9","id":15079,"mutability":"mutable","name":"proposalCounter","nameLocation":"2780:15:46","nodeType":"VariableDeclaration","scope":16619,"src":"2765:30:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15078,"name":"uint256","nodeType":"ElementaryTypeName","src":"2765:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"fd5c4be7","id":15081,"mutability":"mutable","name":"tokenDistributionProposalCounter","nameLocation":"2816:32:46","nodeType":"VariableDeclaration","scope":16619,"src":"2801:47:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15080,"name":"uint256","nodeType":"ElementaryTypeName","src":"2801:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"9be65b40","id":15083,"mutability":"mutable","name":"treasuryProposalCounter","nameLocation":"2869:23:46","nodeType":"VariableDeclaration","scope":16619,"src":"2854:38:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15082,"name":"uint256","nodeType":"ElementaryTypeName","src":"2854:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"4fa76ec9","id":15085,"mutability":"mutable","name":"quorumPercentage","nameLocation":"2913:16:46","nodeType":"VariableDeclaration","scope":16619,"src":"2898:31:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15084,"name":"uint256","nodeType":"ElementaryTypeName","src":"2898:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0965211e","id":15088,"mutability":"mutable","name":"initialTokensDistributed","nameLocation":"2947:24:46","nodeType":"VariableDeclaration","scope":16619,"src":"2935:44:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15086,"name":"bool","nodeType":"ElementaryTypeName","src":"2935:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"value":{"hexValue":"66616c7365","id":15087,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2974:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"visibility":"public"},{"constant":false,"functionSelector":"96e973fb","id":15092,"mutability":"mutable","name":"lastWithdrawalBlock","nameLocation":"3068:19:46","nodeType":"VariableDeclaration","scope":16619,"src":"3033:54:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":15091,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":15089,"name":"address","nodeType":"ElementaryTypeName","src":"3041:7:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3033:27:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":15090,"name":"uint256","nodeType":"ElementaryTypeName","src":"3052:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"ec4a59d9","id":15094,"mutability":"mutable","name":"totalTreasuryBalance","nameLocation":"3187:20:46","nodeType":"VariableDeclaration","scope":16619,"src":"3172:35:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15093,"name":"uint256","nodeType":"ElementaryTypeName","src":"3172:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"anonymous":false,"eventSelector":"5cc2d55798cee8f02a1864e506ff754519b7fbe25d3bd5258441c00b83b7bb04","id":15119,"name":"DLEInitialized","nameLocation":"3258:14:46","nodeType":"EventDefinition","parameters":{"id":15118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15096,"indexed":false,"mutability":"mutable","name":"name","nameLocation":"3289:4:46","nodeType":"VariableDeclaration","scope":15119,"src":"3282:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15095,"name":"string","nodeType":"ElementaryTypeName","src":"3282:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15098,"indexed":false,"mutability":"mutable","name":"symbol","nameLocation":"3310:6:46","nodeType":"VariableDeclaration","scope":15119,"src":"3303:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15097,"name":"string","nodeType":"ElementaryTypeName","src":"3303:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15100,"indexed":false,"mutability":"mutable","name":"location","nameLocation":"3333:8:46","nodeType":"VariableDeclaration","scope":15119,"src":"3326:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15099,"name":"string","nodeType":"ElementaryTypeName","src":"3326:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15102,"indexed":false,"mutability":"mutable","name":"coordinates","nameLocation":"3358:11:46","nodeType":"VariableDeclaration","scope":15119,"src":"3351:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15101,"name":"string","nodeType":"ElementaryTypeName","src":"3351:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15104,"indexed":false,"mutability":"mutable","name":"jurisdiction","nameLocation":"3387:12:46","nodeType":"VariableDeclaration","scope":15119,"src":"3379:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15103,"name":"uint256","nodeType":"ElementaryTypeName","src":"3379:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15106,"indexed":false,"mutability":"mutable","name":"oktmo","nameLocation":"3417:5:46","nodeType":"VariableDeclaration","scope":15119,"src":"3409:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15105,"name":"uint256","nodeType":"ElementaryTypeName","src":"3409:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15109,"indexed":false,"mutability":"mutable","name":"okvedCodes","nameLocation":"3441:10:46","nodeType":"VariableDeclaration","scope":15119,"src":"3432:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":15107,"name":"string","nodeType":"ElementaryTypeName","src":"3432:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":15108,"nodeType":"ArrayTypeName","src":"3432:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":15111,"indexed":false,"mutability":"mutable","name":"kpp","nameLocation":"3469:3:46","nodeType":"VariableDeclaration","scope":15119,"src":"3461:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15110,"name":"uint256","nodeType":"ElementaryTypeName","src":"3461:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15113,"indexed":false,"mutability":"mutable","name":"tokenAddress","nameLocation":"3490:12:46","nodeType":"VariableDeclaration","scope":15119,"src":"3482:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15112,"name":"address","nodeType":"ElementaryTypeName","src":"3482:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15115,"indexed":false,"mutability":"mutable","name":"timelockAddress","nameLocation":"3520:15:46","nodeType":"VariableDeclaration","scope":15119,"src":"3512:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15114,"name":"address","nodeType":"ElementaryTypeName","src":"3512:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15117,"indexed":false,"mutability":"mutable","name":"governorAddress","nameLocation":"3553:15:46","nodeType":"VariableDeclaration","scope":15119,"src":"3545:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15116,"name":"address","nodeType":"ElementaryTypeName","src":"3545:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3272:302:46"},"src":"3252:323:46"},{"anonymous":false,"eventSelector":"f9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a5","id":15127,"name":"InitialTokensDistributed","nameLocation":"3586:24:46","nodeType":"EventDefinition","parameters":{"id":15126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15122,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"3621:8:46","nodeType":"VariableDeclaration","scope":15127,"src":"3611:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15120,"name":"address","nodeType":"ElementaryTypeName","src":"3611:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15121,"nodeType":"ArrayTypeName","src":"3611:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15125,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"3641:7:46","nodeType":"VariableDeclaration","scope":15127,"src":"3631:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15123,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15124,"nodeType":"ArrayTypeName","src":"3631:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"3610:39:46"},"src":"3580:70:46"},{"anonymous":false,"eventSelector":"bd67ec2db294b72ed21ac12cf37aa44775b63ea7ab9345652a1d28be069c4100","id":15133,"name":"TokensDepositedToTreasury","nameLocation":"3661:25:46","nodeType":"EventDefinition","parameters":{"id":15132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15129,"indexed":false,"mutability":"mutable","name":"depositor","nameLocation":"3695:9:46","nodeType":"VariableDeclaration","scope":15133,"src":"3687:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15128,"name":"address","nodeType":"ElementaryTypeName","src":"3687:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15131,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"3714:6:46","nodeType":"VariableDeclaration","scope":15133,"src":"3706:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15130,"name":"uint256","nodeType":"ElementaryTypeName","src":"3706:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3686:35:46"},"src":"3655:67:46"},{"anonymous":false,"eventSelector":"f80f5ce91f7d79d29fd2bd635816739c0fae47505f5a30a820e49ace80884165","id":15145,"name":"TreasuryProposalCreated","nameLocation":"3733:23:46","nodeType":"EventDefinition","parameters":{"id":15144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15135,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3765:10:46","nodeType":"VariableDeclaration","scope":15145,"src":"3757:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15134,"name":"uint256","nodeType":"ElementaryTypeName","src":"3757:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15137,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"3785:9:46","nodeType":"VariableDeclaration","scope":15145,"src":"3777:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15136,"name":"address","nodeType":"ElementaryTypeName","src":"3777:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15139,"indexed":false,"mutability":"mutable","name":"recipient","nameLocation":"3804:9:46","nodeType":"VariableDeclaration","scope":15145,"src":"3796:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15138,"name":"address","nodeType":"ElementaryTypeName","src":"3796:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15141,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"3823:6:46","nodeType":"VariableDeclaration","scope":15145,"src":"3815:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15140,"name":"uint256","nodeType":"ElementaryTypeName","src":"3815:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15143,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3838:11:46","nodeType":"VariableDeclaration","scope":15145,"src":"3831:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15142,"name":"string","nodeType":"ElementaryTypeName","src":"3831:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3756:94:46"},"src":"3727:124:46"},{"anonymous":false,"eventSelector":"c5fb6601ac4858dba31868a09f1646a3bfe4638f325353bb142719b81e3645a1","id":15153,"name":"TreasuryProposalSigned","nameLocation":"3862:22:46","nodeType":"EventDefinition","parameters":{"id":15152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15147,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3893:10:46","nodeType":"VariableDeclaration","scope":15153,"src":"3885:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15146,"name":"uint256","nodeType":"ElementaryTypeName","src":"3885:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15149,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"3913:6:46","nodeType":"VariableDeclaration","scope":15153,"src":"3905:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15148,"name":"address","nodeType":"ElementaryTypeName","src":"3905:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15151,"indexed":false,"mutability":"mutable","name":"signaturesCount","nameLocation":"3929:15:46","nodeType":"VariableDeclaration","scope":15153,"src":"3921:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15150,"name":"uint256","nodeType":"ElementaryTypeName","src":"3921:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3884:61:46"},"src":"3856:90:46"},{"anonymous":false,"eventSelector":"0bb768aa97fa4e8a8f73bfa7bc210f1a29f29c765d44f0c29acc04a549e32e43","id":15161,"name":"TreasuryProposalExecuted","nameLocation":"3957:24:46","nodeType":"EventDefinition","parameters":{"id":15160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15155,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3990:10:46","nodeType":"VariableDeclaration","scope":15161,"src":"3982:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15154,"name":"uint256","nodeType":"ElementaryTypeName","src":"3982:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15157,"indexed":false,"mutability":"mutable","name":"recipient","nameLocation":"4010:9:46","nodeType":"VariableDeclaration","scope":15161,"src":"4002:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15156,"name":"address","nodeType":"ElementaryTypeName","src":"4002:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15159,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4029:6:46","nodeType":"VariableDeclaration","scope":15161,"src":"4021:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15158,"name":"uint256","nodeType":"ElementaryTypeName","src":"4021:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3981:55:46"},"src":"3951:86:46"},{"anonymous":false,"eventSelector":"8fd808cdcd18f44b7f33c61fb97b83154c1d653ef4a9a2d236b290644edd6c83","id":15175,"name":"TokenDistributionProposalCreated","nameLocation":"4048:32:46","nodeType":"EventDefinition","parameters":{"id":15174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15163,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4089:10:46","nodeType":"VariableDeclaration","scope":15175,"src":"4081:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15162,"name":"uint256","nodeType":"ElementaryTypeName","src":"4081:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15165,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"4109:9:46","nodeType":"VariableDeclaration","scope":15175,"src":"4101:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15164,"name":"address","nodeType":"ElementaryTypeName","src":"4101:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15168,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"4130:8:46","nodeType":"VariableDeclaration","scope":15175,"src":"4120:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15166,"name":"address","nodeType":"ElementaryTypeName","src":"4120:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15167,"nodeType":"ArrayTypeName","src":"4120:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15171,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"4150:7:46","nodeType":"VariableDeclaration","scope":15175,"src":"4140:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15169,"name":"uint256","nodeType":"ElementaryTypeName","src":"4140:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15170,"nodeType":"ArrayTypeName","src":"4140:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15173,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"4166:11:46","nodeType":"VariableDeclaration","scope":15175,"src":"4159:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15172,"name":"string","nodeType":"ElementaryTypeName","src":"4159:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4080:98:46"},"src":"4042:137:46"},{"anonymous":false,"eventSelector":"77c69d1b59f862d9677ac552a49c26ba3fe18ccc64ad8da630a5343c306dea61","id":15183,"name":"TokenDistributionProposalSigned","nameLocation":"4190:31:46","nodeType":"EventDefinition","parameters":{"id":15182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15177,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4230:10:46","nodeType":"VariableDeclaration","scope":15183,"src":"4222:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15176,"name":"uint256","nodeType":"ElementaryTypeName","src":"4222:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15179,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"4250:6:46","nodeType":"VariableDeclaration","scope":15183,"src":"4242:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15178,"name":"address","nodeType":"ElementaryTypeName","src":"4242:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15181,"indexed":false,"mutability":"mutable","name":"signaturesCount","nameLocation":"4266:15:46","nodeType":"VariableDeclaration","scope":15183,"src":"4258:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15180,"name":"uint256","nodeType":"ElementaryTypeName","src":"4258:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4221:61:46"},"src":"4184:99:46"},{"anonymous":false,"eventSelector":"e8585c604452fcb59bc021fce36eb8241ffc18bd81b50ce6cd5cea81ceeaa58d","id":15193,"name":"TokenDistributionProposalExecuted","nameLocation":"4294:33:46","nodeType":"EventDefinition","parameters":{"id":15192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15185,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4336:10:46","nodeType":"VariableDeclaration","scope":15193,"src":"4328:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15184,"name":"uint256","nodeType":"ElementaryTypeName","src":"4328:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15188,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"4358:8:46","nodeType":"VariableDeclaration","scope":15193,"src":"4348:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15186,"name":"address","nodeType":"ElementaryTypeName","src":"4348:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15187,"nodeType":"ArrayTypeName","src":"4348:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15191,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"4378:7:46","nodeType":"VariableDeclaration","scope":15193,"src":"4368:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15189,"name":"uint256","nodeType":"ElementaryTypeName","src":"4368:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15190,"nodeType":"ArrayTypeName","src":"4368:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"4327:59:46"},"src":"4288:99:46"},{"anonymous":false,"eventSelector":"2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf","id":15201,"name":"ProposalCreated","nameLocation":"4398:15:46","nodeType":"EventDefinition","parameters":{"id":15200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15195,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4422:10:46","nodeType":"VariableDeclaration","scope":15201,"src":"4414:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15194,"name":"uint256","nodeType":"ElementaryTypeName","src":"4414:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15197,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"4442:9:46","nodeType":"VariableDeclaration","scope":15201,"src":"4434:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15196,"name":"address","nodeType":"ElementaryTypeName","src":"4434:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15199,"indexed":false,"mutability":"mutable","name":"operation","nameLocation":"4459:9:46","nodeType":"VariableDeclaration","scope":15201,"src":"4453:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15198,"name":"bytes","nodeType":"ElementaryTypeName","src":"4453:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4413:56:46"},"src":"4392:78:46"},{"anonymous":false,"eventSelector":"9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d1","id":15209,"name":"ProposalSigned","nameLocation":"4481:14:46","nodeType":"EventDefinition","parameters":{"id":15208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15203,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4504:10:46","nodeType":"VariableDeclaration","scope":15209,"src":"4496:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15202,"name":"uint256","nodeType":"ElementaryTypeName","src":"4496:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15205,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"4524:6:46","nodeType":"VariableDeclaration","scope":15209,"src":"4516:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15204,"name":"address","nodeType":"ElementaryTypeName","src":"4516:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15207,"indexed":false,"mutability":"mutable","name":"signaturesCount","nameLocation":"4540:15:46","nodeType":"VariableDeclaration","scope":15209,"src":"4532:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15206,"name":"uint256","nodeType":"ElementaryTypeName","src":"4532:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4495:61:46"},"src":"4475:82:46"},{"anonymous":false,"eventSelector":"5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60","id":15215,"name":"ModuleInstalled","nameLocation":"4568:15:46","nodeType":"EventDefinition","parameters":{"id":15214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15211,"indexed":false,"mutability":"mutable","name":"moduleName","nameLocation":"4591:10:46","nodeType":"VariableDeclaration","scope":15215,"src":"4584:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15210,"name":"string","nodeType":"ElementaryTypeName","src":"4584:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15213,"indexed":false,"mutability":"mutable","name":"moduleAddress","nameLocation":"4611:13:46","nodeType":"VariableDeclaration","scope":15215,"src":"4603:21:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15212,"name":"address","nodeType":"ElementaryTypeName","src":"4603:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4583:42:46"},"src":"4562:64:46"},{"body":{"id":15397,"nodeType":"Block","src":"5068:1583:46","statements":[{"expression":{"id":15283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15261,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15062,"src":"5078:7:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":15263,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5116:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5123:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"5116:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15265,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5149:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5156:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"5149:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15267,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5186:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5193:8:46","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":14970,"src":"5186:15:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15269,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5228:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15270,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5235:11:46","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":14972,"src":"5228:18:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15271,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5274:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15272,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5281:12:46","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":14974,"src":"5274:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15273,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5314:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5321:5:46","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":14976,"src":"5314:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15275,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5352:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15276,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5359:10:46","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":14979,"src":"5352:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":15277,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5388:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15278,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5395:3:46","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":14981,"src":"5388:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15279,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5431:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5437:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"5431:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":15281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5470:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":15262,"name":"DLEInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14964,"src":"5088:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DLEInfo_$14964_storage_ptr_$","typeString":"type(struct DLE.DLEInfo storage pointer)"}},"id":15282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5110:4:46","5141:6:46","5176:8:46","5215:11:46","5260:12:46","5307:5:46","5340:10:46","5383:3:46","5412:17:46","5460:8:46"],"names":["name","symbol","location","coordinates","jurisdiction","oktmo","okvedCodes","kpp","creationTimestamp","isActive"],"nodeType":"FunctionCall","src":"5088:397:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_memory_ptr","typeString":"struct DLE.DLEInfo memory"}},"src":"5078:407:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo storage ref"}},"id":15284,"nodeType":"ExpressionStatement","src":"5078:407:46"},{"expression":{"id":15288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15285,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"5495:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":15286,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5514:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15287,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5521:16:46","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":14989,"src":"5514:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5495:42:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15289,"nodeType":"ExpressionStatement","src":"5495:42:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":15291,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5690:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15292,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5697:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"5690:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5713:6:46","memberName":"length","nodeType":"MemberAccess","src":"5690:29:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":15294,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5723:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5730:14:46","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":14995,"src":"5723:21:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5745:6:46","memberName":"length","nodeType":"MemberAccess","src":"5723:28:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5690:61:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":15298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5753:24:46","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":15290,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5682:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5682:96:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15300,"nodeType":"ExpressionStatement","src":"5682:96:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":15302,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5796:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15303,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5803:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"5796:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5819:6:46","memberName":"length","nodeType":"MemberAccess","src":"5796:29:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5828:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5796:33:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20696e697469616c20706172746e657273","id":15307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5831:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""},"value":"No initial partners"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""}],"id":15301,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5788:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5788:65:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15309,"nodeType":"ExpressionStatement","src":"5788:65:46"},{"body":{"id":15356,"nodeType":"Block","src":"5932:227:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":15323,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5954:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15324,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5961:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"5954:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15326,"indexExpression":{"id":15325,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"5977:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5954:25:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":15329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5991:1:46","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":15328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5983:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15327,"name":"address","nodeType":"ElementaryTypeName","src":"5983:7:46","typeDescriptions":{}}},"id":15330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5983:10:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5954:39:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":15332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5995:14:46","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":15322,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5946:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5946:64:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15334,"nodeType":"ExpressionStatement","src":"5946:64:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":15336,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6032:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15337,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6039:14:46","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":14995,"src":"6032:21:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15339,"indexExpression":{"id":15338,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"6054:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6032:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6059:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6032:28:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":15342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6062:13:46","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":15335,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6024:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6024:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15344,"nodeType":"ExpressionStatement","src":"6024:52:46"},{"expression":{"arguments":[{"baseExpression":{"expression":{"id":15346,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6096:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6103:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"6096:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15349,"indexExpression":{"id":15348,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"6119:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6096:25:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"expression":{"id":15350,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6123:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6130:14:46","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":14995,"src":"6123:21:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15353,"indexExpression":{"id":15352,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"6145:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6123:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15345,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5987,"src":"6090:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6090:58:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15355,"nodeType":"ExpressionStatement","src":"6090:58:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15314,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"5892:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":15315,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"5896:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15316,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5903:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"5896:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5919:6:46","memberName":"length","nodeType":"MemberAccess","src":"5896:29:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5892:33:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15357,"initializationExpression":{"assignments":[15311],"declarations":[{"constant":false,"id":15311,"mutability":"mutable","name":"i","nameLocation":"5885:1:46","nodeType":"VariableDeclaration","scope":15357,"src":"5877:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15310,"name":"uint256","nodeType":"ElementaryTypeName","src":"5877:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15313,"initialValue":{"hexValue":"30","id":15312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5889:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"5877:13:46"},"loopExpression":{"expression":{"id":15320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5927:3:46","subExpression":{"id":15319,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15311,"src":"5927:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15321,"nodeType":"ExpressionStatement","src":"5927:3:46"},"nodeType":"ForStatement","src":"5872:287:46"},{"expression":{"id":15360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15358,"name":"initialTokensDistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"6177:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":15359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6204:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6177:31:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15361,"nodeType":"ExpressionStatement","src":"6177:31:46"},{"eventCall":{"arguments":[{"expression":{"id":15363,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6248:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15364,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6255:15:46","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":14992,"src":"6248:22:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"expression":{"id":15365,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6272:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15366,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6279:14:46","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":14995,"src":"6272:21:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] 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"}],"id":15362,"name":"InitialTokensDistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15127,"src":"6223:24:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address[] memory,uint256[] memory)"}},"id":15367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6223:71:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15368,"nodeType":"EmitStatement","src":"6218:76:46"},{"eventCall":{"arguments":[{"expression":{"id":15370,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6338:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6345:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"6338:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15372,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6363:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15373,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6370:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"6363:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15374,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6390:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6397:8:46","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":14970,"src":"6390:15:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15376,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6419:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15377,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6426:11:46","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":14972,"src":"6419:18:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15378,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6451:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15379,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6458:12:46","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":14974,"src":"6451:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15380,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6484:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15381,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6491:5:46","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":14976,"src":"6484:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15382,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6510:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15383,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6517:10:46","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":14979,"src":"6510:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":15384,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"6541:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15385,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6548:3:46","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":14981,"src":"6541:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":15388,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6573:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}],"id":15387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6565:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15386,"name":"address","nodeType":"ElementaryTypeName","src":"6565:7:46","typeDescriptions":{}}},"id":15389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6565:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15390,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15220,"src":"6592:15:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":15393,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6629:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}],"id":15392,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6621:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15391,"name":"address","nodeType":"ElementaryTypeName","src":"6621:7:46","typeDescriptions":{}}},"id":15394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6621:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":15369,"name":"DLEInitialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15119,"src":"6310:14:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (string memory,string memory,string memory,string memory,uint256,uint256,string memory[] memory,uint256,address,address,address)"}},"id":15395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6310:334:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15396,"nodeType":"EmitStatement","src":"6305:339:46"}]},"id":15398,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":15223,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4730:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15224,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4737:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"4730:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15225,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4743:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4750:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"4743:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15227,"kind":"baseConstructorSpecifier","modifierName":{"id":15222,"name":"ERC20","nameLocations":["4724:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"4724:5:46"},"nodeType":"ModifierInvocation","src":"4724:33:46"},{"arguments":[{"expression":{"id":15229,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4775:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15230,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4782:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"4775:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15231,"kind":"baseConstructorSpecifier","modifierName":{"id":15228,"name":"Governor","nameLocations":["4766:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"4766:8:46"},"nodeType":"ModifierInvocation","src":"4766:21:46"},{"arguments":[{"expression":{"id":15233,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4813:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15234,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4820:11:46","memberName":"votingDelay","nodeType":"MemberAccess","referencedDeclaration":14983,"src":"4813:18:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"expression":{"id":15235,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4833:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4840:12:46","memberName":"votingPeriod","nodeType":"MemberAccess","referencedDeclaration":14985,"src":"4833:19:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":15237,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4854:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15238,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4861:17:46","memberName":"proposalThreshold","nodeType":"MemberAccess","referencedDeclaration":14987,"src":"4854:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15239,"kind":"baseConstructorSpecifier","modifierName":{"id":15232,"name":"GovernorSettings","nameLocations":["4796:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"4796:16:46"},"nodeType":"ModifierInvocation","src":"4796:83:46"},{"arguments":[{"expression":{"id":15241,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"4916:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4923:16:46","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":14989,"src":"4916:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15243,"kind":"baseConstructorSpecifier","modifierName":{"id":15240,"name":"GovernorVotesQuorumFraction","nameLocations":["4888:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"4888:27:46"},"nodeType":"ModifierInvocation","src":"4888:52:46"},{"arguments":[{"arguments":[{"arguments":[{"id":15248,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15220,"src":"5000:15:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4992:8:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":15246,"name":"address","nodeType":"ElementaryTypeName","src":"4992:8:46","stateMutability":"payable","typeDescriptions":{}}},"id":15249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4992:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":15245,"name":"TimelockController","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"4973:18:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_TimelockController_$3608_$","typeString":"type(contract TimelockController)"}},"id":15250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"id":15251,"kind":"baseConstructorSpecifier","modifierName":{"id":15244,"name":"GovernorTimelockControl","nameLocations":["4949:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"4949:23:46"},"nodeType":"ModifierInvocation","src":"4949:69:46"},{"arguments":[{"arguments":[{"arguments":[{"id":15256,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5056:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}],"id":15255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5048:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15254,"name":"address","nodeType":"ElementaryTypeName","src":"5048:7:46","typeDescriptions":{}}},"id":15257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5048:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15253,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"5041:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IVotes_$4760_$","typeString":"type(contract IVotes)"}},"id":15258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5041:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}}],"id":15259,"kind":"baseConstructorSpecifier","modifierName":{"id":15252,"name":"GovernorVotes","nameLocations":["5027:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"5027:13:46"},"nodeType":"ModifierInvocation","src":"5027:36:46"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15218,"mutability":"mutable","name":"config","nameLocation":"4670:6:46","nodeType":"VariableDeclaration","scope":15398,"src":"4653:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_memory_ptr","typeString":"struct DLE.DLEConfig"},"typeName":{"id":15217,"nodeType":"UserDefinedTypeName","pathNode":{"id":15216,"name":"DLEConfig","nameLocations":["4653:9:46"],"nodeType":"IdentifierPath","referencedDeclaration":14996,"src":"4653:9:46"},"referencedDeclaration":14996,"src":"4653:9:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14996_storage_ptr","typeString":"struct DLE.DLEConfig"}},"visibility":"internal"},{"constant":false,"id":15220,"mutability":"mutable","name":"timelockAddress","nameLocation":"4694:15:46","nodeType":"VariableDeclaration","scope":15398,"src":"4686:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15219,"name":"address","nodeType":"ElementaryTypeName","src":"4686:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4643:72:46"},"returnParameters":{"id":15260,"nodeType":"ParameterList","parameters":[],"src":"5068:0:46"},"scope":16619,"src":"4632:2019:46","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":15492,"nodeType":"Block","src":"7283:930:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15415,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15402,"src":"7301:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7311:6:46","memberName":"length","nodeType":"MemberAccess","src":"7301:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15417,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15405,"src":"7321:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7330:6:46","memberName":"length","nodeType":"MemberAccess","src":"7321:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7301:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":15420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7338:24:46","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":15414,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7293:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7293:70:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15422,"nodeType":"ExpressionStatement","src":"7293:70:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15424,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15402,"src":"7381:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7391:6:46","memberName":"length","nodeType":"MemberAccess","src":"7381:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7400:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7381:20:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d70747920617272617973","id":15428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7403:14:46","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":15423,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7373:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7373:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15430,"nodeType":"ExpressionStatement","src":"7373:45:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15432,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15407,"src":"7436:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":15433,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7448:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7454:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"7448:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7436:27:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642074696d656c6f636b","id":15436,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7465:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""},"value":"Invalid timelock"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""}],"id":15431,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7428:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7428:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15438,"nodeType":"ExpressionStatement","src":"7428:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15441,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7512:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7516:6:46","memberName":"sender","nodeType":"MemberAccess","src":"7512:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15440,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"7502:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7502:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7526:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7502:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f73616c","id":15446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7529:37:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""},"value":"Must hold tokens to create proposal"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""}],"id":15439,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7494:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7494:73:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15448,"nodeType":"ExpressionStatement","src":"7494:73:46"},{"assignments":[15450],"declarations":[{"constant":false,"id":15450,"mutability":"mutable","name":"proposalId","nameLocation":"7586:10:46","nodeType":"VariableDeclaration","scope":15492,"src":"7578:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15449,"name":"uint256","nodeType":"ElementaryTypeName","src":"7578:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15453,"initialValue":{"id":15452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7599:34:46","subExpression":{"id":15451,"name":"tokenDistributionProposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"7599:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7578:55:46"},{"expression":{"id":15479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15454,"name":"tokenDistributionProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15072,"src":"7652:26:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal storage ref)"}},"id":15456,"indexExpression":{"id":15455,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15450,"src":"7679:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7652:38:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage","typeString":"struct DLE.TokenDistributionProposal storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15458,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15402,"src":"7743:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15459,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15405,"src":"7775:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15460,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15407,"src":"7807:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15461,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7841:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7845:6:46","memberName":"sender","nodeType":"MemberAccess","src":"7841:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":15466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7889:1:46","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":15465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"7877:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":15463,"name":"bytes","nodeType":"ElementaryTypeName","src":"7881:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15464,"nodeType":"ArrayTypeName","src":"7881:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":15467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7877:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"66616c7365","id":15468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7915:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":15469,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"7951:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7951:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":15471,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"7967:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7951:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15473,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7950:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":15474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7987:3:46","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"7950:40:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":15476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8021:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":15477,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15409,"src":"8049:12:46","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_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15457,"name":"TokenDistributionProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15039,"src":"7693:25:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TokenDistributionProposal_$15039_storage_ptr_$","typeString":"type(struct DLE.TokenDistributionProposal storage pointer)"}},"id":15478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7733:8:46","7766:7:46","7797:8:46","7830:9:46","7865:10:46","7905:8:46","7934:14:46","8004:15:46","8036:11:46"],"names":["partners","amounts","timelock","initiator","signatures","executed","quorumRequired","signaturesCount","description"],"nodeType":"FunctionCall","src":"7693:379:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_memory_ptr","typeString":"struct DLE.TokenDistributionProposal memory"}},"src":"7652:420:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage","typeString":"struct DLE.TokenDistributionProposal storage ref"}},"id":15480,"nodeType":"ExpressionStatement","src":"7652:420:46"},{"eventCall":{"arguments":[{"id":15482,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15450,"src":"8121:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15483,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8133:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8137:6:46","memberName":"sender","nodeType":"MemberAccess","src":"8133:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15485,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15402,"src":"8145:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15486,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15405,"src":"8156:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15487,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15409,"src":"8166:12:46","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_string_memory_ptr","typeString":"string memory"}],"id":15481,"name":"TokenDistributionProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15175,"src":"8088:32:46","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_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,address[] memory,uint256[] memory,string memory)"}},"id":15488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8088:91:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15489,"nodeType":"EmitStatement","src":"8083:96:46"},{"expression":{"id":15490,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15450,"src":"8196:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15413,"id":15491,"nodeType":"Return","src":"8189:17:46"}]},"documentation":{"id":15399,"nodeType":"StructuredDocumentation","src":"6657:413:46","text":" @dev Создать предложение на распределение токенов\n @param _partners Массив адресов партнеров\n @param _amounts Массив сумм токенов для каждого партнера\n @param _timelock Время исполнения (timestamp)\n @param _description Описание предложения"},"functionSelector":"108b4e07","id":15493,"implemented":true,"kind":"function","modifiers":[],"name":"createTokenDistributionProposal","nameLocation":"7084:31:46","nodeType":"FunctionDefinition","parameters":{"id":15410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15402,"mutability":"mutable","name":"_partners","nameLocation":"7142:9:46","nodeType":"VariableDeclaration","scope":15493,"src":"7125:26:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15400,"name":"address","nodeType":"ElementaryTypeName","src":"7125:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15401,"nodeType":"ArrayTypeName","src":"7125:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15405,"mutability":"mutable","name":"_amounts","nameLocation":"7178:8:46","nodeType":"VariableDeclaration","scope":15493,"src":"7161:25:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15403,"name":"uint256","nodeType":"ElementaryTypeName","src":"7161:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15404,"nodeType":"ArrayTypeName","src":"7161:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15407,"mutability":"mutable","name":"_timelock","nameLocation":"7204:9:46","nodeType":"VariableDeclaration","scope":15493,"src":"7196:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15406,"name":"uint256","nodeType":"ElementaryTypeName","src":"7196:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15409,"mutability":"mutable","name":"_description","nameLocation":"7237:12:46","nodeType":"VariableDeclaration","scope":15493,"src":"7223:26:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15408,"name":"string","nodeType":"ElementaryTypeName","src":"7223:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7115:140:46"},"returnParameters":{"id":15413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15412,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15493,"src":"7274:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15411,"name":"uint256","nodeType":"ElementaryTypeName","src":"7274:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7273:9:46"},"scope":16619,"src":"7075:1138:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15613,"nodeType":"Block","src":"8457:1112:46","statements":[{"assignments":[15501],"declarations":[{"constant":false,"id":15501,"mutability":"mutable","name":"proposal","nameLocation":"8501:8:46","nodeType":"VariableDeclaration","scope":15613,"src":"8467:42:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"},"typeName":{"id":15500,"nodeType":"UserDefinedTypeName","pathNode":{"id":15499,"name":"TokenDistributionProposal","nameLocations":["8467:25:46"],"nodeType":"IdentifierPath","referencedDeclaration":15039,"src":"8467:25:46"},"referencedDeclaration":15039,"src":"8467:25:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"}},"visibility":"internal"}],"id":15505,"initialValue":{"baseExpression":{"id":15502,"name":"tokenDistributionProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15072,"src":"8512:26:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal storage ref)"}},"id":15504,"indexExpression":{"id":15503,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15496,"src":"8539:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8512:39:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage","typeString":"struct DLE.TokenDistributionProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"8467:84:46"},{"expression":{"arguments":[{"id":15509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8569:18:46","subExpression":{"expression":{"id":15507,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"8570:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15508,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8579:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15032,"src":"8570:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":15510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8589:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":15506,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8561:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8561:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15512,"nodeType":"ExpressionStatement","src":"8561:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15514,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"8635:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8641:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"8635:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15516,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"8653:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15517,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8662:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":15025,"src":"8653:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8635:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c2065787069726564","id":15519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8672:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""},"value":"Proposal expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""}],"id":15513,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8627:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8627:64:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15521,"nodeType":"ExpressionStatement","src":"8627:64:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15524,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8719:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8723:6:46","memberName":"sender","nodeType":"MemberAccess","src":"8719:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15523,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"8709:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8709:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8733:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8709:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":15529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8736:19:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":15522,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8701:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8701:55:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15531,"nodeType":"ExpressionStatement","src":"8701:55:46"},{"body":{"id":15569,"nodeType":"Block","src":"8916:212:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"id":15545,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"8955:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8964:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15030,"src":"8955:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15548,"indexExpression":{"id":15547,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15533,"src":"8975:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8955:22:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"id":15549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8978:6:46","memberName":"length","nodeType":"MemberAccess","src":"8955:29:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":15550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8988:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8955:34:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"expression":{"id":15554,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9021:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15555,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9030:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15030,"src":"9021:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15557,"indexExpression":{"id":15556,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15533,"src":"9041:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9021:22:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},{"components":[{"id":15559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9046:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15558,"name":"address","nodeType":"ElementaryTypeName","src":"9046:7:46","typeDescriptions":{}}}],"id":15560,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9045:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":15552,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"9010:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15553,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9014:6:46","memberName":"decode","nodeType":"MemberAccess","src":"9010:10:46","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9010:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":15562,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"9059:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9063:6:46","memberName":"sender","nodeType":"MemberAccess","src":"9059:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9010:59:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8955:114:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479207369676e6564","id":15566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9087:16:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""},"value":"Already signed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""}],"id":15544,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8930:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8930:187:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15568,"nodeType":"ExpressionStatement","src":"8930:187:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15536,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15533,"src":"8879:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":15537,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"8883:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15538,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8892:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15030,"src":"8883:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8903:6:46","memberName":"length","nodeType":"MemberAccess","src":"8883:26:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8879:30:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15570,"initializationExpression":{"assignments":[15533],"declarations":[{"constant":false,"id":15533,"mutability":"mutable","name":"i","nameLocation":"8872:1:46","nodeType":"VariableDeclaration","scope":15570,"src":"8864:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15532,"name":"uint256","nodeType":"ElementaryTypeName","src":"8864:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15535,"initialValue":{"hexValue":"30","id":15534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8876:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8864:13:46"},"loopExpression":{"expression":{"id":15542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"8911:3:46","subExpression":{"id":15541,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15533,"src":"8911:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15543,"nodeType":"ExpressionStatement","src":"8911:3:46"},"nodeType":"ForStatement","src":"8859:269:46"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":15578,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"9180:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9184:6:46","memberName":"sender","nodeType":"MemberAccess","src":"9180:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15576,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"9163:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9167:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"9163:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9163:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"expression":{"id":15571,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9138:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15574,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9147:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15030,"src":"9138:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9158:4:46","memberName":"push","nodeType":"MemberAccess","src":"9138:24:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_bytes_storage_$dyn_storage_ptr_$_t_bytes_storage_$returns$__$attached_to$_t_array$_t_bytes_storage_$dyn_storage_ptr_$","typeString":"function (bytes storage ref[] storage pointer,bytes storage ref)"}},"id":15581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9138:54:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15582,"nodeType":"ExpressionStatement","src":"9138:54:46"},{"expression":{"id":15586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9202:26:46","subExpression":{"expression":{"id":15583,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9202:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15585,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9211:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15036,"src":"9202:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15587,"nodeType":"ExpressionStatement","src":"9202:26:46"},{"eventCall":{"arguments":[{"id":15589,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15496,"src":"9276:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15590,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"9289:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9293:6:46","memberName":"sender","nodeType":"MemberAccess","src":"9289:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":15592,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9301:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15593,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9310:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15036,"src":"9301:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15588,"name":"TokenDistributionProposalSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15183,"src":"9244:31:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":15594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9244:82:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15595,"nodeType":"EmitStatement","src":"9239:87:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15596,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9409:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9418:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15036,"src":"9409:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15598,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9437:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15599,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9446:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15034,"src":"9437:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9409:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15612,"nodeType":"IfStatement","src":"9405:158:46","trueBody":{"id":15611,"nodeType":"Block","src":"9462:101:46","statements":[{"expression":{"id":15605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15601,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15501,"src":"9476:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9485:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15032,"src":"9476:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":15604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9496:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9476:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15606,"nodeType":"ExpressionStatement","src":"9476:24:46"},{"expression":{"arguments":[{"id":15608,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15496,"src":"9540:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15607,"name":"_executeTokenDistribution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15699,"src":"9514:25:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":15609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9514:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15610,"nodeType":"ExpressionStatement","src":"9514:38:46"}]}}]},"documentation":{"id":15494,"nodeType":"StructuredDocumentation","src":"8219:164:46","text":" @dev Подписать предложение на распределение токенов\n @param _proposalId ID предложения"},"functionSelector":"7e63b733","id":15614,"implemented":true,"kind":"function","modifiers":[],"name":"signTokenDistributionProposal","nameLocation":"8397:29:46","nodeType":"FunctionDefinition","parameters":{"id":15497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15496,"mutability":"mutable","name":"_proposalId","nameLocation":"8435:11:46","nodeType":"VariableDeclaration","scope":15614,"src":"8427:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15495,"name":"uint256","nodeType":"ElementaryTypeName","src":"8427:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8426:21:46"},"returnParameters":{"id":15498,"nodeType":"ParameterList","parameters":[],"src":"8457:0:46"},"scope":16619,"src":"8388:1181:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15698,"nodeType":"Block","src":"9828:626:46","statements":[{"assignments":[15622],"declarations":[{"constant":false,"id":15622,"mutability":"mutable","name":"proposal","nameLocation":"9872:8:46","nodeType":"VariableDeclaration","scope":15698,"src":"9838:42:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"},"typeName":{"id":15621,"nodeType":"UserDefinedTypeName","pathNode":{"id":15620,"name":"TokenDistributionProposal","nameLocations":["9838:25:46"],"nodeType":"IdentifierPath","referencedDeclaration":15039,"src":"9838:25:46"},"referencedDeclaration":15039,"src":"9838:25:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"}},"visibility":"internal"}],"id":15626,"initialValue":{"baseExpression":{"id":15623,"name":"tokenDistributionProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15072,"src":"9883:26:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal storage ref)"}},"id":15625,"indexExpression":{"id":15624,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15617,"src":"9910:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9883:39:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage","typeString":"struct DLE.TokenDistributionProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9838:84:46"},{"expression":{"arguments":[{"expression":{"id":15628,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"9940:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15629,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9949:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15032,"src":"9940:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c206e6f74206578656375746564","id":15630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9959:23:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_6bac411c85eb68b093cd2da947f130cf3c5917b45960f6d3ad1d1c51d78e87dc","typeString":"literal_string \"Proposal not executed\""},"value":"Proposal not executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6bac411c85eb68b093cd2da947f130cf3c5917b45960f6d3ad1d1c51d78e87dc","typeString":"literal_string \"Proposal not executed\""}],"id":15627,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9932:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9932:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15632,"nodeType":"ExpressionStatement","src":"9932:51:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15634,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10001:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15635,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10010:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15036,"src":"10001:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15636,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10029:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15637,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10038:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15034,"src":"10029:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10001:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742071756f72756d","id":15639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10054:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""},"value":"Insufficient quorum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""}],"id":15633,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9993:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9993:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15641,"nodeType":"ExpressionStatement","src":"9993:83:46"},{"body":{"id":15688,"nodeType":"Block","src":"10142:207:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":15655,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10164:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15656,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10173:8:46","memberName":"partners","nodeType":"MemberAccess","referencedDeclaration":15020,"src":"10164:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage","typeString":"address[] storage ref"}},"id":15658,"indexExpression":{"id":15657,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10182:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10164:20:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":15661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10196:1:46","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":15660,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10188:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15659,"name":"address","nodeType":"ElementaryTypeName","src":"10188:7:46","typeDescriptions":{}}},"id":15662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10188:10:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10164:34:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":15664,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10200:14:46","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":15654,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10156:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10156:59:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15666,"nodeType":"ExpressionStatement","src":"10156:59:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":15668,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10237:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15669,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10246:7:46","memberName":"amounts","nodeType":"MemberAccess","referencedDeclaration":15023,"src":"10237:16:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":15671,"indexExpression":{"id":15670,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10254:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10237:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10259:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10237:23:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":15674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10262:13:46","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":15667,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10229:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10229:47:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15676,"nodeType":"ExpressionStatement","src":"10229:47:46"},{"expression":{"arguments":[{"baseExpression":{"expression":{"id":15678,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10296:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15679,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10305:8:46","memberName":"partners","nodeType":"MemberAccess","referencedDeclaration":15020,"src":"10296:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage","typeString":"address[] storage ref"}},"id":15681,"indexExpression":{"id":15680,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10314:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10296:20:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"expression":{"id":15682,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10318:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15683,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10327:7:46","memberName":"amounts","nodeType":"MemberAccess","referencedDeclaration":15023,"src":"10318:16:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":15685,"indexExpression":{"id":15684,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10335:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10318:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15677,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5987,"src":"10290:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10290:48:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15687,"nodeType":"ExpressionStatement","src":"10290:48:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15646,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10107:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":15647,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10111:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15648,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10120:8:46","memberName":"partners","nodeType":"MemberAccess","referencedDeclaration":15020,"src":"10111:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage","typeString":"address[] storage ref"}},"id":15649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10129:6:46","memberName":"length","nodeType":"MemberAccess","src":"10111:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10107:28:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15689,"initializationExpression":{"assignments":[15643],"declarations":[{"constant":false,"id":15643,"mutability":"mutable","name":"i","nameLocation":"10100:1:46","nodeType":"VariableDeclaration","scope":15689,"src":"10092:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15642,"name":"uint256","nodeType":"ElementaryTypeName","src":"10092:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15645,"initialValue":{"hexValue":"30","id":15644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10104:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10092:13:46"},"loopExpression":{"expression":{"id":15652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10137:3:46","subExpression":{"id":15651,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"10137:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15653,"nodeType":"ExpressionStatement","src":"10137:3:46"},"nodeType":"ForStatement","src":"10087:262:46"},{"eventCall":{"arguments":[{"id":15691,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15617,"src":"10398:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15692,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10411:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10420:8:46","memberName":"partners","nodeType":"MemberAccess","referencedDeclaration":15020,"src":"10411:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage","typeString":"address[] storage ref"}},{"expression":{"id":15694,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15622,"src":"10430:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15695,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10439:7:46","memberName":"amounts","nodeType":"MemberAccess","referencedDeclaration":15023,"src":"10430:16:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_storage","typeString":"address[] storage ref"},{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}],"id":15690,"name":"TokenDistributionProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15193,"src":"10364:33:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (uint256,address[] memory,uint256[] memory)"}},"id":15696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10364:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15697,"nodeType":"EmitStatement","src":"10359:88:46"}]},"documentation":{"id":15615,"nodeType":"StructuredDocumentation","src":"9575:183:46","text":" @dev Выполнить распределение токенов после достижения кворума\n @param _proposalId ID предложения"},"id":15699,"implemented":true,"kind":"function","modifiers":[],"name":"_executeTokenDistribution","nameLocation":"9772:25:46","nodeType":"FunctionDefinition","parameters":{"id":15618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15617,"mutability":"mutable","name":"_proposalId","nameLocation":"9806:11:46","nodeType":"VariableDeclaration","scope":15699,"src":"9798:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15616,"name":"uint256","nodeType":"ElementaryTypeName","src":"9798:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9797:21:46"},"returnParameters":{"id":15619,"nodeType":"ParameterList","parameters":[],"src":"9828:0:46"},"scope":16619,"src":"9763:691:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15747,"nodeType":"Block","src":"10748:422:46","statements":[{"assignments":[15707],"declarations":[{"constant":false,"id":15707,"mutability":"mutable","name":"proposal","nameLocation":"10792:8:46","nodeType":"VariableDeclaration","scope":15747,"src":"10758:42:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"},"typeName":{"id":15706,"nodeType":"UserDefinedTypeName","pathNode":{"id":15705,"name":"TokenDistributionProposal","nameLocations":["10758:25:46"],"nodeType":"IdentifierPath","referencedDeclaration":15039,"src":"10758:25:46"},"referencedDeclaration":15039,"src":"10758:25:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal"}},"visibility":"internal"}],"id":15711,"initialValue":{"baseExpression":{"id":15708,"name":"tokenDistributionProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15072,"src":"10803:26:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TokenDistributionProposal_$15039_storage_$","typeString":"mapping(uint256 => struct DLE.TokenDistributionProposal storage ref)"}},"id":15710,"indexExpression":{"id":15709,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15702,"src":"10830:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10803:39:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage","typeString":"struct DLE.TokenDistributionProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10758:84:46"},{"expression":{"arguments":[{"id":15715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"10860:18:46","subExpression":{"expression":{"id":15713,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"10861:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15714,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10870:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15032,"src":"10861:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":15716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10880:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":15712,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10852:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10852:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15718,"nodeType":"ExpressionStatement","src":"10852:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15720,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10926:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10932:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"10926:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15722,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"10945:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15723,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10954:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":15025,"src":"10945:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10926:36:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"54696d656c6f636b206e6f742065787069726564","id":15725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10964:22:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_58efe87b72489a936868b54a04536c1ea79f384401787a620136326a6bd781db","typeString":"literal_string \"Timelock not expired\""},"value":"Timelock not expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_58efe87b72489a936868b54a04536c1ea79f384401787a620136326a6bd781db","typeString":"literal_string \"Timelock not expired\""}],"id":15719,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10918:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10918:69:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15727,"nodeType":"ExpressionStatement","src":"10918:69:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15729,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"11005:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15730,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11014:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15036,"src":"11005:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15731,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"11033:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15732,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11042:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15034,"src":"11033:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11005:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742071756f72756d","id":15734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11058:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""},"value":"Insufficient quorum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""}],"id":15728,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10997:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10997:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15736,"nodeType":"ExpressionStatement","src":"10997:83:46"},{"expression":{"id":15741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15737,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"11091:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TokenDistributionProposal_$15039_storage_ptr","typeString":"struct DLE.TokenDistributionProposal storage pointer"}},"id":15739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11100:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15032,"src":"11091:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":15740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11111:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"11091:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15742,"nodeType":"ExpressionStatement","src":"11091:24:46"},{"expression":{"arguments":[{"id":15744,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15702,"src":"11151:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15743,"name":"_executeTokenDistribution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15699,"src":"11125:25:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":15745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11125:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15746,"nodeType":"ExpressionStatement","src":"11125:38:46"}]},"documentation":{"id":15700,"nodeType":"StructuredDocumentation","src":"10460:211:46","text":" @dev Выполнить предложение на распределение токенов после истечения таймлока\n @param _proposalId ID предложения"},"functionSelector":"35c4364f","id":15748,"implemented":true,"kind":"function","modifiers":[],"name":"executeTokenDistributionProposal","nameLocation":"10685:32:46","nodeType":"FunctionDefinition","parameters":{"id":15703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15702,"mutability":"mutable","name":"_proposalId","nameLocation":"10726:11:46","nodeType":"VariableDeclaration","scope":15748,"src":"10718:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15701,"name":"uint256","nodeType":"ElementaryTypeName","src":"10718:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10717:21:46"},"returnParameters":{"id":15704,"nodeType":"ParameterList","parameters":[],"src":"10748:0:46"},"scope":16619,"src":"10676:494:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15827,"nodeType":"Block","src":"11367:755:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15763,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15750,"src":"11385:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11396:6:46","memberName":"length","nodeType":"MemberAccess","src":"11385:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11405:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11385:21:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d707479206f7065726174696f6e","id":15767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11408:17:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_cd09bdd42f6c1a61bf449f6e8ad93d8391047cb2fda233798b00826e24ffafac","typeString":"literal_string \"Empty operation\""},"value":"Empty operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cd09bdd42f6c1a61bf449f6e8ad93d8391047cb2fda233798b00826e24ffafac","typeString":"literal_string \"Empty operation\""}],"id":15762,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11377:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11377:49:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15769,"nodeType":"ExpressionStatement","src":"11377:49:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15771,"name":"_targetChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15753,"src":"11444:13:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11458:6:46","memberName":"length","nodeType":"MemberAccess","src":"11444:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11467:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11444:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d7074792074617267657420636861696e73","id":15775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11470:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_0fa564c9920cbef2e2c4705af903afd7f0bc12a830b0afb83a272ea82b270921","typeString":"literal_string \"Empty target chains\""},"value":"Empty target chains"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0fa564c9920cbef2e2c4705af903afd7f0bc12a830b0afb83a272ea82b270921","typeString":"literal_string \"Empty target chains\""}],"id":15770,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11436:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11436:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15777,"nodeType":"ExpressionStatement","src":"11436:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15779,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15755,"src":"11510:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":15780,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11522:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11528:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"11522:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11510:27:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642074696d656c6f636b","id":15783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11539:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""},"value":"Invalid timelock"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""}],"id":15778,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11502:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11502:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15785,"nodeType":"ExpressionStatement","src":"11502:56:46"},{"assignments":[15787],"declarations":[{"constant":false,"id":15787,"mutability":"mutable","name":"proposalId","nameLocation":"11576:10:46","nodeType":"VariableDeclaration","scope":15827,"src":"11568:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15786,"name":"uint256","nodeType":"ElementaryTypeName","src":"11568:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15790,"initialValue":{"id":15789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"11589:17:46","subExpression":{"id":15788,"name":"proposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15079,"src":"11589:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11568:38:46"},{"expression":{"id":15816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15791,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15067,"src":"11616:9:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15017_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":15793,"indexExpression":{"id":15792,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15787,"src":"11626:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11616:21:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15795,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15750,"src":"11674:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15796,"name":"_targetChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15753,"src":"11712:13:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15797,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15755,"src":"11749:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15798,"name":"_governanceChain","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15757,"src":"11789:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15799,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"11830:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11834:6:46","memberName":"sender","nodeType":"MemberAccess","src":"11830:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":15804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11878:1:46","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":15803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"11866:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":15801,"name":"bytes","nodeType":"ElementaryTypeName","src":"11870:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15802,"nodeType":"ArrayTypeName","src":"11870:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":15805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11866:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"66616c7365","id":15806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11904:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":15807,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"11940:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11940:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":15809,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"11956:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11940:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15811,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11939:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":15812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11976:3:46","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"11939:40:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":15814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12010:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15794,"name":"Proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15017,"src":"11640:8:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Proposal_$15017_storage_ptr_$","typeString":"type(struct DLE.Proposal storage pointer)"}},"id":15815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["11663:9:46","11698:12:46","11739:8:46","11772:15:46","11819:9:46","11854:10:46","11894:8:46","11923:14:46","11993:15:46"],"names":["operation","targetChains","timelock","governanceChain","initiator","signatures","executed","quorumRequired","signaturesCount"],"nodeType":"FunctionCall","src":"11640:382:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_memory_ptr","typeString":"struct DLE.Proposal memory"}},"src":"11616:406:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage","typeString":"struct DLE.Proposal storage ref"}},"id":15817,"nodeType":"ExpressionStatement","src":"11616:406:46"},{"eventCall":{"arguments":[{"id":15819,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15787,"src":"12053:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15820,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12065:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12069:6:46","memberName":"sender","nodeType":"MemberAccess","src":"12065:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15822,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15750,"src":"12077:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15818,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[15201,2264],"referencedDeclaration":15201,"src":"12037:15:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (uint256,address,bytes memory)"}},"id":15823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12037:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15824,"nodeType":"EmitStatement","src":"12032:56:46"},{"expression":{"id":15825,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15787,"src":"12105:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15761,"id":15826,"nodeType":"Return","src":"12098:17:46"}]},"functionSelector":"d1fad4cd","id":15828,"implemented":true,"kind":"function","modifiers":[],"name":"createProposal","nameLocation":"11185:14:46","nodeType":"FunctionDefinition","parameters":{"id":15758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15750,"mutability":"mutable","name":"_operation","nameLocation":"11222:10:46","nodeType":"VariableDeclaration","scope":15828,"src":"11209:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15749,"name":"bytes","nodeType":"ElementaryTypeName","src":"11209:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15753,"mutability":"mutable","name":"_targetChains","nameLocation":"11259:13:46","nodeType":"VariableDeclaration","scope":15828,"src":"11242:30:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15751,"name":"uint256","nodeType":"ElementaryTypeName","src":"11242:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15752,"nodeType":"ArrayTypeName","src":"11242:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15755,"mutability":"mutable","name":"_timelock","nameLocation":"11290:9:46","nodeType":"VariableDeclaration","scope":15828,"src":"11282:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15754,"name":"uint256","nodeType":"ElementaryTypeName","src":"11282:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15757,"mutability":"mutable","name":"_governanceChain","nameLocation":"11317:16:46","nodeType":"VariableDeclaration","scope":15828,"src":"11309:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15756,"name":"uint256","nodeType":"ElementaryTypeName","src":"11309:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11199:140:46"},"returnParameters":{"id":15761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15828,"src":"11358:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15759,"name":"uint256","nodeType":"ElementaryTypeName","src":"11358:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11357:9:46"},"scope":16619,"src":"11176:946:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15910,"nodeType":"Block","src":"12180:625:46","statements":[{"assignments":[15835],"declarations":[{"constant":false,"id":15835,"mutability":"mutable","name":"proposal","nameLocation":"12207:8:46","nodeType":"VariableDeclaration","scope":15910,"src":"12190:25:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":15834,"nodeType":"UserDefinedTypeName","pathNode":{"id":15833,"name":"Proposal","nameLocations":["12190:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":15017,"src":"12190:8:46"},"referencedDeclaration":15017,"src":"12190:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":15839,"initialValue":{"baseExpression":{"id":15836,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15067,"src":"12218:9:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15017_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":15838,"indexExpression":{"id":15837,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15830,"src":"12228:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12218:22:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12190:50:46"},{"expression":{"arguments":[{"id":15843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12258:18:46","subExpression":{"expression":{"id":15841,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12259:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15842,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12268:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15012,"src":"12259:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":15844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12278:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":15840,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12250:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12250:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15846,"nodeType":"ExpressionStatement","src":"12250:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15848,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12324:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12330:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"12324:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15850,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12342:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15851,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12351:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":15003,"src":"12342:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12324:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c2065787069726564","id":15853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12361:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""},"value":"Proposal expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""}],"id":15847,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12316:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12316:64:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15855,"nodeType":"ExpressionStatement","src":"12316:64:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15858,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12408:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12412:6:46","memberName":"sender","nodeType":"MemberAccess","src":"12408:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15857,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"12398:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12398:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12422:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12398:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":15863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12425:19:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":15856,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12390:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12390:55:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15865,"nodeType":"ExpressionStatement","src":"12390:55:46"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":15873,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12497:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12501:6:46","memberName":"sender","nodeType":"MemberAccess","src":"12497:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15871,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"12480:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12484:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"12480:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12480:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"expression":{"id":15866,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12455:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15869,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12464:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15010,"src":"12455:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12475:4:46","memberName":"push","nodeType":"MemberAccess","src":"12455:24:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_bytes_storage_$dyn_storage_ptr_$_t_bytes_storage_$returns$__$attached_to$_t_array$_t_bytes_storage_$dyn_storage_ptr_$","typeString":"function (bytes storage ref[] storage pointer,bytes storage ref)"}},"id":15876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12455:54:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15877,"nodeType":"ExpressionStatement","src":"12455:54:46"},{"expression":{"id":15881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"12519:26:46","subExpression":{"expression":{"id":15878,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12519:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15880,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12528:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15016,"src":"12519:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15882,"nodeType":"ExpressionStatement","src":"12519:26:46"},{"eventCall":{"arguments":[{"id":15884,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15830,"src":"12575:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15885,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12588:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12592:6:46","memberName":"sender","nodeType":"MemberAccess","src":"12588:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":15887,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12600:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12609:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15016,"src":"12600:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15883,"name":"ProposalSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"12560:14:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":15889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12560:65:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15890,"nodeType":"EmitStatement","src":"12555:70:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15891,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12639:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12648:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15016,"src":"12639:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15893,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12667:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12676:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15014,"src":"12667:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12639:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15909,"nodeType":"IfStatement","src":"12635:164:46","trueBody":{"id":15908,"nodeType":"Block","src":"12692:107:46","statements":[{"expression":{"id":15900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15896,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15835,"src":"12706:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15017_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15898,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12715:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15012,"src":"12706:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":15899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12726:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"12706:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15901,"nodeType":"ExpressionStatement","src":"12706:24:46"},{"eventCall":{"arguments":[{"id":15905,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15830,"src":"12776:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15902,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"12749:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}},"id":15904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12759:16:46","memberName":"ProposalExecuted","nodeType":"MemberAccess","referencedDeclaration":2276,"src":"12749:26:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":15906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12749:39:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15907,"nodeType":"EmitStatement","src":"12744:44:46"}]}}]},"functionSelector":"ab273016","id":15911,"implemented":true,"kind":"function","modifiers":[],"name":"signProposal","nameLocation":"12137:12:46","nodeType":"FunctionDefinition","parameters":{"id":15831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15830,"mutability":"mutable","name":"_proposalId","nameLocation":"12158:11:46","nodeType":"VariableDeclaration","scope":15911,"src":"12150:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15829,"name":"uint256","nodeType":"ElementaryTypeName","src":"12150:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12149:21:46"},"returnParameters":{"id":15832,"nodeType":"ParameterList","parameters":[],"src":"12180:0:46"},"scope":16619,"src":"12128:677:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15923,"nodeType":"Block","src":"12894:66:46","statements":[{"eventCall":{"arguments":[{"id":15919,"name":"_moduleName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15913,"src":"12925:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":15920,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15915,"src":"12938:14:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_address","typeString":"address"}],"id":15918,"name":"ModuleInstalled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15215,"src":"12909:15:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_address_$returns$__$","typeString":"function (string memory,address)"}},"id":15921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12909:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15922,"nodeType":"EmitStatement","src":"12904:49:46"}]},"functionSelector":"194a94fc","id":15924,"implemented":true,"kind":"function","modifiers":[],"name":"installModule","nameLocation":"12820:13:46","nodeType":"FunctionDefinition","parameters":{"id":15916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15913,"mutability":"mutable","name":"_moduleName","nameLocation":"12848:11:46","nodeType":"VariableDeclaration","scope":15924,"src":"12834:25:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15912,"name":"string","nodeType":"ElementaryTypeName","src":"12834:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15915,"mutability":"mutable","name":"_moduleAddress","nameLocation":"12869:14:46","nodeType":"VariableDeclaration","scope":15924,"src":"12861:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15914,"name":"address","nodeType":"ElementaryTypeName","src":"12861:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12833:51:46"},"returnParameters":{"id":15917,"nodeType":"ParameterList","parameters":[],"src":"12894:0:46"},"scope":16619,"src":"12811:149:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15967,"nodeType":"Block","src":"13173:320:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15931,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15927,"src":"13191:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13201:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13191:11:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e74206d7573742062652067726561746572207468616e2030","id":15934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13204:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""},"value":"Amount must be greater than 0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""}],"id":15930,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13183:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13183:53:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15936,"nodeType":"ExpressionStatement","src":"13183:53:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15939,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13264:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13268:6:46","memberName":"sender","nodeType":"MemberAccess","src":"13264:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15938,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"13254:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13254:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":15942,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15927,"src":"13279:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13254:32:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742062616c616e6365","id":15944,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13288:22:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5","typeString":"literal_string \"Insufficient balance\""},"value":"Insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5","typeString":"literal_string \"Insufficient balance\""}],"id":15937,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13246:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13246:65:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15946,"nodeType":"ExpressionStatement","src":"13246:65:46"},{"expression":{"arguments":[{"expression":{"id":15948,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13340:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13344:6:46","memberName":"sender","nodeType":"MemberAccess","src":"13340:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":15952,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"13360:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}],"id":15951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13352:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15950,"name":"address","nodeType":"ElementaryTypeName","src":"13352:7:46","typeDescriptions":{}}},"id":15953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13352:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15954,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15927,"src":"13367:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15947,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"13330:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":15955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13330:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15956,"nodeType":"ExpressionStatement","src":"13330:45:46"},{"expression":{"id":15959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15957,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"13385:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":15958,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15927,"src":"13409:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13385:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15960,"nodeType":"ExpressionStatement","src":"13385:31:46"},{"eventCall":{"arguments":[{"expression":{"id":15962,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13466:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13470:6:46","memberName":"sender","nodeType":"MemberAccess","src":"13466:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15964,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15927,"src":"13478:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15961,"name":"TokensDepositedToTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15133,"src":"13440:25:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13440:46:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15966,"nodeType":"EmitStatement","src":"13435:51:46"}]},"documentation":{"id":15925,"nodeType":"StructuredDocumentation","src":"12966:149:46","text":" @dev Внести токены в казну DLE\n @param _amount Количество токенов для внесения"},"functionSelector":"c0e58a0e","id":15968,"implemented":true,"kind":"function","modifiers":[],"name":"depositToTreasury","nameLocation":"13129:17:46","nodeType":"FunctionDefinition","parameters":{"id":15928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15927,"mutability":"mutable","name":"_amount","nameLocation":"13155:7:46","nodeType":"VariableDeclaration","scope":15968,"src":"13147:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15926,"name":"uint256","nodeType":"ElementaryTypeName","src":"13147:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13146:17:46"},"returnParameters":{"id":15929,"nodeType":"ParameterList","parameters":[],"src":"13173:0:46"},"scope":16619,"src":"13120:373:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":16067,"nodeType":"Block","src":"14063:964:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15983,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15971,"src":"14081:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":15986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14103:1:46","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":15985,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14095:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15984,"name":"address","nodeType":"ElementaryTypeName","src":"14095:7:46","typeDescriptions":{}}},"id":15987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14095:10:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14081:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":15989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14107:14:46","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":15982,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14073:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14073:49:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15991,"nodeType":"ExpressionStatement","src":"14073:49:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15993,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15973,"src":"14140:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14150:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14140:11:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e74206d7573742062652067726561746572207468616e2030","id":15996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14153:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""},"value":"Amount must be greater than 0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""}],"id":15992,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14132:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14132:53:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15998,"nodeType":"ExpressionStatement","src":"14132:53:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16000,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15973,"src":"14203:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":16001,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"14214:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14203:31:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742074726561737572792062616c616e6365","id":16003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14236:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_59eae394831db960eed2b1204907b57c5e1f65d6dfb40c9a41314d384a8055da","typeString":"literal_string \"Insufficient treasury balance\""},"value":"Insufficient treasury balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_59eae394831db960eed2b1204907b57c5e1f65d6dfb40c9a41314d384a8055da","typeString":"literal_string \"Insufficient treasury balance\""}],"id":15999,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14195:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14195:73:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16005,"nodeType":"ExpressionStatement","src":"14195:73:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16007,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15975,"src":"14286:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":16008,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"14298:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":16009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14304:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"14298:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14286:27:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642074696d656c6f636b","id":16011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14315:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""},"value":"Invalid timelock"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""}],"id":16006,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14278:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14278:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16013,"nodeType":"ExpressionStatement","src":"14278:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":16016,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"14362:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14366:6:46","memberName":"sender","nodeType":"MemberAccess","src":"14362:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16015,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"14352:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":16018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14352:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":16019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14376:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14352:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f73616c","id":16021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14379:37:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""},"value":"Must hold tokens to create proposal"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""}],"id":16014,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14344:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14344:73:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16023,"nodeType":"ExpressionStatement","src":"14344:73:46"},{"assignments":[16025],"declarations":[{"constant":false,"id":16025,"mutability":"mutable","name":"proposalId","nameLocation":"14436:10:46","nodeType":"VariableDeclaration","scope":16067,"src":"14428:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16024,"name":"uint256","nodeType":"ElementaryTypeName","src":"14428:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16028,"initialValue":{"id":16027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14449:25:46","subExpression":{"id":16026,"name":"treasuryProposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15083,"src":"14449:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14428:46:46"},{"expression":{"id":16054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16029,"name":"treasuryProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15077,"src":"14493:17:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal storage ref)"}},"id":16031,"indexExpression":{"id":16030,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16025,"src":"14511:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14493:29:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage","typeString":"struct DLE.TreasuryProposal storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16033,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15971,"src":"14567:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16034,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15973,"src":"14599:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16035,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15975,"src":"14630:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":16036,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"14664:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14668:6:46","memberName":"sender","nodeType":"MemberAccess","src":"14664:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":16041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14712:1:46","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":16040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"14700:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":16038,"name":"bytes","nodeType":"ElementaryTypeName","src":"14704:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16039,"nodeType":"ArrayTypeName","src":"14704:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":16042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14700:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"66616c7365","id":16043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14738:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":16044,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"14774:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":16045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14774:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16046,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"14790:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14774:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16048,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14773:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":16049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14810:3:46","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"14773:40:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":16051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14844:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":16052,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15977,"src":"14872:12:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16032,"name":"TreasuryProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15059,"src":"14525:16:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TreasuryProposal_$15059_storage_ptr_$","typeString":"type(struct DLE.TreasuryProposal storage pointer)"}},"id":16053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14556:9:46","14591:6:46","14620:8:46","14653:9:46","14688:10:46","14728:8:46","14757:14:46","14827:15:46","14859:11:46"],"names":["recipient","amount","timelock","initiator","signatures","executed","quorumRequired","signaturesCount","description"],"nodeType":"FunctionCall","src":"14525:370:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_memory_ptr","typeString":"struct DLE.TreasuryProposal memory"}},"src":"14493:402:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage","typeString":"struct DLE.TreasuryProposal storage ref"}},"id":16055,"nodeType":"ExpressionStatement","src":"14493:402:46"},{"eventCall":{"arguments":[{"id":16057,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16025,"src":"14935:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":16058,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"14947:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14951:6:46","memberName":"sender","nodeType":"MemberAccess","src":"14947:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16060,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15971,"src":"14959:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16061,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15973,"src":"14971:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16062,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15977,"src":"14980:12:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16056,"name":"TreasuryProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15145,"src":"14911:23:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_address_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,address,uint256,string memory)"}},"id":16063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14911:82:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16064,"nodeType":"EmitStatement","src":"14906:87:46"},{"expression":{"id":16065,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16025,"src":"15010:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15981,"id":16066,"nodeType":"Return","src":"15003:17:46"}]},"documentation":{"id":15969,"nodeType":"StructuredDocumentation","src":"13499:378:46","text":" @dev Создать предложение на вывод средств из казны\n @param _recipient Адрес получателя\n @param _amount Количество токенов для вывода\n @param _timelock Время исполнения (timestamp)\n @param _description Описание предложения"},"functionSelector":"1b470faf","id":16068,"implemented":true,"kind":"function","modifiers":[],"name":"createTreasuryProposal","nameLocation":"13891:22:46","nodeType":"FunctionDefinition","parameters":{"id":15978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15971,"mutability":"mutable","name":"_recipient","nameLocation":"13931:10:46","nodeType":"VariableDeclaration","scope":16068,"src":"13923:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15970,"name":"address","nodeType":"ElementaryTypeName","src":"13923:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15973,"mutability":"mutable","name":"_amount","nameLocation":"13959:7:46","nodeType":"VariableDeclaration","scope":16068,"src":"13951:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15972,"name":"uint256","nodeType":"ElementaryTypeName","src":"13951:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15975,"mutability":"mutable","name":"_timelock","nameLocation":"13984:9:46","nodeType":"VariableDeclaration","scope":16068,"src":"13976:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15974,"name":"uint256","nodeType":"ElementaryTypeName","src":"13976:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15977,"mutability":"mutable","name":"_description","nameLocation":"14017:12:46","nodeType":"VariableDeclaration","scope":16068,"src":"14003:26:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15976,"name":"string","nodeType":"ElementaryTypeName","src":"14003:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13913:122:46"},"returnParameters":{"id":15981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16068,"src":"14054:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15979,"name":"uint256","nodeType":"ElementaryTypeName","src":"14054:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14053:9:46"},"scope":16619,"src":"13882:1145:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":16188,"nodeType":"Block","src":"15262:1084:46","statements":[{"assignments":[16076],"declarations":[{"constant":false,"id":16076,"mutability":"mutable","name":"proposal","nameLocation":"15297:8:46","nodeType":"VariableDeclaration","scope":16188,"src":"15272:33:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"},"typeName":{"id":16075,"nodeType":"UserDefinedTypeName","pathNode":{"id":16074,"name":"TreasuryProposal","nameLocations":["15272:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":15059,"src":"15272:16:46"},"referencedDeclaration":15059,"src":"15272:16:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"}},"visibility":"internal"}],"id":16080,"initialValue":{"baseExpression":{"id":16077,"name":"treasuryProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15077,"src":"15308:17:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal storage ref)"}},"id":16079,"indexExpression":{"id":16078,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16071,"src":"15326:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15308:30:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage","typeString":"struct DLE.TreasuryProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"15272:66:46"},{"expression":{"arguments":[{"id":16084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"15356:18:46","subExpression":{"expression":{"id":16082,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15357:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15366:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15052,"src":"15357:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":16085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15376:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":16081,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15348:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15348:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16087,"nodeType":"ExpressionStatement","src":"15348:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16089,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"15422:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":16090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15428:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"15422:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":16091,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15440:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16092,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15449:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":15045,"src":"15440:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15422:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c2065787069726564","id":16094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15459:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""},"value":"Proposal expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""}],"id":16088,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15414:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15414:64:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16096,"nodeType":"ExpressionStatement","src":"15414:64:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":16099,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"15506:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15510:6:46","memberName":"sender","nodeType":"MemberAccess","src":"15506:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16098,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"15496:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":16101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15496:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":16102,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15520:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15496:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":16104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15523:19:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":16097,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15488:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15488:55:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16106,"nodeType":"ExpressionStatement","src":"15488:55:46"},{"body":{"id":16144,"nodeType":"Block","src":"15703:212:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"id":16120,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15742:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16121,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15751:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15050,"src":"15742:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":16123,"indexExpression":{"id":16122,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16108,"src":"15762:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15742:22:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"id":16124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15765:6:46","memberName":"length","nodeType":"MemberAccess","src":"15742:29:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":16125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15775:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15742:34:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"expression":{"id":16129,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15808:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15817:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15050,"src":"15808:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":16132,"indexExpression":{"id":16131,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16108,"src":"15828:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15808:22:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},{"components":[{"id":16134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15833:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16133,"name":"address","nodeType":"ElementaryTypeName","src":"15833:7:46","typeDescriptions":{}}}],"id":16135,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15832:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":16127,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"15797:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16128,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15801:6:46","memberName":"decode","nodeType":"MemberAccess","src":"15797:10:46","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":16136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15797:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":16137,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"15846:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15850:6:46","memberName":"sender","nodeType":"MemberAccess","src":"15846:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15797:59:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15742:114:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479207369676e6564","id":16141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15874:16:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""},"value":"Already signed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""}],"id":16119,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15717:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15717:187:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16143,"nodeType":"ExpressionStatement","src":"15717:187:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16111,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16108,"src":"15666:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":16112,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15670:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15679:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15050,"src":"15670:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":16114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15690:6:46","memberName":"length","nodeType":"MemberAccess","src":"15670:26:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15666:30:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16145,"initializationExpression":{"assignments":[16108],"declarations":[{"constant":false,"id":16108,"mutability":"mutable","name":"i","nameLocation":"15659:1:46","nodeType":"VariableDeclaration","scope":16145,"src":"15651:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16107,"name":"uint256","nodeType":"ElementaryTypeName","src":"15651:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16110,"initialValue":{"hexValue":"30","id":16109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15663:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15651:13:46"},"loopExpression":{"expression":{"id":16117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15698:3:46","subExpression":{"id":16116,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16108,"src":"15698:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16118,"nodeType":"ExpressionStatement","src":"15698:3:46"},"nodeType":"ForStatement","src":"15646:269:46"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":16153,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"15967:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15971:6:46","memberName":"sender","nodeType":"MemberAccess","src":"15967:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":16151,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"15950:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15954:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"15950:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":16155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15950:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"expression":{"id":16146,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15925:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16149,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15934:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15050,"src":"15925:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":16150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15945:4:46","memberName":"push","nodeType":"MemberAccess","src":"15925:24:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_bytes_storage_$dyn_storage_ptr_$_t_bytes_storage_$returns$__$attached_to$_t_array$_t_bytes_storage_$dyn_storage_ptr_$","typeString":"function (bytes storage ref[] storage pointer,bytes storage ref)"}},"id":16156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15925:54:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16157,"nodeType":"ExpressionStatement","src":"15925:54:46"},{"expression":{"id":16161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15989:26:46","subExpression":{"expression":{"id":16158,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"15989:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16160,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15998:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15056,"src":"15989:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16162,"nodeType":"ExpressionStatement","src":"15989:26:46"},{"eventCall":{"arguments":[{"id":16164,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16071,"src":"16054:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":16165,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16067:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":16166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16071:6:46","memberName":"sender","nodeType":"MemberAccess","src":"16067:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":16167,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"16079:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16088:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15056,"src":"16079:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16163,"name":"TreasuryProposalSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15153,"src":"16031:22:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":16169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16031:73:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16170,"nodeType":"EmitStatement","src":"16026:78:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16171,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"16187:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16172,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16196:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15056,"src":"16187:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":16173,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"16215:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16174,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16224:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15054,"src":"16215:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16187:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16187,"nodeType":"IfStatement","src":"16183:157:46","trueBody":{"id":16186,"nodeType":"Block","src":"16240:100:46","statements":[{"expression":{"id":16180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16176,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16076,"src":"16254:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16178,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16263:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15052,"src":"16254:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":16179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16274:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"16254:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16181,"nodeType":"ExpressionStatement","src":"16254:24:46"},{"expression":{"arguments":[{"id":16183,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16071,"src":"16317:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16182,"name":"_executeTreasuryProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16250,"src":"16292:24:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":16184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16292:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16185,"nodeType":"ExpressionStatement","src":"16292:37:46"}]}}]},"documentation":{"id":16069,"nodeType":"StructuredDocumentation","src":"15033:164:46","text":" @dev Подписать предложение на вывод средств из казны\n @param _proposalId ID предложения"},"functionSelector":"1c0f4d8d","id":16189,"implemented":true,"kind":"function","modifiers":[],"name":"signTreasuryProposal","nameLocation":"15211:20:46","nodeType":"FunctionDefinition","parameters":{"id":16072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16071,"mutability":"mutable","name":"_proposalId","nameLocation":"15240:11:46","nodeType":"VariableDeclaration","scope":16189,"src":"15232:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16070,"name":"uint256","nodeType":"ElementaryTypeName","src":"15232:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15231:21:46"},"returnParameters":{"id":16073,"nodeType":"ParameterList","parameters":[],"src":"15262:0:46"},"scope":16619,"src":"15202:1144:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":16249,"nodeType":"Block","src":"16585:539:46","statements":[{"assignments":[16197],"declarations":[{"constant":false,"id":16197,"mutability":"mutable","name":"proposal","nameLocation":"16620:8:46","nodeType":"VariableDeclaration","scope":16249,"src":"16595:33:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"},"typeName":{"id":16196,"nodeType":"UserDefinedTypeName","pathNode":{"id":16195,"name":"TreasuryProposal","nameLocations":["16595:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":15059,"src":"16595:16:46"},"referencedDeclaration":15059,"src":"16595:16:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"}},"visibility":"internal"}],"id":16201,"initialValue":{"baseExpression":{"id":16198,"name":"treasuryProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15077,"src":"16631:17:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal storage ref)"}},"id":16200,"indexExpression":{"id":16199,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16192,"src":"16649:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16631:30:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage","typeString":"struct DLE.TreasuryProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"16595:66:46"},{"expression":{"arguments":[{"expression":{"id":16203,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16679:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16688:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15052,"src":"16679:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c206e6f74206578656375746564","id":16205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16698:23:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_6bac411c85eb68b093cd2da947f130cf3c5917b45960f6d3ad1d1c51d78e87dc","typeString":"literal_string \"Proposal not executed\""},"value":"Proposal not executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6bac411c85eb68b093cd2da947f130cf3c5917b45960f6d3ad1d1c51d78e87dc","typeString":"literal_string \"Proposal not executed\""}],"id":16202,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16671:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16671:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16207,"nodeType":"ExpressionStatement","src":"16671:51:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16209,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16740:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16749:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15056,"src":"16740:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":16211,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16768:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16212,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16777:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15054,"src":"16768:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16740:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742071756f72756d","id":16214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16793:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""},"value":"Insufficient quorum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""}],"id":16208,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16732:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16732:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16216,"nodeType":"ExpressionStatement","src":"16732:83:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16218,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16833:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16219,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16842:6:46","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":15043,"src":"16833:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":16220,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"16852:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16833:39:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742074726561737572792062616c616e6365","id":16222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16874:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_59eae394831db960eed2b1204907b57c5e1f65d6dfb40c9a41314d384a8055da","typeString":"literal_string \"Insufficient treasury balance\""},"value":"Insufficient treasury balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_59eae394831db960eed2b1204907b57c5e1f65d6dfb40c9a41314d384a8055da","typeString":"literal_string \"Insufficient treasury balance\""}],"id":16217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16825:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16825:81:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16224,"nodeType":"ExpressionStatement","src":"16825:81:46"},{"expression":{"id":16228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16225,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"16917:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":16226,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16941:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16227,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16950:6:46","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":15043,"src":"16941:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16917:39:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16229,"nodeType":"ExpressionStatement","src":"16917:39:46"},{"expression":{"arguments":[{"arguments":[{"id":16233,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"16984:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$16619","typeString":"contract DLE"}],"id":16232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16976:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16231,"name":"address","nodeType":"ElementaryTypeName","src":"16976:7:46","typeDescriptions":{}}},"id":16234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16976:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":16235,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"16991:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17000:9:46","memberName":"recipient","nodeType":"MemberAccess","referencedDeclaration":15041,"src":"16991:18:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":16237,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"17011:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16238,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17020:6:46","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":15043,"src":"17011:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16230,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"16966:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16966:61:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16240,"nodeType":"ExpressionStatement","src":"16966:61:46"},{"eventCall":{"arguments":[{"id":16242,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16192,"src":"17068:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":16243,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"17081:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17090:9:46","memberName":"recipient","nodeType":"MemberAccess","referencedDeclaration":15041,"src":"17081:18:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":16245,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16197,"src":"17101:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16246,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17110:6:46","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":15043,"src":"17101:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16241,"name":"TreasuryProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15161,"src":"17043:24:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":16247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17043:74:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16248,"nodeType":"EmitStatement","src":"17038:79:46"}]},"documentation":{"id":16190,"nodeType":"StructuredDocumentation","src":"16352:164:46","text":" @dev Выполнить предложение на вывод средств из казны\n @param _proposalId ID предложения"},"id":16250,"implemented":true,"kind":"function","modifiers":[],"name":"_executeTreasuryProposal","nameLocation":"16530:24:46","nodeType":"FunctionDefinition","parameters":{"id":16193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16192,"mutability":"mutable","name":"_proposalId","nameLocation":"16563:11:46","nodeType":"VariableDeclaration","scope":16250,"src":"16555:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16191,"name":"uint256","nodeType":"ElementaryTypeName","src":"16555:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16554:21:46"},"returnParameters":{"id":16194,"nodeType":"ParameterList","parameters":[],"src":"16585:0:46"},"scope":16619,"src":"16521:603:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16298,"nodeType":"Block","src":"17393:403:46","statements":[{"assignments":[16258],"declarations":[{"constant":false,"id":16258,"mutability":"mutable","name":"proposal","nameLocation":"17428:8:46","nodeType":"VariableDeclaration","scope":16298,"src":"17403:33:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"},"typeName":{"id":16257,"nodeType":"UserDefinedTypeName","pathNode":{"id":16256,"name":"TreasuryProposal","nameLocations":["17403:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":15059,"src":"17403:16:46"},"referencedDeclaration":15059,"src":"17403:16:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal"}},"visibility":"internal"}],"id":16262,"initialValue":{"baseExpression":{"id":16259,"name":"treasuryProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15077,"src":"17439:17:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TreasuryProposal_$15059_storage_$","typeString":"mapping(uint256 => struct DLE.TreasuryProposal storage ref)"}},"id":16261,"indexExpression":{"id":16260,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16253,"src":"17457:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17439:30:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage","typeString":"struct DLE.TreasuryProposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17403:66:46"},{"expression":{"arguments":[{"id":16266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17487:18:46","subExpression":{"expression":{"id":16264,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"17488:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16265,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17497:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15052,"src":"17488:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":16267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17507:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":16263,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17479:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17479:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16269,"nodeType":"ExpressionStatement","src":"17479:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16271,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"17553:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":16272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17559:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"17553:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":16273,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"17572:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17581:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":15045,"src":"17572:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17553:36:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"54696d656c6f636b206e6f742065787069726564","id":16276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17591:22:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_58efe87b72489a936868b54a04536c1ea79f384401787a620136326a6bd781db","typeString":"literal_string \"Timelock not expired\""},"value":"Timelock not expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_58efe87b72489a936868b54a04536c1ea79f384401787a620136326a6bd781db","typeString":"literal_string \"Timelock not expired\""}],"id":16270,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17545:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17545:69:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16278,"nodeType":"ExpressionStatement","src":"17545:69:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16280,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"17632:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16281,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17641:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15056,"src":"17632:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":16282,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"17660:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16283,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17669:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15054,"src":"17660:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17632:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e742071756f72756d","id":16285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17685:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""},"value":"Insufficient quorum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ff74e91362f26a69e35baaddd54267c224f04274e715a7e428a59bcf67459bae","typeString":"literal_string \"Insufficient quorum\""}],"id":16279,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17624:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":16286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17624:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16287,"nodeType":"ExpressionStatement","src":"17624:83:46"},{"expression":{"id":16292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16288,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"17718:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_TreasuryProposal_$15059_storage_ptr","typeString":"struct DLE.TreasuryProposal storage pointer"}},"id":16290,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17727:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15052,"src":"17718:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":16291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17738:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"17718:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16293,"nodeType":"ExpressionStatement","src":"17718:24:46"},{"expression":{"arguments":[{"id":16295,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16253,"src":"17777:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16294,"name":"_executeTreasuryProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16250,"src":"17752:24:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":16296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17752:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16297,"nodeType":"ExpressionStatement","src":"17752:37:46"}]},"documentation":{"id":16251,"nodeType":"StructuredDocumentation","src":"17130:195:46","text":" @dev Выполнить предложение на вывод средств после истечения таймлока\n @param _proposalId ID предложения"},"functionSelector":"007e637e","id":16299,"implemented":true,"kind":"function","modifiers":[],"name":"executeTreasuryProposal","nameLocation":"17339:23:46","nodeType":"FunctionDefinition","parameters":{"id":16254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16253,"mutability":"mutable","name":"_proposalId","nameLocation":"17371:11:46","nodeType":"VariableDeclaration","scope":16299,"src":"17363:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16252,"name":"uint256","nodeType":"ElementaryTypeName","src":"17363:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17362:21:46"},"returnParameters":{"id":16255,"nodeType":"ParameterList","parameters":[],"src":"17393:0:46"},"scope":16619,"src":"17330:466:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":16336,"nodeType":"Block","src":"18164:369:46","statements":[{"assignments":[16308],"declarations":[{"constant":false,"id":16308,"mutability":"mutable","name":"userBalance","nameLocation":"18182:11:46","nodeType":"VariableDeclaration","scope":16336,"src":"18174:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16307,"name":"uint256","nodeType":"ElementaryTypeName","src":"18174:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16312,"initialValue":{"arguments":[{"id":16310,"name":"_address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16302,"src":"18206:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16309,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"18196:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":16311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18196:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18174:41:46"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16313,"name":"userBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16308,"src":"18229:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":16314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18244:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18229:16:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16316,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"18249:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":16317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18273:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18249:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18229:45:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16323,"nodeType":"IfStatement","src":"18225:84:46","trueBody":{"id":16322,"nodeType":"Block","src":"18276:33:46","statements":[{"expression":{"hexValue":"30","id":16320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18297:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":16306,"id":16321,"nodeType":"Return","src":"18290:8:46"}]}},{"assignments":[16325],"declarations":[{"constant":false,"id":16325,"mutability":"mutable","name":"userShare","nameLocation":"18436:9:46","nodeType":"VariableDeclaration","scope":16336,"src":"18428:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16324,"name":"uint256","nodeType":"ElementaryTypeName","src":"18428:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16333,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16326,"name":"userBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16308,"src":"18449:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16327,"name":"totalTreasuryBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"18463:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18449:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16329,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18448:36:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":16330,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"18487:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":16331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18487:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18448:52:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18428:72:46"},{"expression":{"id":16334,"name":"userShare","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16325,"src":"18517:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16306,"id":16335,"nodeType":"Return","src":"18510:16:46"}]},"documentation":{"id":16300,"nodeType":"StructuredDocumentation","src":"17804:275:46","text":" @dev Получить доступную для вывода сумму для адреса (пропорционально доле)\n @param _address Адрес для проверки\n @return Доступная сумма для вывода"},"functionSelector":"b4931936","id":16337,"implemented":true,"kind":"function","modifiers":[],"name":"getAvailableWithdrawal","nameLocation":"18093:22:46","nodeType":"FunctionDefinition","parameters":{"id":16303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16302,"mutability":"mutable","name":"_address","nameLocation":"18124:8:46","nodeType":"VariableDeclaration","scope":16337,"src":"18116:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16301,"name":"address","nodeType":"ElementaryTypeName","src":"18116:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"18115:18:46"},"returnParameters":{"id":16306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16305,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16337,"src":"18155:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16304,"name":"uint256","nodeType":"ElementaryTypeName","src":"18155:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18154:9:46"},"scope":16619,"src":"18084:449:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2101,4460,4849],"body":{"id":16348,"nodeType":"Block","src":"18724:55:46","statements":[{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":16346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18741:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":16345,"id":16347,"nodeType":"Return","src":"18734:38:46"}]},"functionSelector":"4bf5d7e9","id":16349,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"18634:10:46","nodeType":"FunctionDefinition","overrides":{"id":16342,"nodeType":"OverrideSpecifier","overrides":[{"id":16339,"name":"Governor","nameLocations":["18668:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"18668:8:46"},{"id":16340,"name":"GovernorVotes","nameLocations":["18678:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"18678:13:46"},{"id":16341,"name":"Votes","nameLocations":["18693:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"18693:5:46"}],"src":"18659:40:46"},"parameters":{"id":16338,"nodeType":"ParameterList","parameters":[],"src":"18644:2:46"},"returnParameters":{"id":16345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16344,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16349,"src":"18709:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16343,"name":"string","nodeType":"ElementaryTypeName","src":"18709:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18708:15:46"},"scope":16619,"src":"18625:154:46","stateMutability":"pure","virtual":false,"visibility":"public"},{"baseFunctions":[2095,4436,4829],"body":{"id":16364,"nodeType":"Block","src":"18871:44:46","statements":[{"expression":{"arguments":[{"expression":{"id":16360,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"18895:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":16361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18901:6:46","memberName":"number","nodeType":"MemberAccess","src":"18895:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16359,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18888:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":16358,"name":"uint48","nodeType":"ElementaryTypeName","src":"18888:6:46","typeDescriptions":{}}},"id":16362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18888:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":16357,"id":16363,"nodeType":"Return","src":"18881:27:46"}]},"functionSelector":"91ddadf4","id":16365,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"18793:5:46","nodeType":"FunctionDefinition","overrides":{"id":16354,"nodeType":"OverrideSpecifier","overrides":[{"id":16351,"name":"Governor","nameLocations":["18822:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"18822:8:46"},{"id":16352,"name":"GovernorVotes","nameLocations":["18832:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"18832:13:46"},{"id":16353,"name":"Votes","nameLocations":["18847:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"18847:5:46"}],"src":"18813:40:46"},"parameters":{"id":16350,"nodeType":"ParameterList","parameters":[],"src":"18798:2:46"},"returnParameters":{"id":16357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16356,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16365,"src":"18863:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":16355,"name":"uint48","nodeType":"ElementaryTypeName","src":"18863:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"18862:8:46"},"scope":16619,"src":"18784:131:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[6312],"body":{"id":16384,"nodeType":"Block","src":"19009:48:46","statements":[{"expression":{"arguments":[{"id":16379,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16367,"src":"19033:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16380,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16369,"src":"19039:2:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16381,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16371,"src":"19043:6:46","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":16376,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19019:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19025:7:46","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":6312,"src":"19019:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19019:31:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16383,"nodeType":"ExpressionStatement","src":"19019:31:46"}]},"id":16385,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"18929:7:46","nodeType":"FunctionDefinition","overrides":{"id":16374,"nodeType":"OverrideSpecifier","overrides":[{"id":16373,"name":"ERC20Votes","nameLocations":["18997:10:46"],"nodeType":"IdentifierPath","referencedDeclaration":6357,"src":"18997:10:46"}],"src":"18988:20:46"},"parameters":{"id":16372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16367,"mutability":"mutable","name":"from","nameLocation":"18945:4:46","nodeType":"VariableDeclaration","scope":16385,"src":"18937:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16366,"name":"address","nodeType":"ElementaryTypeName","src":"18937:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16369,"mutability":"mutable","name":"to","nameLocation":"18959:2:46","nodeType":"VariableDeclaration","scope":16385,"src":"18951:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16368,"name":"address","nodeType":"ElementaryTypeName","src":"18951:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16371,"mutability":"mutable","name":"amount","nameLocation":"18971:6:46","nodeType":"VariableDeclaration","scope":16385,"src":"18963:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16370,"name":"uint256","nodeType":"ElementaryTypeName","src":"18963:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18936:42:46"},"returnParameters":{"id":16375,"nodeType":"ParameterList","parameters":[],"src":"19009:0:46"},"scope":16619,"src":"18920:137:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6767],"body":{"id":16399,"nodeType":"Block","src":"19140:43:46","statements":[{"expression":{"arguments":[{"id":16396,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16387,"src":"19170:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":16394,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19157:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19163:6:46","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":6767,"src":"19157:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":16397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19157:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16393,"id":16398,"nodeType":"Return","src":"19150:26:46"}]},"functionSelector":"7ecebe00","id":16400,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"19071:6:46","nodeType":"FunctionDefinition","overrides":{"id":16390,"nodeType":"OverrideSpecifier","overrides":[{"id":16389,"name":"Nonces","nameLocations":["19114:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"19114:6:46"}],"src":"19105:16:46"},"parameters":{"id":16388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16387,"mutability":"mutable","name":"owner","nameLocation":"19086:5:46","nodeType":"VariableDeclaration","scope":16400,"src":"19078:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16386,"name":"address","nodeType":"ElementaryTypeName","src":"19078:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"19077:15:46"},"returnParameters":{"id":16393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16400,"src":"19131:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16391,"name":"uint256","nodeType":"ElementaryTypeName","src":"19131:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19130:9:46"},"scope":16619,"src":"19062:121:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[559,5693],"body":{"id":16412,"nodeType":"Block","src":"19266:36:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16408,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19283:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19289:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":559,"src":"19283:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":16410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19283:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16407,"id":16411,"nodeType":"Return","src":"19276:19:46"}]},"functionSelector":"06fdde03","id":16413,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"19197:4:46","nodeType":"FunctionDefinition","overrides":{"id":16404,"nodeType":"OverrideSpecifier","overrides":[{"id":16402,"name":"ERC20","nameLocations":["19225:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"19225:5:46"},{"id":16403,"name":"Governor","nameLocations":["19232:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19232:8:46"}],"src":"19216:25:46"},"parameters":{"id":16401,"nodeType":"ParameterList","parameters":[],"src":"19201:2:46"},"returnParameters":{"id":16407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16406,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16413,"src":"19251:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16405,"name":"string","nodeType":"ElementaryTypeName","src":"19251:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"19250:15:46"},"scope":16619,"src":"19188:114:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2107,3904],"body":{"id":16425,"nodeType":"Block","src":"19397:43:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16421,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19414:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19420:11:46","memberName":"votingDelay","nodeType":"MemberAccess","referencedDeclaration":3904,"src":"19414:17:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":16423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19414:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16420,"id":16424,"nodeType":"Return","src":"19407:26:46"}]},"functionSelector":"3932abb1","id":16426,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"19316:11:46","nodeType":"FunctionDefinition","overrides":{"id":16417,"nodeType":"OverrideSpecifier","overrides":[{"id":16415,"name":"Governor","nameLocations":["19351:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19351:8:46"},{"id":16416,"name":"GovernorSettings","nameLocations":["19361:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"19361:16:46"}],"src":"19342:36:46"},"parameters":{"id":16414,"nodeType":"ParameterList","parameters":[],"src":"19327:2:46"},"returnParameters":{"id":16420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16419,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16426,"src":"19388:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16418,"name":"uint256","nodeType":"ElementaryTypeName","src":"19388:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19387:9:46"},"scope":16619,"src":"19307:133:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2113,3914],"body":{"id":16438,"nodeType":"Block","src":"19536:44:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16434,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19553:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19559:12:46","memberName":"votingPeriod","nodeType":"MemberAccess","referencedDeclaration":3914,"src":"19553:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":16436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19553:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16433,"id":16437,"nodeType":"Return","src":"19546:27:46"}]},"functionSelector":"02a251a3","id":16439,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"19454:12:46","nodeType":"FunctionDefinition","overrides":{"id":16430,"nodeType":"OverrideSpecifier","overrides":[{"id":16428,"name":"Governor","nameLocations":["19490:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19490:8:46"},{"id":16429,"name":"GovernorSettings","nameLocations":["19500:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"19500:16:46"}],"src":"19481:36:46"},"parameters":{"id":16427,"nodeType":"ParameterList","parameters":[],"src":"19466:2:46"},"returnParameters":{"id":16433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16439,"src":"19527:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16431,"name":"uint256","nodeType":"ElementaryTypeName","src":"19527:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19526:9:46"},"scope":16619,"src":"19445:135:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2121,4620],"body":{"id":16454,"nodeType":"Block","src":"19700:49:46","statements":[{"expression":{"arguments":[{"id":16451,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16441,"src":"19730:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16449,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19717:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19723:6:46","memberName":"quorum","nodeType":"MemberAccess","referencedDeclaration":4620,"src":"19717:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":16452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19717:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16448,"id":16453,"nodeType":"Return","src":"19710:32:46"}]},"functionSelector":"f8ce560a","id":16455,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"19594:6:46","nodeType":"FunctionDefinition","overrides":{"id":16445,"nodeType":"OverrideSpecifier","overrides":[{"id":16443,"name":"Governor","nameLocations":["19643:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19643:8:46"},{"id":16444,"name":"GovernorVotesQuorumFraction","nameLocations":["19653:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"19653:27:46"}],"src":"19634:47:46"},"parameters":{"id":16442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16441,"mutability":"mutable","name":"blockNumber","nameLocation":"19609:11:46","nodeType":"VariableDeclaration","scope":16455,"src":"19601:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16440,"name":"uint256","nodeType":"ElementaryTypeName","src":"19601:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19600:21:46"},"returnParameters":{"id":16448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16447,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16455,"src":"19691:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16446,"name":"uint256","nodeType":"ElementaryTypeName","src":"19691:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19690:9:46"},"scope":16619,"src":"19585:164:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[708,4116],"body":{"id":16471,"nodeType":"Block","src":"19869:47:46","statements":[{"expression":{"arguments":[{"id":16468,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16457,"src":"19898:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16466,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19886:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19892:5:46","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":4116,"src":"19886:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":16469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19886:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":16465,"id":16470,"nodeType":"Return","src":"19879:30:46"}]},"functionSelector":"3e4f49e6","id":16472,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"19763:5:46","nodeType":"FunctionDefinition","overrides":{"id":16461,"nodeType":"OverrideSpecifier","overrides":[{"id":16459,"name":"Governor","nameLocations":["19810:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19810:8:46"},{"id":16460,"name":"GovernorTimelockControl","nameLocations":["19820:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"19820:23:46"}],"src":"19801:43:46"},"parameters":{"id":16458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16457,"mutability":"mutable","name":"proposalId","nameLocation":"19777:10:46","nodeType":"VariableDeclaration","scope":16472,"src":"19769:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16456,"name":"uint256","nodeType":"ElementaryTypeName","src":"19769:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19768:20:46"},"returnParameters":{"id":16465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16472,"src":"19854:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":16463,"nodeType":"UserDefinedTypeName","pathNode":{"id":16462,"name":"ProposalState","nameLocations":["19854:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"19854:13:46"},"referencedDeclaration":2154,"src":"19854:13:46","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"19853:15:46"},"scope":16619,"src":"19754:162:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[717,3924],"body":{"id":16484,"nodeType":"Block","src":"20017:49:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16480,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"20034:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20040:17:46","memberName":"proposalThreshold","nodeType":"MemberAccess","referencedDeclaration":3924,"src":"20034:23:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":16482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20034:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16479,"id":16483,"nodeType":"Return","src":"20027:32:46"}]},"functionSelector":"b58131b0","id":16485,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"19930:17:46","nodeType":"FunctionDefinition","overrides":{"id":16476,"nodeType":"OverrideSpecifier","overrides":[{"id":16474,"name":"Governor","nameLocations":["19971:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"19971:8:46"},{"id":16475,"name":"GovernorSettings","nameLocations":["19981:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"19981:16:46"}],"src":"19962:36:46"},"parameters":{"id":16473,"nodeType":"ParameterList","parameters":[],"src":"19947:2:46"},"returnParameters":{"id":16479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16478,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16485,"src":"20008:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16477,"name":"uint256","nodeType":"ElementaryTypeName","src":"20008:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20007:9:46"},"scope":16619,"src":"19921:145:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1487,4297],"body":{"id":16512,"nodeType":"Block","src":"20299:82:46","statements":[{"expression":{"arguments":[{"id":16506,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16488,"src":"20330:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":16507,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16491,"src":"20339:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":16508,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16494,"src":"20347:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":16509,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16496,"src":"20358:15:46","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":16504,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"20316:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20322:7:46","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":4297,"src":"20316:13:46","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":16510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20316:58:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16503,"id":16511,"nodeType":"Return","src":"20309:65:46"}]},"id":16513,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"20080:7:46","nodeType":"FunctionDefinition","overrides":{"id":16500,"nodeType":"OverrideSpecifier","overrides":[{"id":16498,"name":"Governor","nameLocations":["20246:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"20246:8:46"},{"id":16499,"name":"GovernorTimelockControl","nameLocations":["20256:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"20256:23:46"}],"src":"20237:43:46"},"parameters":{"id":16497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16488,"mutability":"mutable","name":"targets","nameLocation":"20114:7:46","nodeType":"VariableDeclaration","scope":16513,"src":"20097:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":16486,"name":"address","nodeType":"ElementaryTypeName","src":"20097:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":16487,"nodeType":"ArrayTypeName","src":"20097:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":16491,"mutability":"mutable","name":"values","nameLocation":"20148:6:46","nodeType":"VariableDeclaration","scope":16513,"src":"20131:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":16489,"name":"uint256","nodeType":"ElementaryTypeName","src":"20131:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16490,"nodeType":"ArrayTypeName","src":"20131:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":16494,"mutability":"mutable","name":"calldatas","nameLocation":"20179:9:46","nodeType":"VariableDeclaration","scope":16513,"src":"20164:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16492,"name":"bytes","nodeType":"ElementaryTypeName","src":"20164:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16493,"nodeType":"ArrayTypeName","src":"20164:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":16496,"mutability":"mutable","name":"descriptionHash","nameLocation":"20206:15:46","nodeType":"VariableDeclaration","scope":16513,"src":"20198:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16495,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20198:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"20087:140:46"},"returnParameters":{"id":16503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16502,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16513,"src":"20290:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16501,"name":"uint256","nodeType":"ElementaryTypeName","src":"20290:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20289:9:46"},"scope":16619,"src":"20071:310:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1860,4310],"body":{"id":16525,"nodeType":"Block","src":"20483:41:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16521,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"20500:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20506:9:46","memberName":"_executor","nodeType":"MemberAccess","referencedDeclaration":4310,"src":"20500:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":16523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20500:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":16520,"id":16524,"nodeType":"Return","src":"20493:24:46"}]},"id":16526,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"20395:9:46","nodeType":"FunctionDefinition","overrides":{"id":16517,"nodeType":"OverrideSpecifier","overrides":[{"id":16515,"name":"Governor","nameLocations":["20430:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"20430:8:46"},{"id":16516,"name":"GovernorTimelockControl","nameLocations":["20440:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"20440:23:46"}],"src":"20421:43:46"},"parameters":{"id":16514,"nodeType":"ParameterList","parameters":[],"src":"20404:2:46"},"returnParameters":{"id":16520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16519,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16526,"src":"20474:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16518,"name":"address","nodeType":"ElementaryTypeName","src":"20474:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"20473:9:46"},"scope":16619,"src":"20386:138:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[550],"body":{"id":16540,"nodeType":"Block","src":"20622:60:46","statements":[{"expression":{"arguments":[{"id":16537,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16528,"src":"20663:11:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":16535,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"20639:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20645:17:46","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":550,"src":"20639:23:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":16538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20639:36:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":16534,"id":16539,"nodeType":"Return","src":"20632:43:46"}]},"functionSelector":"01ffc9a7","id":16541,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"20538:17:46","nodeType":"FunctionDefinition","overrides":{"id":16531,"nodeType":"OverrideSpecifier","overrides":[{"id":16530,"name":"Governor","nameLocations":["20597:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"20597:8:46"}],"src":"20588:18:46"},"parameters":{"id":16529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16528,"mutability":"mutable","name":"interfaceId","nameLocation":"20563:11:46","nodeType":"VariableDeclaration","scope":16541,"src":"20556:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":16527,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20556:6:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"20555:20:46"},"returnParameters":{"id":16534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16533,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16541,"src":"20616:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16532,"name":"bool","nodeType":"ElementaryTypeName","src":"20616:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20615:6:46"},"scope":16619,"src":"20529:153:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[789,4140],"body":{"id":16556,"nodeType":"Block","src":"20808:62:46","statements":[{"expression":{"arguments":[{"id":16553,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16543,"src":"20852:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16551,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"20825:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20831:20:46","memberName":"proposalNeedsQueuing","nodeType":"MemberAccess","referencedDeclaration":4140,"src":"20825:26:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":16554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20825:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":16550,"id":16555,"nodeType":"Return","src":"20818:45:46"}]},"functionSelector":"a9a95294","id":16557,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"20696:20:46","nodeType":"FunctionDefinition","overrides":{"id":16547,"nodeType":"OverrideSpecifier","overrides":[{"id":16545,"name":"Governor","nameLocations":["20758:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"20758:8:46"},{"id":16546,"name":"GovernorTimelockControl","nameLocations":["20768:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"20768:23:46"}],"src":"20749:43:46"},"parameters":{"id":16544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16543,"mutability":"mutable","name":"proposalId","nameLocation":"20725:10:46","nodeType":"VariableDeclaration","scope":16557,"src":"20717:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16542,"name":"uint256","nodeType":"ElementaryTypeName","src":"20717:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20716:20:46"},"returnParameters":{"id":16550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16549,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16557,"src":"20802:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16548,"name":"bool","nodeType":"ElementaryTypeName","src":"20802:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20801:6:46"},"scope":16619,"src":"20687:183:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1195,4205],"body":{"id":16587,"nodeType":"Block","src":"21139:103:46","statements":[{"expression":{"arguments":[{"id":16580,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16559,"src":"21179:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16581,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16562,"src":"21191:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":16582,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16565,"src":"21200:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":16583,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16568,"src":"21208:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":16584,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16570,"src":"21219:15:46","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":16578,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"21156:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21162:16:46","memberName":"_queueOperations","nodeType":"MemberAccess","referencedDeclaration":4205,"src":"21156:22:46","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":16585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21156:79:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":16577,"id":16586,"nodeType":"Return","src":"21149:86:46"}]},"id":16588,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"20884:16:46","nodeType":"FunctionDefinition","overrides":{"id":16574,"nodeType":"OverrideSpecifier","overrides":[{"id":16572,"name":"Governor","nameLocations":["21087:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"21087:8:46"},{"id":16573,"name":"GovernorTimelockControl","nameLocations":["21097:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"21097:23:46"}],"src":"21078:43:46"},"parameters":{"id":16571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16559,"mutability":"mutable","name":"proposalId","nameLocation":"20918:10:46","nodeType":"VariableDeclaration","scope":16588,"src":"20910:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16558,"name":"uint256","nodeType":"ElementaryTypeName","src":"20910:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16562,"mutability":"mutable","name":"targets","nameLocation":"20955:7:46","nodeType":"VariableDeclaration","scope":16588,"src":"20938:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":16560,"name":"address","nodeType":"ElementaryTypeName","src":"20938:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":16561,"nodeType":"ArrayTypeName","src":"20938:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":16565,"mutability":"mutable","name":"values","nameLocation":"20989:6:46","nodeType":"VariableDeclaration","scope":16588,"src":"20972:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":16563,"name":"uint256","nodeType":"ElementaryTypeName","src":"20972:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16564,"nodeType":"ArrayTypeName","src":"20972:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":16568,"mutability":"mutable","name":"calldatas","nameLocation":"21020:9:46","nodeType":"VariableDeclaration","scope":16588,"src":"21005:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16566,"name":"bytes","nodeType":"ElementaryTypeName","src":"21005:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16567,"nodeType":"ArrayTypeName","src":"21005:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":16570,"mutability":"mutable","name":"descriptionHash","nameLocation":"21047:15:46","nodeType":"VariableDeclaration","scope":16588,"src":"21039:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16569,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21039:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"20900:168:46"},"returnParameters":{"id":16577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16576,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16588,"src":"21131:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":16575,"name":"uint48","nodeType":"ElementaryTypeName","src":"21131:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"21130:8:46"},"scope":16619,"src":"20875:367:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1372,4244],"body":{"id":16617,"nodeType":"Block","src":"21496:98:46","statements":[{"expression":{"arguments":[{"id":16610,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16590,"src":"21531:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16611,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16593,"src":"21543:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":16612,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16596,"src":"21552:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":16613,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16599,"src":"21560:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":16614,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16601,"src":"21571:15:46","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":16607,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"21506:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$16619_$","typeString":"type(contract super DLE)"}},"id":16609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21512:18:46","memberName":"_executeOperations","nodeType":"MemberAccess","referencedDeclaration":4244,"src":"21506:24:46","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":16615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21506:81:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16616,"nodeType":"ExpressionStatement","src":"21506:81:46"}]},"id":16618,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"21256:18:46","nodeType":"FunctionDefinition","overrides":{"id":16605,"nodeType":"OverrideSpecifier","overrides":[{"id":16603,"name":"Governor","nameLocations":["21461:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"21461:8:46"},{"id":16604,"name":"GovernorTimelockControl","nameLocations":["21471:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"21471:23:46"}],"src":"21452:43:46"},"parameters":{"id":16602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16590,"mutability":"mutable","name":"proposalId","nameLocation":"21292:10:46","nodeType":"VariableDeclaration","scope":16618,"src":"21284:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16589,"name":"uint256","nodeType":"ElementaryTypeName","src":"21284:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16593,"mutability":"mutable","name":"targets","nameLocation":"21329:7:46","nodeType":"VariableDeclaration","scope":16618,"src":"21312:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":16591,"name":"address","nodeType":"ElementaryTypeName","src":"21312:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":16592,"nodeType":"ArrayTypeName","src":"21312:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":16596,"mutability":"mutable","name":"values","nameLocation":"21363:6:46","nodeType":"VariableDeclaration","scope":16618,"src":"21346:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":16594,"name":"uint256","nodeType":"ElementaryTypeName","src":"21346:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16595,"nodeType":"ArrayTypeName","src":"21346:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":16599,"mutability":"mutable","name":"calldatas","nameLocation":"21394:9:46","nodeType":"VariableDeclaration","scope":16618,"src":"21379:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16597,"name":"bytes","nodeType":"ElementaryTypeName","src":"21379:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16598,"nodeType":"ArrayTypeName","src":"21379:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":16601,"mutability":"mutable","name":"descriptionHash","nameLocation":"21421:15:46","nodeType":"VariableDeclaration","scope":16618,"src":"21413:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16600,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21413:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"21274:168:46"},"returnParameters":{"id":16606,"nodeType":"ParameterList","parameters":[],"src":"21496:0:46"},"scope":16619,"src":"21247:347:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":16620,"src":"782:20814:46","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,4513,4685,4811,4818,5384,5389,5394,5403,5408,5413,6245,6731,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[2264,2271,2276,2281,2294,2309,3859,3865,3871,4049,4506,4694,4703,5326,6159,6168,15119,15127,15133,15145,15153,15161,15175,15183,15193,15201,15209,15215]}],"src":"32:21565:46"},"id":46}},"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 signaling 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\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@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 signaling 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\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]}},\"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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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 {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote} - A voting module must implement {_getVotes} - Additionally, {votingPeriod} 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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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.\"},\"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..\"},\"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\"},\"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\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@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":"6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a26469706673582212204f1676d319cbe6cb8d2ce0e979efe9b284d7547f8986edd37233ea88fbf1b7c264736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","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 0x41D55E5351469E63A26469706673582212204F1676D319CBE6CB8D2CE0E979 0xEF 0xE9 0xB2 DUP5 0xD7 SLOAD PUSH32 0x8986EDD37233EA88FBF1B7C264736F6C634300081400332F8788117E7EFF1D82 0xE9 0x26 0xEC PUSH26 0x4901D17C78024A50270940304540A733656F0D00000000000000 ","sourceMap":"1084:15205:4:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;4429:4;4390:45;4429:4;4390:45;:::i;:::-;-1:-1:-1;;;;;;1084:15205:4;;;;4472:87;;-1:-1:-1;4619:13:4;-1:-1:-1;4656:3:4;2232:4:0;;4634:20:4;;;;;4701:12;4675:39;4701:12;;4656:3;4701:12;;;:::i;:::-;1204:26;1084:15205;4675:39;:::i;:::-;;4728:40;4755:12;;;;;:::i;:::-;1204:26;1084:15205;4728:40;:::i;:::-;;4656:3;:::i;:::-;4619:13;;4634:20;;;;-1:-1:-1;4861:3:4;2232:4:0;;4839:20:4;;;;;4906:12;4880:39;4906:12;;4861:3;4906:12;;;:::i;:::-;1204:26;1084:15205;4880:39;:::i;4861:3::-;4824:13;;4839:20;4975:27;1084:15205;4839:20;1276:26;4940:20;1276:26;1084:15205;;1276:26;-1:-1:-1;1276:26:4;;1084:15205;1276:26;;;4975:27;1084:15205;;;;;;;;;4472:87;4511:37;;;:::i;:::-;;4472:87;;;1084:15205;-1:-1:-1;1084:15205:4;;;;;;;;;-1:-1:-1;;1084:15205:4;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;2232:4:0;-1:-1:-1;;2232:4:0;;;;;;;:::o;:::-;1084:15205:4;;;2232:4:0;;;;;;;;1204:26:4;2232:4:0;;1204:26:4;;;;;;;;;;;;:::o;:::-;1084:15205;;;1204:26;;;;;;;;6179:316:0;-1:-1:-1;;;;;1084:15205:4;2232:4:0;1084:15205:4;;;;;;;;;;2232:4:0;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735:10:27;6370:40:0;-1:-1:-1;;;;;;;;;;;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1204:26;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1349:27;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1276:26;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;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":3554,"parameterSlots":1,"returnSlots":0},"fun_beforeCall":{"entryPoint":5211,"id":3527,"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":3487,"parameterSlots":4,"returnSlots":0},"fun_getOperationState":{"entryPoint":4262,"id":2988,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":3885,"id":256,"parameterSlots":2,"returnSlots":1},"fun_hashOperation":{"entryPoint":4355,"id":3025,"parameterSlots":6,"returnSlots":1},"fun_hashOperationBatch":{"entryPoint":4440,"id":3056,"parameterSlots":8,"returnSlots":1},"fun_isOperation":{"entryPoint":4128,"id":2872,"parameterSlots":1,"returnSlots":1},"fun_isOperationDone":{"entryPoint":4238,"id":2930,"parameterSlots":1,"returnSlots":1},"fun_isOperationPending":{"entryPoint":4173,"id":2898,"parameterSlots":1,"returnSlots":1},"fun_isOperationReady":{"entryPoint":4214,"id":2914,"parameterSlots":1,"returnSlots":1},"fun_revokeRole":{"entryPoint":4011,"id":294,"parameterSlots":2,"returnSlots":1},"fun_schedule":{"entryPoint":4974,"id":3262,"parameterSlots":2,"returnSlots":0},"fun_verifyCallResult":{"entryPoint":5345,"id":6667,"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":"60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a26469706673582212204f1676d319cbe6cb8d2ce0e979efe9b284d7547f8986edd37233ea88fbf1b7c264736f6c63430008140033","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 0x41D55E5351469E63A26469706673582212204F1676D319CBE6CB8D2CE0E979 0xEF 0xE9 0xB2 DUP5 0xD7 SLOAD PUSH32 0x8986EDD37233EA88FBF1B7C264736F6C63430008140033000000000000000000 ","sourceMap":"1084:15205:4:-:0;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8005:9;1084:15205;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15205;13389:31;;;;;:68;;;1084:15205;13385:184;;13592:64;;13683:11;13592:64;;;;;;;;;:::i;:::-;13683:11;;;:::i;:::-;13710:13;13725:18;;;;;;14019:2;;;;:::i;:::-;1084:15205;;13745:3;13781:10;;;13945:43;13781:10;;13945:43;13869:11;13781:10;;;13821:9;13781:10;;;;13745:3;13781:10;;;;;;:::i;:::-;;:::i;:::-;13821:9;;:::i;:::-;1084:15205;13869:11;;:::i;:::-;13918:7;;;;;;;:::i;:::-;1084:15205;;13945:43;;;;;:::i;:::-;;;;13745:3;:::i;:::-;13710:13;;13385:184;1084:15205;;-1:-1:-1;;;;;;13480:78:4;;;;;1084:15205;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;13480:78;;;13389:68;13424:33;;;;;13389:68;;5343:87;5406:12;735:10:27;5406:12:4;:::i;:::-;5343:87;;1084:15205;;;;;;;;;;;;;;;4747:26:0;1084:15205:4;;3282:12:0;1084:15205:4;;;:::i;:::-;;;;;;;;;;3901:22:0;1084:15205:4;735:10:27;3282:12:0;;:::i;:::-;4747:26;:::i;:::-;;1084:15205:4;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;1349:27;;1084:15205;;;;;;;;;735:10:27;1084:15205:4;;;;;;;;;;3519:23:0;3515:108;;11400:22:4;;;;:::i;:::-;11399:23;11395:230;;1084:15205;;;;;;;;;;;;11672:13;;;;1084:15205;;11395:230;1084:15205;;;;11445:169;;;;;;;;1084:15205;11515:85;1084:15205;;;;11445:169;3515:108:0;1084:15205:4;;;3565:47:0;;;;;;735:10:27;3565:47:0;;;1084:15205:4;;;;;3565:47:0;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1349:27;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204:26;1084:15205;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;735:10:27;3282:12:0;735:10:27;3282:12:0;:::i;:::-;10130:31:4;;;;;:68;;;1084:15205;10126:184;;10333:64;;;;;;;;;;;;:::i;:::-;10421:5;;;;;:::i;:::-;10442:13;;10457:18;;;;;;;10601;;;;;10597:72;;1084:15205;;;10597:72;10640:18;1084:15205;;;;;;;10640:18;10597:72;;;1084:15205;;;10477:3;;10522:10;10501:76;10522:10;;10501:76;10522:10;;;;;;;;;;10534:9;10522:10;;;;;;10545:11;10522:10;;:::i;:::-;10534:9;;:::i;:::-;1084:15205;10545:11;;:::i;:::-;1084:15205;;10501:76;;;;;:::i;10477:3::-;10442:13;;;;10126:184;1084:15205;;-1:-1:-1;;;;;;10221:78:4;;;;;1084:15205;;;;;;;;;;;;;;;;;;;;;13480:78;;;10130:68;10165:33;;;;;10130:68;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;15612:4;;735:10:27;15594:23:4;15590:95;;1084:15205;15699:35;1084:15205;15714:9;1084:15205;;;;;;;;;;;15699:35;15714:9;1084:15205;;;15590:95;1084:15205;;;15640:34;;;;;;735:10:27;15640:34:4;;;1084:15205;15640:34;1084:15205;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;735:10:27;;-1:-1:-1;;;;;1084:15205:4;;5421:34:0;5417:102;;1084:15205:4;5529:37:0;1084:15205:4;;;5529:37:0;:::i;5417:102::-;1084:15205:4;-1:-1:-1;;;5478:30:0;;1084:15205:4;;5478:30:0;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;4330:25:0;1084:15205:4;;3282:12:0;1084:15205:4;;;:::i;3282:12:0:-;4330:25;:::i;1084:15205:4:-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;3901:22:0;1084:15205:4;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;12615:2;12482:11;1084:15205;12551:43;;12399:56;1084:15205;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15205;12399:56;;;;;;:::i;:::-;12482:11;;;;;:::i;:::-;12528:7;;;;;;:::i;:::-;1084:15205;12551:43;;;;;:::i;:::-;;;;12615:2;:::i;5343:87::-;5406:12;735:10:27;5406:12:4;:::i;:::-;5343:87;;1084:15205;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;775:49:19;;;:89;;;;1084:15205:4;;;;;;;;;775:89:19;2688:32:0;;-1:-1:-1;;;;2673:47:0;;;:87;;;;775:89:19;;;;;;2673:87:0;-1:-1:-1;;;862:40:38;;-1:-1:-1;2673:87:0;;;1084:15205:4;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;9430:61;1084:15205;;;;;;;:::i;:::-;;;;;;;9430:61;1084:15205;;;;;735:10:27;3282:12:0;735:10:27;3282:12:0;:::i;:::-;9332:53:4;;;;;;;;:::i;:::-;9409:5;;;;;;;:::i;:::-;1084:15205;;9430:61;;;;;:::i;:::-;;;;9505:18;9501:72;;1084:15205;;;9501:72;9544:18;1084:15205;;;;;;;9544:18;9501:72;;;1084:15205;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::o;:::-;;-1:-1:-1;;1084:15205:4;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;-1:-1:-1;;1084:15205:4;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;1084:15205:4;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;3432:197:0;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;1204:26;;1084:15205;;3519:23:0;3515:108;;3432:197;;:::o;3515:108::-;1084:15205:4;;;;;3565:47:0;;;;;;;;;1084:15205:4;;;;;3565:47:0;3432:197;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1276:26:4;1084:15205;;3519:23:0;3515:108;;3432:197;;:::o;:::-;1084:15205:4;2954:6:0;1084:15205:4;2954:6:0;1084:15205:4;;;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;1084:15205:4;;;;;2954:6:0;1084:15205:4;;;3519:23:0;3515:108;;3432:197;;:::o;6179:316::-;;2954:6;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:23:0;6272:217;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6370:40:0;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6730:317::-;;2954:6;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6824:217:0;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;6922:40:0;735:10:27;6922:40:0;;;1084:15205:4;6976:11:0;:::o;5998:129:4:-;6075:21;5998:129;6075:21;:::i;:::-;1084:15205;;;;;;6075:45;;5998:129;:::o;1084:15205::-;;;;6100:20;1084:15205;;;;;6100:20;1084:15205;6262:209;6362:21;6262:209;6362:21;:::i;:::-;1084:15205;;;;;;6409:22;6400:31;;:64;;;;;6393:71;6262:209;:::o;6400:64::-;6444:20;6435:29;;;6262:209;:::o;6607:134::-;6689:21;6607:134;6689:21;:::i;:::-;1084:15205;;;;;;6714:20;6689:45;6607:134;:::o;6820:132::-;6901:21;6820:132;6901:21;:::i;:::-;1084:15205;;;;;;6926:19;6901:44;6820:132;:::o;7270:460::-;-1:-1:-1;1084:15205:4;7189:11;1084:15205;;;-1:-1:-1;1084:15205:4;;7414:14;;7410:314;7414:14;;;7444:27;-1:-1:-1;7444:27:4;:::o;7410:314::-;7189:11;7492:28;;7189:11;;7536:26;7543:19;7536:26;:::o;7488:236::-;7595:15;-1:-1:-1;7595:15:4;;;7189:11;7626:29;:::o;7579:145::-;7693:20;7686:27;:::o;1084:15205::-;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;:::o;8134:279::-;;1084:15205;8355:50;8134:279;;;;1084:15205;;8355:50;;;;;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8355:50;1084:15205;;8355:50;;;;;;:::i;:::-;1084:15205;8345:61;;8134:279;:::o;8529:320::-;;;;;;;;;1084:15205;;8785:56;;;;;;1084:15205;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;8785:56;1084:15205;;;;;;;;;;8785:56;;;;;;;;:::i;1084:15205::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::o;:::-;-1:-1:-1;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::o;10776:399::-;;10844:15;;;:::i;:::-;10840:131;;8005:9;1084:15205;11026:16;;;11022:96;;11145:15;;1084:15205;11145:15;;;1084:15205;;;-1:-1:-1;1084:15205:4;11127:11;1084:15205;;;-1:-1:-1;1084:15205:4;;10776:399::o;11022:96::-;1084:15205;;;;;11065:42;;;;;;;;;1084:15205;;;;;11065:42;10840:131;1084:15205;;-1:-1:-1;;;10882:78:4;;1084:15205;10882:78;;1084:15205;;;;;;;;;;10882:78;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;14092:232::-;14272:45;14092:232;14231:31;14092:232;;;;1084:15205;;;;;;;;;;;;;14231:31;;;;1084:15205;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;14231:31;1084:15205;;;;14272:45;:::i;:::-;;14092:232::o;1084:15205::-;;;14272:45;:::i;14407:367::-;14489:20;;;:::i;:::-;14488:21;14484:137;;14634:25;;;;:58;;;14407:367;14630:138;;14407:367;:::o;14630:138::-;1084:15205;;;;14715:42;;;;;;;;;1084:15205;14715:42;14634:58;14664:28;;;;:::i;:::-;14663:29;14634:58;;14484:137;1084:15205;;;;11445:169;;;;14532:78;;1084:15205;14532:78;;1084:15205;;;;;;14532:78;14856:236;14911:20;;;:::i;:::-;14910:21;14906:137;;-1:-1:-1;1084:15205:4;1434:1;1084:15205;;1434:1;1084:15205;-1:-1:-1;1084:15205:4;;14856:236::o;5221:224:26:-;;;;5337:8;;-1:-1:-1;1084:15205:4;;5690:21:26;:17;;5815:158;;;;;;5686:354;1084:15205:4;;-1:-1:-1;;;6010:19:26;;;;;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 signaling 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\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":{\"keccak256\":\"0xdc21c15a8582ca58529bf4b63209718a86fd944cbb206a492687333fe8cce0ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a4a30ef6ff3d7165c00a6f41a37569035a8b1602b77ecac8453a6ef2cf7c149\",\"dweb:/ipfs/QmZjt4yg3vWWeDMQ6avpXLYLMjctv3jwaWgrH4c5ozSg83\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":{\"keccak256\":\"0x1e0810708b8f5de8d3db73240ccee2d36a305cb904aa5acd4588834ebce6acce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9758197a4d3cb1aa3036a9bd0edbf34a2eba82e484d3d519da495e495d752dee\",\"dweb:/ipfs/QmYtV61Sp55bfcW4DZvsRuDo2EKb5PekqoY3nx5STJn6Zt\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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 cancellers 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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":{\"keccak256\":\"0xe5d4ce636fd706494b1f488fc562995e9486a3d14203ad311be6c6f724955bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3d90512ee129236608a01e2d1541c9740a0f4d16863f214191e443342e540901\",\"dweb:/ipfs/QmStf5H59Lu2WNKPxmifFU6kJrWcMEvb2yKbFjsXkCvP43\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@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\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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":"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","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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\":\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"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\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0x5b5cdb361ed018c0162942d673c17e187c1a52ded2ce4f41e8a3f3f5d1656e00\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd78b11b946d9001725a38844f1d6163906965ec321e1b09bd7e476baedc5d12\",\"dweb:/ipfs/QmPgTnTYDbgXgwHXbkxofSH51QDFfycwx1tn8Qj5hGGk5u\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@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\":\"See {IERC-5267}.\"},\"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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@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 _data\"}}},\"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\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]}},\"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}. All two of these 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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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/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\":\"See {IERC-5267}.\"},\"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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@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/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:26:-: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:26:-: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:28:-: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:28:-: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:30:-: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:30:-: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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212203910222b2424311f5663a76aa7535fa334025befbbcf48c3b03b5c52304f728e64736f6c63430008140033","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 CODECOPY LT 0x22 0x2B 0x24 0x24 BALANCE 0x1F JUMP PUSH4 0xA76AA753 PUSH0 LOG3 CALLVALUE MUL JUMPDEST 0xEF 0xBB 0xCF BASEFEE 0xC3 0xB0 EXTCODESIZE 0x5C MSTORE ADDRESS 0x4F PUSH19 0x8E64736F6C6343000814003300000000000000 ","sourceMap":"1255:3026:31:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212203910222b2424311f5663a76aa7535fa334025befbbcf48c3b03b5c52304f728e64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY LT 0x22 0x2B 0x24 0x24 BALANCE 0x1F JUMP PUSH4 0xA76AA753 PUSH0 LOG3 CALLVALUE MUL JUMPDEST 0xEF 0xBB 0xCF BASEFEE 0xC3 0xB0 EXTCODESIZE 0x5C MSTORE ADDRESS 0x4F PUSH19 0x8E64736F6C6343000814003300000000000000 ","sourceMap":"1255:3026:31:-: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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@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:32:-: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:32:-: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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220765f35e69774148f6583047be059881881021f7294676859d5243c8ce0ed49c664736f6c63430008140033","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 PUSH23 0x5F35E69774148F6583047BE059881881021F7294676859 0xD5 0x24 EXTCODECOPY DUP13 0xE0 0xED 0x49 0xC6 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:16541:33:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220765f35e69774148f6583047be059881881021f7294676859d5243c8ce0ed49c664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x5F35E69774148F6583047BE059881881021F7294676859 0xD5 0x24 EXTCODECOPY DUP13 0xE0 0xED 0x49 0xC6 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:16541:33:-: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\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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:34:-: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:34:-: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\":\"See {IERC-5267}.\"}},\"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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212200f3ae3836ce415135a38d38d326faa1cbfe4796606a63002a594f535381cce0564736f6c63430008140033","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 0xF GASPRICE 0xE3 DUP4 PUSH13 0xE415135A38D38D326FAA1CBFE4 PUSH26 0x6606A63002A594F535381CCE0564736F6C634300081400330000 ","sourceMap":"521:3181:36:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212200f3ae3836ce415135a38d38d326faa1cbfe4796606a63002a594f535381cce0564736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF GASPRICE 0xE3 DUP4 PUSH13 0xE415135A38D38D326FAA1CBFE4 PUSH26 0x6606A63002A594F535381CCE0564736F6C634300081400330000 ","sourceMap":"521:3181:36:-: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\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220ce0ebc0bfec5ddcb3595bcb343c327c67acbc88fcd808f6054a0aa07137e308b64736f6c63430008140033","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 0xCE 0xE 0xBC SIGNEXTEND INVALID 0xC5 0xDD 0xCB CALLDATALOAD SWAP6 0xBC 0xB3 NUMBER 0xC3 0x27 0xC6 PUSH27 0xCBC88FCD808F6054A0AA07137E308B64736F6C6343000814003300 ","sourceMap":"532:1805:37:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220ce0ebc0bfec5ddcb3595bcb343c327c67acbc88fcd808f6054a0aa07137e308b64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCE 0xE 0xBC SIGNEXTEND INVALID 0xC5 0xDD 0xCB CALLDATALOAD SWAP6 0xBC 0xB3 NUMBER 0xC3 0x27 0xC6 PUSH27 0xCBC88FCD808F6054A0AA07137E308B64736F6C6343000814003300 ","sourceMap":"532:1805:37:-: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\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220f55ee99a472eb6dc2cc3e168b7846de5ba4a51af97d44e14b45afd9f8748a7d764736f6c63430008140033","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 CREATE2 0x5E 0xE9 SWAP11 SELFBALANCE 0x2E 0xB6 0xDC 0x2C 0xC3 0xE1 PUSH9 0xB7846DE5BA4A51AF97 0xD4 0x4E EQ 0xB4 GAS REVERT SWAP16 DUP8 BASEFEE 0xA7 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"281:28026:40:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220f55ee99a472eb6dc2cc3e168b7846de5ba4a51af97d44e14b45afd9f8748a7d764736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0x5E 0xE9 SWAP11 SELFBALANCE 0x2E 0xB6 0xDC 0x2C 0xC3 0xE1 PUSH9 0xB7846DE5BA4A51AF97 0xD4 0x4E EQ 0xB4 GAS REVERT SWAP16 DUP8 BASEFEE 0xA7 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"281:28026:40:-: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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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:41:-: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:41:-: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:42:-: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:42:-: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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212208f08ac1c5a58ef0dcc61ff5a981ce5ccccf4ca439f5a1432a4cbc4dee782bd3664736f6c63430008140033","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 DUP16 ADDMOD 0xAC SHR GAS PC 0xEF 0xD 0xCC PUSH2 0xFF5A SWAP9 SHR 0xE5 0xCC 0xCC DELEGATECALL 0xCA NUMBER SWAP16 GAS EQ ORIGIN LOG4 0xCB 0xC4 0xDE 0xE7 DUP3 0xBD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20756:43:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212208f08ac1c5a58ef0dcc61ff5a981ce5ccccf4ca439f5a1432a4cbc4dee782bd3664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 ADDMOD 0xAC SHR GAS PC 0xEF 0xD 0xCC PUSH2 0xFF5A SWAP9 SHR 0xE5 0xCC 0xCC DELEGATECALL 0xCA NUMBER SWAP16 GAS EQ ORIGIN LOG4 0xCB 0xC4 0xDE 0xE7 DUP3 0xBD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20756:43:-: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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]}},\"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:44:-: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:44:-: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":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220819f3e32bac9d9829f557c4b362d7307e5c1a3acfb410eb1315c67e706dd8d8e64736f6c63430008140033","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 SWAP16 RETURNDATACOPY ORIGIN 0xBA 0xC9 0xD9 DUP3 SWAP16 SSTORE PUSH29 0x4B362D7307E5C1A3ACFB410EB1315C67E706DD8D8E64736F6C63430008 EQ STOP CALLER ","sourceMap":"640:4515:45:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220819f3e32bac9d9829f557c4b362d7307e5c1a3acfb410eb1315c67e706dd8d8e64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 SWAP16 RETURNDATACOPY ORIGIN 0xBA 0xC9 0xD9 DUP3 SWAP16 SSTORE PUSH29 0x4B362D7307E5C1A3ACFB410EB1315C67E706DD8D8E64736F6C63430008 EQ STOP CALLER ","sourceMap":"640:4515:45:-: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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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/DLE.sol":{"DLE":{"abi":[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint48","name":"votingDelay","type":"uint48"},{"internalType":"uint32","name":"votingPeriod","type":"uint32"},{"internalType":"uint256","name":"proposalThreshold","type":"uint256"},{"internalType":"uint256","name":"quorumPercentage","type":"uint256"},{"internalType":"address[]","name":"initialPartners","type":"address[]"},{"internalType":"uint256[]","name":"initialAmounts","type":"uint256[]"}],"internalType":"struct DLE.DLEConfig","name":"config","type":"tuple"},{"internalType":"address","name":"timelockAddress","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":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","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":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","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":"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"},{"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":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"coordinates","type":"string"},{"indexed":false,"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oktmo","type":"uint256"},{"indexed":false,"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"indexed":false,"internalType":"uint256","name":"kpp","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"timelockAddress","type":"address"},{"indexed":false,"internalType":"address","name":"governorAddress","type":"address"}],"name":"DLEInitialized","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":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"InitialTokensDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"moduleName","type":"string"},{"indexed":false,"internalType":"address","name":"moduleAddress","type":"address"}],"name":"ModuleInstalled","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"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bytes","name":"operation","type":"bytes"}],"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":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"uint256","name":"signaturesCount","type":"uint256"}],"name":"ProposalSigned","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":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"TokenDistributionProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"TokenDistributionProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"uint256","name":"signaturesCount","type":"uint256"}],"name":"TokenDistributionProposalSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensDepositedToTreasury","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"TreasuryProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TreasuryProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"uint256","name":"signaturesCount","type":"uint256"}],"name":"TreasuryProposalSigned","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":"pure","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":"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":"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":[{"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":[{"internalType":"bytes","name":"_operation","type":"bytes"},{"internalType":"uint256[]","name":"_targetChains","type":"uint256[]"},{"internalType":"uint256","name":"_timelock","type":"uint256"},{"internalType":"uint256","name":"_governanceChain","type":"uint256"}],"name":"createProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_partners","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"uint256","name":"_timelock","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"createTokenDistributionProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_timelock","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"createTreasuryProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dleInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"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":"uint256","name":"_proposalId","type":"uint256"}],"name":"executeTokenDistributionProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"executeTreasuryProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getAvailableWithdrawal","outputs":[{"internalType":"uint256","name":"","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":"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":"initialTokensDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_moduleName","type":"string"},{"internalType":"address","name":"_moduleAddress","type":"address"}],"name":"installModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastWithdrawalBlock","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":[{"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":[],"name":"proposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"bytes","name":"operation","type":"bytes"},{"internalType":"uint256","name":"timelock","type":"uint256"},{"internalType":"uint256","name":"governanceChain","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"quorumRequired","type":"uint256"},{"internalType":"uint256","name":"signaturesCount","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":[],"name":"quorumPercentage","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":"signProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"signTokenDistributionProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"signTreasuryProposal","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"tokenDistributionProposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenDistributionProposals","outputs":[{"internalType":"uint256","name":"timelock","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"quorumRequired","type":"uint256"},{"internalType":"uint256","name":"signaturesCount","type":"uint256"},{"internalType":"string","name":"description","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTreasuryBalance","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":[],"name":"treasuryProposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuryProposals","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timelock","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"quorumRequired","type":"uint256"},{"internalType":"uint256","name":"signaturesCount","type":"uint256"},{"internalType":"string","name":"description","type":"string"}],"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_address_fromMemory":{"entryPoint":668,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_fromMemory":{"entryPoint":689,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_string_dyn_fromMemory":{"entryPoint":491,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_uint256_dyn_fromMemory":{"entryPoint":801,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":376,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint32_fromMemory":{"entryPoint":650,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint48_fromMemory":{"entryPoint":630,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_array_address_dyn_array_uint256_dyn":{"entryPoint":4495,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_string":{"entryPoint":4622,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_string_string_string_uint256_uint256_array_string_dyn_uint256_address_address_address":{"entryPoint":4661,"id":null,"parameterSlots":12,"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_24863":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":256,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_11003":{"entryPoint":289,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_11125":{"entryPoint":322,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_array_string_dyn":{"entryPoint":467,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage_11010":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24853":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24855":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24865":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24867":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_30047":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_30049":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_30051":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_30052":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_30054":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":7865,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_24869":{"entryPoint":7669,"id":null,"parameterSlots":1,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_30055":{"entryPoint":7767,"id":null,"parameterSlots":1,"returnSlots":0},"checked_sub_uint256":{"entryPoint":7543,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":1970,"id":null,"parameterSlots":3,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_11009":{"entryPoint":1400,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24852":{"entryPoint":1474,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24854":{"entryPoint":1536,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24864":{"entryPoint":1598,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24866":{"entryPoint":1660,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_30046":{"entryPoint":1722,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_30048":{"entryPoint":1784,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_30050":{"entryPoint":1846,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_30053":{"entryPoint":1908,"id":null,"parameterSlots":2,"returnSlots":0},"cleanup_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint32":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_bytes1":{"entryPoint":1375,"id":null,"parameterSlots":2,"returnSlots":0},"constructor_DLE":{"entryPoint":4909,"id":15398,"parameterSlots":2,"returnSlots":0},"constructor_GovernorTimelockControl":{"entryPoint":5521,"id":4061,"parameterSlots":9,"returnSlots":0},"copy_arguments_for_constructor_object_DLE":{"entryPoint":903,"id":null,"parameterSlots":0,"returnSlots":2},"copy_array_to_storage_from_array_string_dyn_to_array_string_dyn":{"entryPoint":3488,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string":{"entryPoint":3247,"id":null,"parameterSlots":2,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_11011":{"entryPoint":2032,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_11014":{"entryPoint":2275,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_24857":{"entryPoint":2518,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_24858":{"entryPoint":2761,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_24859":{"entryPoint":3004,"id":null,"parameterSlots":1,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":339,"id":null,"parameterSlots":3,"returnSlots":0},"copy_struct_to_storage_from_struct_DLEInfo_to_struct_DLEInfo":{"entryPoint":3760,"id":null,"parameterSlots":1,"returnSlots":0},"extract_byte_array_length":{"entryPoint":1314,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":220,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_24850":{"entryPoint":186,"id":null,"parameterSlots":1,"returnSlots":0},"fun_buildDomainSeparator":{"entryPoint":7383,"id":8893,"parameterSlots":0,"returnSlots":1},"fun_insert":{"entryPoint":8404,"id":13646,"parameterSlots":3,"returnSlots":2},"fun_insert_11116":{"entryPoint":7951,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_insert_24873":{"entryPoint":8203,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_latest":{"entryPoint":7621,"id":13471,"parameterSlots":1,"returnSlots":1},"fun_latest_24872":{"entryPoint":7559,"id":13471,"parameterSlots":0,"returnSlots":1},"fun_mint":{"entryPoint":6548,"id":5987,"parameterSlots":2,"returnSlots":0},"fun_push":{"entryPoint":9085,"id":5266,"parameterSlots":2,"returnSlots":2},"fun_setProposalThreshold":{"entryPoint":6219,"id":4020,"parameterSlots":1,"returnSlots":0},"fun_setVotingDelay":{"entryPoint":6009,"id":3979,"parameterSlots":1,"returnSlots":0},"fun_setVotingPeriod":{"entryPoint":6087,"id":4004,"parameterSlots":1,"returnSlots":0},"fun_toShortString":{"entryPoint":7298,"id":6920,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback":{"entryPoint":7026,"id":7018,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback_11012":{"entryPoint":6754,"id":7018,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":7491,"id":10995,"parameterSlots":1,"returnSlots":1},"fun_transferVotingUnits":{"entryPoint":8609,"id":5116,"parameterSlots":2,"returnSlots":0},"fun_unsafeAccess":{"entryPoint":null,"id":13765,"parameterSlots":2,"returnSlots":1},"fun_unsafeAccess_24870":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_unsafeAccess_30056":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_updateQuorumNumerator":{"entryPoint":6355,"id":4676,"parameterSlots":1,"returnSlots":0},"fun_updateTimelock":{"entryPoint":6276,"id":4346,"parameterSlots":1,"returnSlots":0},"increment_uint256":{"entryPoint":4305,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_address_of_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_address_of_address_11142":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":4349,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":3466,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4327,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":164,"id":null,"parameterSlots":0,"returnSlots":0},"read_from_memoryt_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral_499f":{"entryPoint":4436,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_52ac":{"entryPoint":4228,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_535d":{"entryPoint":4376,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_582f":{"entryPoint":4151,"id":null,"parameterSlots":1,"returnSlots":0},"transit_byte_array_long_to_short_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool_11002":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"update_storage_value_offsett_bool_to_bool_11007":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"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},"update_storage_value_offsett_uint256_to_uint256_11006":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"write_to_memory_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"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":"610180604052346200009f57620000206200001962000387565b906200132d565b604051616d099081620023ba823960805181614d74015260a05181614e29015260c05181614d3e015260e05181614dc301526101005181614de90152610120518161263601526101405181612662015261016051818181612a690152818161378a0152818161382a01528181613a5c015281816143e501526169da0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000d657604052565b620000a4565b601f909101601f19168101906001600160401b03821190821017620000d657604052565b604051906101c082016001600160401b03811183821017620000d657604052565b6040519061014082016001600160401b03811183821017620000d657604052565b604051906200015182620000ba565b565b60005b838110620001675750506000910152565b818101518382015260200162000156565b81601f820112156200009f5780516001600160401b038111620000d65760405192620001af601f8301601f191660200185620000dc565b818452602082840101116200009f57620001d0916020808501910162000153565b90565b6001600160401b038111620000d65760051b60200190565b9080601f830112156200009f578151906200020682620001d3565b92620002166040519485620000dc565b828452602092838086019160051b830101928084116200009f57848301915b848310620002465750505050505090565b82516001600160401b0381116200009f5786916200026a8484809489010162000178565b81520192019162000235565b519065ffffffffffff821682036200009f57565b519063ffffffff821682036200009f57565b51906001600160a01b03821682036200009f57565b81601f820112156200009f57805191620002cb83620001d3565b92620002db6040519485620000dc565b808452602092838086019260051b8201019283116200009f578301905b82821062000307575050505090565b83809162000315846200029c565b815201910190620002f8565b81601f820112156200009f578051916200033b83620001d3565b926200034b6040519485620000dc565b808452602092838086019260051b8201019283116200009f578301905b82821062000377575050505090565b8151815290830190830162000368565b62009163908138038060405193620003a08286620000dc565b843982016040838203126200009f5782516001600160401b03908181116200009f578401936101c0858403126200009f57620003db62000100565b9480518381116200009f5784620003f491830162000178565b865260208101518381116200009f57846200041191830162000178565b602087015260408101518381116200009f57846200043191830162000178565b604087015260608101518381116200009f57846200045191830162000178565b60608701526080810151608087015260a081015160a087015260c08101518381116200009f578462000485918301620001eb565b60c087015260e081015160e0870152610100620004a481830162000276565b90870152610120620004b88183016200028a565b9087015261014080820151908701526101608082015190870152610180808201518481116200009f5785620004ef918401620002b1565b908701526101a090818101519384116200009f57620001d09460209462000517920162000321565b90860152016200029c565b90600182811c9216801562000554575b60208310146200053e57565b634e487b7160e01b600052602260045260246000fd5b91607f169162000532565b8181106200056b575050565b600081556001016200055f565b90601f821162000586575050565b620001519160036000526020600020906020601f840160051c83019310620005b7575b601f0160051c01906200055f565b9091508190620005a9565b90601f8211620005d0575050565b620001519160046000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200060e575050565b6200015191600b6000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200064c575050565b620001519160056000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200068a575050565b620001519160066000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f8211620006c8575050565b620001519160166000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000706575050565b620001519160176000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000744575050565b620001519160186000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000782575050565b620001519160156000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b9190601f8111620007c257505050565b62000151926000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b80519091906001600160401b038111620000d6576200081c816200081660045462000522565b620005c2565b602080601f83116001146200085b57508192936000926200084f575b50508160011b916000199060031b1c191617600455565b01519050388062000838565b6004600052601f198316949091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b926000905b878210620008ca575050836001959610620008b0575b505050811b01600455565b015160001960f88460031b161c19169055388080620008a5565b806001859682949686015181550195019301906200088f565b80519091906001600160401b038111620000d6576200090f8162000909600b5462000522565b62000600565b602080601f83116001146200094e575081929360009262000942575b50508160011b916000199060031b1c191617600b55565b0151905038806200092b565b600b600052601f198316949091907f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9926000905b878210620009bd575050836001959610620009a3575b505050811b01600b55565b015160001960f88460031b161c1916905538808062000998565b8060018596829496860151815501950193019062000982565b80519091906001600160401b038111620000d65762000a0281620009fc60165462000522565b620006ba565b602080601f831160011462000a41575081929360009262000a35575b50508160011b916000199060031b1c191617601655565b01519050388062000a1e565b6016600052601f198316949091907fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289926000905b87821062000ab057505083600195961062000a96575b505050811b01601655565b015160001960f88460031b161c1916905538808062000a8b565b8060018596829496860151815501950193019062000a75565b80519091906001600160401b038111620000d65762000af58162000aef60175462000522565b620006f8565b602080601f831160011462000b34575081929360009262000b28575b50508160011b916000199060031b1c191617601755565b01519050388062000b11565b6017600052601f198316949091907fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15926000905b87821062000ba357505083600195961062000b89575b505050811b01601755565b015160001960f88460031b161c1916905538808062000b7e565b8060018596829496860151815501950193019062000b68565b80519091906001600160401b038111620000d65762000be88162000be260185462000522565b62000736565b602080601f831160011462000c27575081929360009262000c1b575b50508160011b916000199060031b1c191617601855565b01519050388062000c04565b6018600052601f198316949091907fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e926000905b87821062000c9657505083600195961062000c7c575b505050811b01601855565b015160001960f88460031b161c1916905538808062000c71565b8060018596829496860151815501950193019062000c5b565b81519192916001600160401b038111620000d65762000cdb8162000cd4845462000522565b84620007b2565b602080601f831160011462000d1a57508192939460009262000d0e575b50508160011b916000199060031b1c1916179055565b01519050388062000cf8565b90601f1983169562000d3185600052602060002090565b926000905b88821062000d715750508360019596971062000d57575b505050811b019055565b015160001960f88460031b161c1916905538808062000d4d565b8060018596829496860151815501950193019062000d36565b634e487b7160e01b600052601160045260246000fd5b805190680100000000000000008211620000d657601b5482601b5580831062000e12575b50601b600052602090810190600080516020620091038339815191526000925b84841062000df3575050505050565b6001838262000e058394518662000caf565b0192019301929062000de4565b601b6000908152600080516020620091038339815191529182019184015b82811062000e4057505062000dc4565b8062000e4f6001925462000522565b8062000e5e575b500162000e30565b601f90818111841462000e785750508281555b3862000e56565b8362000e9d9262000e8e85600052602060002090565b920160051c820191016200055f565b6000818152602081208183555562000e71565b805180516001600160401b038111620000d65762000edb8162000ed560155462000522565b62000774565b6020918290601f831160011462000f9c5762000f7e93836101209462000151979462000f299460009262000f90575b50508160011b916000199060031b1c1916176015555b820151620009d6565b62000f38604082015162000ac9565b62000f47606082015162000bbc565b608081015160195560a0810151601a5562000f6660c082015162000da0565b60e0810151601c55610100810151601d550151151590565b60ff8019601e54169115151617601e55565b01519050388062000f0a565b6015600052601f19831691907f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4759260005b8181106200101f57508462000151979462000f299462000f7e9894610120986001951062001005575b505050811b0160155562000f20565b015160001960f88460031b161c1916905538808062000ff6565b92938660018192878601518155019501930162000fcd565b156200103f57565b60405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606490fd5b156200108c57565b60405162461bcd60e51b815260206004820152601360248201527f4e6f20696e697469616c20706172746e657273000000000000000000000000006044820152606490fd5b6000198114620010e15760010190565b62000d8a565b634e487b7160e01b600052603260045260246000fd5b8051821015620011125760209160051b010190565b620010e7565b156200112057565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156200115c57565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6040810190604081528251809252606081019160208094019060005b818110620011f0575050508281830391015281808451928381520193019160005b828110620011db575050505090565b835185529381019392810192600101620011cc565b82516001600160a01b031685529385019391850191600101620011ab565b90602091620012298151809281855285808601910162000153565b601f01601f1916010190565b98969592620012829062001273620012629a9e9d9c9a620012919597948d6101609081815201906200120e565b6020978d898184039101526200120e565b908b820360408d01526200120e565b9089820360608b01526200120e565b92608088015260a087015285820360c08701528251908183528083019281808460051b8301019501936000915b848310620012fc57505050505060e08501979097526001600160a01b0391821661010085015291811661012084015292909216610140909101529150565b90919293949584806200131c600193601f198682030187528a516200120e565b9801930193019194939290620012be565b90916200137f6101608301516200134e61010085015165ffffffffffff1690565b61012085015163ffffffff166101408601518651602088015194909384939130906001600160a01b038c1662001591565b6200138f60ff1960265416602655565b620014008251602084015160408501516060860151608087015160a08801519160c08901519360e08a015195620013c562000121565b978852602088015260408701526060860152608085015260a084015260c083015260e082015242610100820152600161012082015262000eb0565b6200140f610160830151602555565b610180820192835151916200142d6101a08501938451511462001037565b6200143c855151151562001084565b60005b85518051821015620014d957906200148962001481620014756200146884620014d396620010fd565b516001600160a01b031690565b6001600160a01b031690565b151562001118565b620014a36200149a828751620010fd565b51151562001154565b620014cd620014b862001468838a51620010fd565b620014c5838851620010fd565b519062001994565b620010d1565b6200143f565b5050937f5cc2d55798cee8f02a1864e506ff754519b7fbe25d3bd5258441c00b83b7bb0493927ff9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a59162001534600160ff196026541617602655565b5190519062001549604051928392836200118f565b0390a16200158c82519160208401519060408501519360608601519560808101519060a081015160e060c083015192015192604051998a99309830978c62001235565b0390a1565b969897959095949392919460405190620015ab82620000ba565b6001808352603160f81b60208401528b51906001600160401b038211620000d657620015e482620015de60035462000522565b62000578565b60209c601f8311600114620016c55794620016a0979462001640620001519e9f958580620016b39f9e9d9b976200168e97620016949a6200169a9d600094620016b9575b50501b916000199060031b1c191617600355620007f0565b6200164b8262001a62565b610120526200165a8162001b72565b610140528151602083012060e05260208151910120610100524660a0526200168162001cd7565b6080523060c052620008e3565b62001779565b620017c7565b6200184b565b6001600160a01b031661016052620018d3565b62001884565b01519250388062001628565b6003600052929c9092907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9160005b601f19851681106200176257509462001640620001519e9f620016949686620016b39f9e9d9b97966200169a9b96620016a09e9b6200168e99601f1981161062001748575b505050811b01600355620007f0565b015160001960f88460031b161c1916905538808062001739565b8183015184559285019260209283019201620016f4565b6010547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617601055565b63ffffffff80821691821562001832577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055565b60405163f1cfbf0560e01b815260006004820152602490fd5b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355565b606481116200197557601254600091908062001943575060008051602062009123833981519152915060005b6200191d6200190e8362001d43565b65ffffffffffff431662001f0f565b5050604080516001600160d01b039092168252602082019290925290819081016200158c565b600019908082810111620010e15760208460126000805160206200912383398151915296522001015460301c620018ff565b6044906040519063243e544560e01b8252600482015260646024820152fd5b91906001600160a01b038316801562001a4957600254828101809111620010e1576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841162001a1f5762000151929350620021a1565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b0390fd5b60405163ec442f0560e01b815260006004820152602490fd5b908151602080821060001462001a8057505090620001d09062001c82565b6001600160401b038211620000d65762001aa78262001aa160055462000522565b6200063e565b80601f831160011462001ae7575081929360009262001adb575b50508160011b916000199060031b1c19161760055560ff90565b01519050388062001ac1565b6005600052601f198316949091907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0926000905b87821062001b5957505083600195961062001b3f575b505050811b0160055560ff90565b015160001960f88460031b161c1916905538808062001b31565b8060018596829496860151815501950193019062001b1b565b908151602080821060001462001b9057505090620001d09062001c82565b6001600160401b038211620000d65762001bb78262001bb160065462000522565b6200067c565b80601f831160011462001bf7575081929360009262001beb575b50508160011b916000199060031b1c19161760065560ff90565b01519050388062001bd1565b6006600052601f198316949091907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f926000905b87821062001c6957505083600195961062001c4f575b505050811b0160065560ff90565b015160001960f88460031b161c1916905538808062001c41565b8060018596829496860151815501950193019062001c2b565b601f81511162001cb057602081519101516020821062001ca0571790565b6000198260200360031b1b161790565b60405163305a27a960e01b81526020600482015290819062001a459060248301906200120e565b60e051610100516040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815260c0810181811060018060401b03821117620000d65760405251902090565b6001600160d01b039081811162001d58571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b600019810191908211620010e157565b600a546000908062001d9a575050600090565b600019918183810111620010e157600a905201600080516020620090e3833981519152015460301c90565b80546000918162001dd857505050600090565b600019928284810111620010e15760209181522001015460301c90565b6012549068010000000000000000821015620000d65760018201806012558210156200111257601260005280516020919091015160301b65ffffffffffff191665ffffffffffff9190911617600080516020620090c383398151915290910155565b600a549068010000000000000000821015620000d6576001820180600a558210156200111257600a60005280516020919091015160301b65ffffffffffff191665ffffffffffff9190911617600080516020620090e383398151915290910155565b90815468010000000000000000811015620000d65760018101808455811015620011125760009283526020928390208251929093015160301b65ffffffffffff191665ffffffffffff9290921691909117910155565b601254919291801562001fdc5762001f2b62001f449162001d77565b6012600052600080516020620090c38339815191520190565b9081549165ffffffffffff9081841691831680831162001fca5786920362001f8c5762001f8592509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505062001fc49062001faf62001fa162000142565b65ffffffffffff9092168252565b6001600160d01b038516602082015262001df5565b62001f85565b604051632520601d60e01b8152600490fd5b50620020059062001ff062001fa162000142565b6001600160d01b038416602082015262001df5565b60009190565b600a549192918015620020ab5762002027620020409162001d77565b600a600052600080516020620090e38339815191520190565b9081549165ffffffffffff9081841691831680831162001fca57869203620020815762001f8592509065ffffffffffff82549181199060301b169116179055565b505062001fc4906200209662001fa162000142565b6001600160d01b038516602082015262001e57565b506200200590620020bf62001fa162000142565b6001600160d01b038416602082015262001e57565b805492939280156200217757620020ef620020fc9162001d77565b8260005260206000200190565b9182549265ffffffffffff9182851692811680841162001fca578793036200213e575062001f8592509065ffffffffffff82549181199060301b169116179055565b91505062001fc491620021626200215462000142565b65ffffffffffff9093168352565b6001600160d01b038616602083015262001eb9565b509062002005916200218c6200215462000142565b6001600160d01b038516602083015262001eb9565b90620021ad8162001d43565b4365ffffffffffff16926001600160d01b03918280620021cc62001d87565b16911601828111620010e157620021e490856200200b565b50506001600160a01b0390811690811562002345575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169491169084821415806200233b575b6200224a575b5050505050565b81620022cf575b50508262002262575b808062002243565b620022c3620022aa6000805160206200914383398151915293620022a36200229c8760018060a01b03166000526009602052604060002090565b9162001d43565b906200237d565b6040805192851683529316602082015291829190820190565b0390a23880806200225a565b6001600160a01b038216600090815260096020526040902090620022f38562001d43565b8480620023008562001dc5565b169116900390848211620010e157620022aa859262002330926000805160206200914383398151915295620020d4565b0390a2388062002251565b508315156200223d565b620023508462001d43565b83806200235c62001d87565b1691169003838111620010e1576200237590866200200b565b5050620021fa565b906001600160d01b03908180620023948562001dc5565b16911601908111620010e157620023b59165ffffffffffff431690620020d4565b909156fe60806040526004361015610023575b361561001957600080fd5b610021613877565b005b60003560e01c80627e637e14610582578063013cf08b1461057d57806301ffc9a71461057857806302a251a31461057357806306f3f9e61461056e57806306fdde0314610569578063095ea7b3146105645780630965211e1461055f5780630c0512e91461055a5780630eb1259614610555578063108b4e0714610550578063143489d01461054b578063150b7a0214610546578063160cbed71461054157806318160ddd1461053c578063194a94fc146105375780631b470faf146105325780631c0f4d8d1461052d57806323b872dd146105285780632656227d146105235780632d63f6931461051e5780632fe3e26114610519578063313ce5671461051457806335c4364f1461050f5780633932abb11461050a5780633a46b1a8146105055780633e4f49e61461050057806343859632146104fb578063452115d6146104f65780634bf5d7e9146104f15780634fa76ec9146104ec578063544ffc9c146104e757806354fd4d50146104e257806356781388146104dd578063587cde1e146104d85780635b8d0e0d146104d35780635c19a95c146104ce5780635f398a14146104c957806360c4247f146104c45780636fcfff45146104bf57806370a08231146104ba57806379051887146104b55780637b3c71d3146104b05780637d5e81e2146104ab5780637e63b733146104a65780637ecebe00146104a1578063823081581461049c57806384b0196e146104975780638e539e8c146104925780638ff262e31461048d57806391ddadf41461048857806395d89b411461048357806396e973fb1461047e57806397c3d334146104795780639a802a6d146104745780639ab24eb01461046f5780639be65b401461046a578063a7713a7014610465578063a890c91014610460578063a9059cbb1461045b578063a9a9529414610456578063ab27301614610451578063ab58fb8e1461044c578063b493193614610447578063b58131b014610442578063bc197c811461043d578063c01f9e3714610438578063c0e58a0e14610433578063c28bc2fa1461042e578063c3cda52014610429578063c59057e414610424578063d1fad4cd1461041f578063d33219b41461041a578063dd4e2ba514610415578063dd62ed3e14610410578063deaaa7cc1461040b578063e540d01d14610406578063eb9019d414610401578063ec4a59d9146103fc578063ece40cc1146103f7578063f1127ed8146103f2578063f23a6e61146103ed578063f2c26a47146103e8578063f8ce560a146103e3578063fc0c546a146103de5763fd5c4be70361000e57613859565b613814565b61375a565b61362a565b613550565b613499565b613444565b613426565b6133c4565b61331d565b6132cf565b61326c565b61320e565b6131e5565b6130b4565b613098565b612fcb565b612f5f565b612e93565b612e75565b612dd5565b612db7565b612d90565b612d59565b612c2c565b612c10565b612bdb565b612b67565b612b44565b612b26565b612ad4565b6129f1565b6129d5565b612998565b6128f1565b6128ce565b6127b6565b6126e7565b61261d565b612577565b612502565b6123d6565b61234e565b6122f9565b612288565b61224b565b612200565b6121e2565b612173565b61214d565b6120c5565b612059565b612009565b611fa7565b611f5a565b611f3c565b611ede565b611e20565b611dc7565b611d9a565b611c7c565b611c56565b611c0c565b611bf0565b611bb5565b611b7e565b611a29565b611970565b6117cb565b611671565b6115e8565b6115ca565b611380565b611221565b6111ed565b61106c565b610e75565b610bc5565b610ba2565b610ad4565b6109de565b61091e565b6108f7565b61087e565b6107ea565b346105ee5760203660031901126105ee576100216004358060005260216020526040600020600160058201916105e28354916105c160ff841615615e15565b6105d1600282015442101561629d565b600660078201549101541115615fa3565b60ff191617905561654d565b600080fd5b90600182811c92168015610623575b602083101461060d57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610602565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161065657604052565b61062d565b604081019081106001600160401b0382111761065657604052565b602081019081106001600160401b0382111761065657604052565b60c081019081106001600160401b0382111761065657604052565b60a081019081106001600160401b0382111761065657604052565b61010081019081106001600160401b0382111761065657604052565b90601f801991011681019081106001600160401b0382111761065657604052565b9060405191826000825492610718846105f3565b9081845260019485811690816000146107875750600114610744575b5050610742925003836106e3565b565b9093915060005260209081600020936000915b81831061076f57505061074293508201013880610734565b85548884018501529485019487945091830191610757565b91505061074294506020925060ff191682840152151560051b8201013880610734565b919082519283825260005b8481106107d6575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016107b5565b346105ee5760203660031901126105ee57600435600052601f602052610859604060002061081781610704565b9060028101549060038101549060018060a01b0360048201541660ff60068301541690600860078401549301549360405197889760e0895260e08901906107aa565b956020880152604087015260608601521515608085015260a084015260c08301520390f35b346105ee5760203660031901126105ee5760043563ffffffff60e01b81168091036105ee576020906332a2ad4360e11b81149081156108db575b81156108ca575b506040519015158152f35b6301ffc9a760e01b149050386108bf565b630271189760e51b811491506108b8565b60009103126105ee57565b346105ee5760003660031901126105ee57602063ffffffff60105460301c16604051908152f35b346105ee5760203660031901126105ee5760043561093a614111565b606481116109ab577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b036109746152c0565b1661098f610981836150e0565b65ffffffffffff43166154c4565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206109db9281815201906107aa565b90565b346105ee57600080600319360112610ac0576040519080600b54610a01816105f3565b80855291600191808316908115610a965750600114610a3b575b610a3785610a2b818703826106e3565b604051918291826109ca565b0390f35b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828410610a7e575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101610a63565b869550610a3796935060209250610a2b94915060ff191682840152151560051b8201019293610a1b565b80fd5b6001600160a01b038116036105ee57565b346105ee5760403660031901126105ee57600435610af181610ac3565b6024353315610b89576001600160a01b038216918215610b70573360009081526001602052604090208291610b38915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b346105ee5760003660031901126105ee57602060ff602654166040519015158152f35b346105ee5760003660031901126105ee576020602254604051908152f35b60165460009291610bf3826105f3565b80825291600190818116908115610c6a5750600114610c1157505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410610c5257505060209250010190565b80546020858501810191909152909301928101610c40565b915050602093945060ff929192191683830152151560051b010190565b60175460009291610c97826105f3565b80825291600190818116908115610c6a5750600114610cb557505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410610cf657505060209250010190565b80546020858501810191909152909301928101610ce4565b60185460009291610d1e826105f3565b80825291600190818116908115610c6a5750600114610d3c57505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410610d7d57505060209250010190565b80546020858501810191909152909301928101610d6b565b9060009291805491610da6836105f3565b918282526001938481169081600014610e085750600114610dc8575b50505050565b90919394506000526020928360002092846000945b838610610df4575050505001019038808080610dc2565b805485870183015294019385908201610ddd565b9294505050602093945060ff191683830152151560051b01019038808080610dc2565b95939091926109db9897959360018060a01b038094168852602088015260408701521660608501521515608084015260a083015260c0820152610100908160e082015201906107aa565b346105ee5760203660031901126105ee576004356000526021602052604060002060018060a01b0390610a376008838354169260018101549460028201549060038301541660ff60058401541690600684015492610ee9600786015495610ee26040518099819301610d95565b03876106e3565b60405198899889610e2b565b6040519061012082018281106001600160401b0382111761065657604052565b604051906107428261065b565b6001600160401b0381116106565760051b60200190565b81601f820112156105ee57803591610f5083610f22565b92610f5e60405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610f88575050505090565b8380918335610f9681610ac3565b815201910190610f7a565b81601f820112156105ee57803591610fb883610f22565b92610fc660405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610ff0575050505090565b81358152908301908301610fe2565b6001600160401b03811161065657601f01601f191660200190565b92919261102682610fff565b9161103460405193846106e3565b8294818452818301116105ee578281602093846000960137010152565b9080601f830112156105ee578160206109db9335910161101a565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761109d903690600401610f39565b906024358181116105ee576110b6903690600401610fa1565b90604435916064359182116105ee57610a37936111da6110fb7f8fd808cdcd18f44b7f33c61fb97b83154c1d653ef4a9a2d236b290644edd6c83943690600401611051565b6111088351855114615906565b6111148351151561594b565b61111f428711615986565b33600090815260208190526040902061113b905b5415156159c5565b6111cc6023549661115361114e89613e12565b602355565b61115b615a1d565b61117461116d60025460255490614a1a565b6064900490565b9061117d610ef5565b8781526020810189905260408101939093523360608401526080830152600060a083015260c0820152600060e0820152826101008201526111c78860005260208052604060002090565b615d20565b604051938493338886615dd8565b0390a16040519081529081906020820190565b346105ee5760203660031901126105ee57600435600052600c602052602060018060a01b0360406000205416604051908152f35b346105ee5760803660031901126105ee5761123d600435610ac3565b611248602435610ac3565b6064356001600160401b0381116105ee57611267903690600401611051565b506013546001600160a01b0316300361128c57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b9080601f830112156105ee578135906112b682610f22565b926112c460405194856106e3565b828452602092838086019160051b830101928084116105ee57848301915b8483106112f25750505050505090565b82356001600160401b0381116105ee57869161131384848094890101611051565b8152019201916112e2565b60806003198201126105ee576001600160401b03916004358381116105ee578261134a91600401610f39565b926024358181116105ee578361136291600401610fa1565b926044359182116105ee576113799160040161129e565b9060643590565b346105ee5761138e3661131e565b61139c818385879697613930565b926113a6846141a2565b506013546113c4906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615611579576000966115ab575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b825281806114268c8a8a8d60048601616b77565b03915afa9182156115795760009261157e575b505061144f876000526014602052604060002090565b55601354611465906001600160a01b03166113b8565b90813b156105ee5760008094611491878b51998a97889687956308f2a0bb60e41b875260048701616bbd565b03925af1908115611579576114b5926114b092611560575b5042613b2e565b615113565b65ffffffffffff81161561154f57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289261153e84611520610a3796600161150688600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b8061156d61157392610643565b806108ec565b386114a9565b6143a8565b61159d9250803d106115a4575b61159581836106e3565b810190614399565b3880611439565b503d61158b565b6115c3919650823d84116115a45761159581836106e3565b94386113ef565b346105ee5760003660031901126105ee576020600254604051908152f35b346105ee5760403660031901126105ee576004356001600160401b0381116105ee5761165c61163c7f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401611051565b60243561164881610ac3565b6040519283926040845260408401906107aa565b6001600160a01b0390911660208301520390a1005b346105ee5760803660031901126105ee5760043561168e81610ac3565b6044356064356024356001600160401b0382116105ee57610a37936111da6116db7ff80f5ce91f7d79d29fd2bd635816739c0fae47505f5a30a820e49ace80884165943690600401611051565b6116ef6001600160a01b0384161515615fe5565b6116fa84151561642c565b611708602854851115616478565b611713428711615986565b33600090815260208190526040902061172b90611133565b6117bd6024549661174361173e89613e12565b602455565b61174b615a1d565b61175d61116d60025460255490614a1a565b90611766610ef5565b6001600160a01b0388168152926020840189905260408401523360608401526080830152600060a083015260c0820152600060e0820152826101008201526117b8886000526021602052604060002090565b6164c4565b604051938493338886616516565b346105ee576020806003193601126105ee576004356117f4816000526021602052604060002090565b600581019261181361180e61180a865460ff1690565b1590565b615e15565b61182260028301544210615e61565b33600090815260208190526040902061183e905b541515615ea0565b60009060048301918254905b8181106118fe5750506040513360601b6001600160601b03191691810191825261188d9290916118889083906014015b03601f1981018452836106e3565b615f32565b6006600782019161189e8354613e12565b92839055604080518581523360208201529081018490527fc5fb6601ac4858dba31868a09f1646a3bfe4638f325353bb142719b81e3645a190606090a1015411156118e557005b6118f961002192600160ff19825416179055565b61654d565b8061191661190f61192c9387614440565b50546105f3565b158015611931575b61192790615ef5565b613e12565b61184a565b506119276119486119428388614440565b50610704565b805133916001600160a01b0391611966919081018901908901615ee0565b161415905061191e565b346105ee5760603660031901126105ee5760043561198d81610ac3565b60243561199981610ac3565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106119e3575b6119d79350614809565b60405160018152602090f35b8284106119ff576119fa836119d79503338361491b565b6119cd565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b611a323661131e565b611a40818385879597613930565b92611a4a846141f4565b50611a75611a6285600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611b19575b94611a9b9291610a379686616c0b565b6013543091166001600160a01b0316141580611af8575b611ae9575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081016111da565b611af36000600d55565b611ab7565b50611b1461180a600d546001600160801b0381169060801c1490565b611ab2565b9290939160005b8451811015611b7457611b559030611b4b6113b8611b3e848a613e37565b516001600160a01b031690565b14611b5a57613e12565b611b20565b611927611b67828a613e37565b5160208151910120615853565b5091939092611a8b565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b346105ee5760003660031901126105ee5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346105ee5760003660031901126105ee57602060405160128152f35b346105ee5760203660031901126105ee576100216004358060005260208052604060002060016005820191611c4a8354916105c160ff841615615e15565b60ff19161790556160e4565b346105ee5760003660031901126105ee57602065ffffffffffff60105416604051908152f35b346105ee5760403660031901126105ee57600435611c9981610ac3565b6001600160a01b0316600090815260096020526040812090611cbc602435614568565b91805482938160058111611d0e575b5090602094611cda92846157f2565b80611cf45750505b6040516001600160d01b039091168152f35b91611d00849293614431565b92815220015460301c611ce2565b94611d1886615195565b8603958611611d6357602095611cda9385875265ffffffffffff80838a8a2001541690851610600014611d515750915b91925094611ccb565b929150611d5d90613b20565b90611d48565b613994565b634e487b7160e01b600052602160045260246000fd5b60081115611d8857565b611d68565b906008821015611d885752565b346105ee5760203660031901126105ee576020611db860043561676f565b611dc56040518092611d8d565bf35b346105ee5760403660031901126105ee57602060ff611e14602435611deb81610ac3565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346105ee57611e2e3661131e565b90611e3d828285879697613930565b611e468161676f565b6008811015611d885760018060ff83161b1615611eb157506000908152600c60205260409020546001600160a01b03163303611e9957610a3793611e8993616a36565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b90611ed5606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60016044820152fd5b346105ee5760003660031901126105ee57610a37604051611efe8161065b565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906107aa565b346105ee5760003660031901126105ee576020602554604051908152f35b346105ee5760203660031901126105ee57600435600052601160205260406000208054610a3760026001840154930154604051938493846040919493926060820195825260208201520152565b346105ee5760003660031901126105ee57610a37604051611fc78161065b565b60018152603160f81b60208201526040519182916020835260208301906107aa565b6024359060ff821682036105ee57565b6064359060ff821682036105ee57565b346105ee5760403660031901126105ee576020612051612027611fe9565b60405161203381610676565b600081526040519161204483610676565b6000835233600435613fc2565b604051908152f35b346105ee5760203660031901126105ee57602060043561207881610ac3565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f840112156105ee578235916001600160401b0383116105ee57602083818601950101116105ee57565b346105ee5760c03660031901126105ee576120de611fe9565b604435906120eb82610ac3565b6001600160401b03906064358281116105ee5761210c903690600401612098565b6084358481116105ee57612124903690600401611051565b9160a4359485116105ee57610a3795612144611e89963690600401611051565b94600435613e50565b346105ee5760203660031901126105ee5761002160043561216d81610ac3565b336145a1565b346105ee5760803660031901126105ee5761218c611fe9565b6001600160401b03906044358281116105ee576121ad903690600401612098565b90916064359384116105ee576121d8612051936121d06020963690600401611051565b93369161101a565b9033600435613fc2565b346105ee5760203660031901126105ee576020612051600435614458565b346105ee5760203660031901126105ee5760043561221d81610ac3565b60018060a01b03166000526009602052602061223d604060002054615145565b63ffffffff60405191168152f35b346105ee5760203660031901126105ee57602061205160043561226d81610ac3565b6001600160a01b031660009081526020819052604090205490565b346105ee5760203660031901126105ee5760043565ffffffffffff8082168092036105ee576122b5614111565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b346105ee5760603660031901126105ee57612312611fe9565b6044356001600160401b0381116105ee5760209161234161233a612051933690600401612098565b369161101a565b6040519161204483610676565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761237f903690600401610f39565b906024358181116105ee57612398903690600401610fa1565b916044358281116105ee576123b190369060040161129e565b6064359283116105ee57610a37936123d0611e89943690600401611051565b926139dc565b346105ee576020806003193601126105ee576004356123fe8160005260208052604060002090565b600581019261241461180e61180a865460ff1690565b61242360028301544210615e61565b33600090815260208190526040902061243b90611836565b60009060048301918254905b8181106124ec5750506040513360601b6001600160601b03191691810191825261247b92909161188890839060140161187a565b6006600782019161248c8354613e12565b92839055604080518581523360208201529081018490527f77c69d1b59f862d9677ac552a49c26ba3fe18ccc64ad8da630a5343c306dea6190606090a1015411156124d357005b6124e761002192600160ff19825416179055565b6160e4565b8061191661190f6124fd9387614440565b612447565b346105ee5760203660031901126105ee5760043561251f81610ac3565b60018060a01b031660005260076020526020604060002054604051908152f35b926109db96959260c09592855260018060a01b0316602085015215156040840152606083015260808201528160a082015201906107aa565b346105ee5760203660031901126105ee576004356000526020805260406000206002810154610a37600860018060a01b036003850154169360ff6005820154166006820154906125dd6007840154936125d66040518097819301610d95565b03856106e3565b6040519687968761253f565b90815180825260208080930193019160005b828110612609575050505090565b8351855293810193928101926001016125fb565b346105ee5760003660031901126105ee576126b861265a7f0000000000000000000000000000000000000000000000000000000000000000614e4f565b610a376126867f0000000000000000000000000000000000000000000000000000000000000000614f48565b6126c66040519161269683610676565b60008352604051958695600f60f81b875260e0602088015260e08701906107aa565b9085820360408701526107aa565b90466060850152306080850152600060a085015283820360c08501526125e9565b346105ee5760203660031901126105ee57612703600435614568565b600a5490600082916005841161275b575b61271e9350615720565b60008161273357505060405160008152602090f35b600a612740602093614431565b9152600080516020616cb4833981519152015460301c611ce2565b919261276681615195565b8103908111611d635761271e93600a835265ffffffffffff8083600080516020616cb4833981519152015416908516106000146127a4575091612714565b9291506127b090613b20565b90612714565b346105ee5760803660031901126105ee576004356127d2611fe9565b90604435916127e083610ac3565b6064356001600160401b0381116105ee5761180a612805612892923690600401611051565b6001600160a01b038616600090815260076020526040902080546001810190915561288c9060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a0815261288481610691565b519020614d15565b86615002565b6128ad5790611e8991610a37936128a761388b565b92613f46565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346105ee5760003660031901126105ee57602060405165ffffffffffff43168152f35b346105ee57600080600319360112610ac0576040519080600454612914816105f3565b80855291600191808316908115610a96575060011461293d57610a3785610a2b818703826106e3565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410612980575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101612965565b346105ee5760203660031901126105ee576004356129b581610ac3565b60018060a01b031660005260276020526020604060002054604051908152f35b346105ee5760003660031901126105ee57602060405160648152f35b346105ee5760603660031901126105ee57600435612a0e81610ac3565b6044356001600160401b0381116105ee57612a6591612a336020923690600401611051565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa801561157957610a3791600091612ab6575b506040519081529081906020820190565b612ace915060203d81116115a45761159581836106e3565b38612aa5565b346105ee5760203660031901126105ee57600435612af181610ac3565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612b1d90615354565b16604051908152f35b346105ee5760003660031901126105ee576020602454604051908152f35b346105ee5760003660031901126105ee5760206001600160d01b03612b1d6152c0565b346105ee5760203660031901126105ee57600435612b8481610ac3565b612b8c614111565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b346105ee5760403660031901126105ee57612c05600435612bfb81610ac3565b6024359033614809565b602060405160018152f35b346105ee5760203660031901126105ee57602060405160018152f35b346105ee5760203660031901126105ee57600435612c5481600052601f602052604060002090565b6006810190612c6a61180e61180a845460ff1690565b612c7960028201544210615e61565b336000908152602081905260409020612c9190611836565b6040513360601b6001600160601b0319166020820152612ccb90612cc281603481015b03601f1981018352826106e3565b60058301615f32565b60076008820191612cdc8354613e12565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a101541115612d2357005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f906109a690611e89565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b346105ee5760203660031901126105ee576020612051600435612db281610ac3565b616620565b346105ee5760003660031901126105ee576020600f54604051908152f35b346105ee5760a03660031901126105ee57612df1600435610ac3565b612dfc602435610ac3565b6001600160401b036044358181116105ee57612e1c903690600401610fa1565b506064358181116105ee57612e35903690600401610fa1565b506084359081116105ee57612e4e903690600401611051565b50610a37612e5a614185565b6040516001600160e01b031990911681529081906020820190565b346105ee5760203660031901126105ee5760206120516004356139aa565b346105ee5760203660031901126105ee57600435612eb281151561642c565b3360005260006020528060406000205410612f23576109a681612ef77fbd67ec2db294b72ed21ac12cf37aa44775b63ea7ab9345652a1d28be069c4100933033614809565b612f0b612f0682602854613b2e565b602855565b60408051338152602081019290925290918291820190565b60405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606490fd5b60603660031901126105ee57600435612f7781610ac3565b604435906001600160401b0382116105ee5760008091612f9e610021943690600401612098565b90612fa7614111565b81604051928392833781018481520391602435905af1612fc56140e1565b9061496e565b346105ee5760c03660031901126105ee57600435612fe881610ac3565b60443590602435612ff7611ff9565b83421161307f576130736100219461307a926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261305b826106ac565b61306e60a4359360843593519020614d15565b614be2565b9182614997565b6145a1565b604051632341d78760e11b815260048101859052602490fd5b346105ee5760206120516130ab3661131e565b92919091613930565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee576130e5903690600401611051565b6024359182116105ee577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111da613124610a37943690600401610fa1565b926131d760443594613138835115156162e0565b6131448151151561631e565b61314f428711615986565b6022549561316461315f88613e12565b602255565b61316c615a1d565b61317e61116d60025460255490614a1a565b91613187610ef5565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526131d286600052601f602052604060002090565b616360565b604051918291338684616404565b346105ee5760003660031901126105ee576013546040516001600160a01b039091168152602090f35b346105ee5760003660031901126105ee57610a3760405161322e8161065b565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906107aa565b346105ee5760403660031901126105ee5760206132c660043561328e81610ac3565b6024359061329b82610ac3565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b346105ee5760003660031901126105ee5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff821682036105ee57565b346105ee5760203660031901126105ee5761333661330a565b61333e614111565b63ffffffff8082169182156133ab577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346105ee5760403660031901126105ee57612a6560206004356133e681610ac3565b60006040516133f481610676565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b346105ee5760003660031901126105ee576020602854604051908152f35b346105ee5760203660031901126105ee57600435613460614111565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b346105ee5760403660031901126105ee576004356134b681610ac3565b6024359063ffffffff821682036105ee57610a3791613506916134d7614955565b506134e0614955565b506001600160a01b03166000908152600960205260409020613500614955565b50614440565b50604051906135148261065b565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b346105ee5760a03660031901126105ee5761356c600435610ac3565b613577602435610ac3565b6084356001600160401b0381116105ee57613596903690600401611051565b506013546001600160a01b0316300361128c5760405163f23a6e6160e01b8152602090f35b979499989592613600906135f261360e946135e46101009b98958d6101209081815201906107aa565b8c810360208e0152906107aa565b908a820360408c01526107aa565b9088820360608a01526107aa565b97608087015260a086015260c085015260e08401521515910152565b346105ee57600080600319360112610ac05760405190818160155461364e816105f3565b8084529360019180831690811561373657506001146136d9575b5050613676925003826106e3565b6040519061368e8261368781610be3565b03836106e3565b610a376040516136a8816136a181610c87565b03826106e3565b6040516136b8816136a181610d0e565b601954601a54601c5491601d549360ff601e541695604051998a998a6135bb565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b84831061371b575061367693505081016020013880613668565b81935090816020925483858901015201910190918492613701565b9150506020925061367694915060ff191682840152151560051b8201013880613668565b346105ee5760203660031901126105ee57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa91821561157957610a37926064926137de926000926137f0575b506137d890614458565b90614a1a565b04604051918291829190602083019252565b6137d891925061380d9060203d81116115a45761159581836106e3565b91906137ce565b346105ee5760003660031901126105ee576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346105ee5760003660031901126105ee576020602354604051908152f35b6013546001600160a01b0316300361128c57565b6040519061389882610676565b60008252565b90815180825260208080930193019160005b8281106138be575050505090565b83516001600160a01b0316855293810193928101926001016138b0565b90815180825260208092019182818360051b85019501936000915b8483106139065750505050505090565b909192939495848061392083856001950387528a516107aa565b98019301930191949392906138f6565b929061397c9261398e9260405194859261396c613959602086019960808b5260a087019061389e565b601f1996878783030160408801526125e9565b90858583030160608601526138db565b906080830152039081018352826106e3565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611d63571690565b91939290936139eb8233614246565b15613ae857600f549485613a07575b6109db9495503393613c53565b65ffffffffffff43811660001901818111611d6357613a58916020916000604051613a3181610676565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561157957600091613aca575b50868110613aa357506139fa565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613ae2915060203d81116115a45761159581836106e3565b38613a95565b60405163d9b3955760e01b8152336004820152602490fd5b604090613b1c6000939594606083019683526020830190611d8d565b0152565b9060018201809211611d6357565b91908201809211611d6357565b90613b4582610f22565b613b5260405191826106e3565b8281528092613b63601f1991610f22565b019060005b828110613b7457505050565b806060602080938501015201613b68565b9592613bb890613bc6939b9a9899969592885260209b60018060a01b03168c8901526101208060408a015288019061389e565b9086820360608801526125e9565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b838210613c255750505050506109db96975090613c0c9184820360a08601526138db565b9360c083015260e08201526101008184039101526107aa565b90919293958380613c448f93600194601f199082030186528a516107aa565b98019201920190939291613be8565b919493909294613c6b86516020880120828686613930565b958351855190818114801590613e07575b8015613dff575b613dd657505065ffffffffffff9485613cb8613ca98a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613daf577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e095613daa9363ffffffff613cfa60105493808516904316613b2e565b9260301c16613d88613d168c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a16178155613d5f613d3b86615113565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b613d6883615145565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b613d9c613d958951613b3b565b9184613b2e565b936040519889988d8a613b85565b0390a1565b87613db98161676f565b6040516331b75e4d60e01b8152918291611a259160048401613b00565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b508015613c83565b508351811415613c7c565b6000198114611d635760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015613e4b5760209160051b010190565b613e21565b93909291969561180a613f0a91613f048a613e868160018060a01b03166000526007602052604060002080549060018201905590565b613e9136888a61101a565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152612884816106c7565b8a615002565b613f25576109db959691613f1f91369161101a565b92613fc2565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916109db939160405193613f5985610676565b60008552613fc2565b93909260ff613f8e936109db97958752166020860152604085015260a0606085015260a08401906107aa565b9160808184039101526107aa565b909260ff6080936109db96958452166020830152604082015281606082015201906107aa565b929190613fce8461676f565b6008811015611d88576002600160ff83161b16156140b3575083600052600c60205261402a61402261401c614011604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b836143b4565b8383876142ae565b9480511560001461407757506140717fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613f9c565b0390a290565b614071907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886613f62565b6040516331b75e4d60e01b8152600481018690526064916140d8906024830190611d8d565b60026044820152fd5b3d1561410c573d906140f282610fff565b9161410060405193846106e3565b82523d6000602084013e565b606090565b6013546001600160a01b031633810361416d57300361412c57565b61413536610fff565b61414260405191826106e3565b368152602081019036600083376000602036830101525190205b806141656158ae565b0361415c5750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b0316300361128c5763bc197c8160e01b90565b6141ab8161676f565b906008821015611d88576010600160ff84161b16156141c8575090565b6141eb606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60106044820152fd5b6141fd8161676f565b906008821015611d88576030600160ff84161b161561421a575090565b61423d606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60306044820152fd5b908051603481106142a65760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b016142a65761428591602919820190614a2d565b901591821561429357505090565b6001600160a01b03918216911614919050565b505050600190565b6142c5909291926000526011602052604060002090565b91600383016142f06142e983839060018060a01b0316600052602052604060002090565b5460ff1690565b6143785761431660ff9392614323929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b168061433a5750614335828254613b2e565b905590565b600181036143515750600101614335828254613b2e565b60020361436657600201614335828254613b2e565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b908160209103126105ee575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561157957600091614419575090565b6109db915060203d81116115a45761159581836106e3565b600019810191908211611d6357565b8054821015613e4b5760005260206000200190600090565b601254906000198201828111611d6357821115613e4b57600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff9281848216111561455d57506144b790615113565b83908260058111614507575b506144ce9350615789565b806144e157505b6001600160d01b031690565b6144ec601291614431565b9152600080516020616c94833981519152015460301c6144d5565b909261451282615195565b8203918211611d63576144ce94601287528083600080516020616c948339815191520154169085161060001461454b5750915b386144c3565b92915061455790613b20565b90614545565b935050505060301c90565b65ffffffffffff43168082101561458357506109db90615113565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b0319821681179092556107429694169461461e9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580614768575b614648575b5050505050565b816146cd575b50508261465d575b8080614641565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916146aa916146a490916150e0565b90614771565b604080516001600160d01b039384168152919092166020820152a2388080614656565b6001600160a01b031660009081526009602052604090206146ed846150e0565b6001600160d01b0390818061470185615354565b1691169003818111611d635761474561475e917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690615664565b6040805192851683529316602082015291829190820190565b0390a2388061464e565b5083151561463c565b906001600160d01b0390818061478685615354565b16911601908111611d63576147a49165ffffffffffff431690615664565b9091565b6001600160d01b039081806147bb61530a565b16911601908111611d63576147a49065ffffffffffff43166155ad565b6001600160d01b039081806147eb61530a565b1691169003908111611d63576147a49065ffffffffffff43166155ad565b6001600160a01b038082169493929190851561490257821680156148e9576001600160a01b038216600090815260208190526040902054958487106148ba578461074296970361486b8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36166ec565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610b8957811615610b7057610b216149529260018060a01b03166000526001602052604060002090565b55565b604051906149628261065b565b60006020838281520152565b909190610742575080511561498557805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b03811660009081526007602052604090208054600181019091558092036149c3575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b9180830460021490151715611d6357565b908160041b9180830460101490151715611d6357565b81810292918115918404141715611d6357565b9190825182118015614ab6575b614a8d57614a4781613b20565b821180614a98575b614a5a9015156149ee565b60280180602811611d6357818303838111611d635703614a8d57614a7d92614abf565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b14614a4f565b50818111614a3a565b929092614acb84613b20565b831180614b52575b614ade9015156149ee565b936000948101809111611d63579192905b818310614aff5750505060019190565b9092919360ff614b20614b1b6020888601015160ff60f81b1690565b614b70565b1690600f8211614b465790614b37614b3e92614a04565b0194613e12565b919290614aef565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614ad3565b60f81c602f811180614bd8575b15614b8c57602f190160ff1690565b6060811180614bce575b15614ba5576056190160ff1690565b6040811180614bc4575b15614bbe576036190160ff1690565b5060ff90565b5060478110614baf565b5060678110614b96565b50603a8110614b7d565b916109db9391614bf193614bfa565b90929192614c88565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411614c7257926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156115795780516001600160a01b03811615614c6957918190565b50809160019190565b50505060009160039190565b60041115611d8857565b614c9181614c7e565b80614c9a575050565b614ca381614c7e565b60018103614cbd5760405163f645eedf60e01b8152600490fd5b614cc681614c7e565b60028103614ce75760405163fce698f760e01b815260048101839052602490fd5b80614cf3600392614c7e565b14614cfb5750565b6040516335e2f38360e21b81526004810191909152602490fd5b604290614d20614d3b565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480614e26575b15614d96577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261398e81610691565b507f00000000000000000000000000000000000000000000000000000000000000004614614d6d565b60ff8114614e8d5760ff811690601f8211614e7b5760405191614e718361065b565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614ea0836105f3565b80835292600190818116908115614f265750600114614ec7575b506109db925003826106e3565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310614f0b57506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614ef2565b9050602092506109db94915060ff191682840152151560051b82010138614eba565b60ff8114614f6a5760ff811690601f8211614e7b5760405191614e718361065b565b50604051600654816000614f7d836105f3565b80835292600190818116908115614f265750600114614fa357506109db925003826106e3565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310614fe757506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614fce565b9091813b61502a5761501491926150a4565b5061501e81614c7e565b15918261429357505090565b600091829160405161506081612cb46020820194630b135d3f60e11b998a875260248401526040604484015260648301906107aa565b51915afa9061506d6140e1565b82615096575b8261507d57505090565b61509291925060208082518301019101614399565b1490565b915060208251101591615073565b81519190604183036150d5576150ce92506020820151906060604084015193015160001a90614bfa565b9192909190565b505060009160029190565b6001600160d01b03908181116150f4571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111615126571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff90818111615156571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b811561517f570490565b634e487b7160e01b600052601260045260246000fd5b60018111156109db57600181600160801b8110156152ae575b61525661524c61524261523861522e61522461526297600488600160401b61525d9a10156152a1575b640100000000811015615294575b62010000811015615287575b61010081101561527b575b601081101561526f575b1015615267575b60030260011c61521d818b615175565b0160011c90565b61521d818a615175565b61521d8189615175565b61521d8188615175565b61521d8187615175565b61521d8186615175565b8093615175565b821190565b900390565b60011b61520d565b811c9160021b91615206565b60081c91811b916151fc565b60101c9160081b916151f1565b60201c9160101b916151e5565b60401c9160201b916151d7565b50600160401b9050608082901c6151ae565b601254600090806152d2575050600090565b80600019810111611d635760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a546000908061531c575050600090565b80600019810111611d6357600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b80546000918161536657505050600090565b600019928284810111611d635760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b821015610656576001820180601255821015613e4b57610742916012600052600080516020616c9483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b821015610656576001820180600a55821015613e4b5761074291600a600052600080516020616cb483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b8110156106565761549791600182018155614440565b6154bf578151815465ffffffffffff191665ffffffffffff91909116178155610742916153f8565b615382565b6012549192918015615583576154dc6154f491614431565b6012600052600080516020616c948339815191520190565b9081549165ffffffffffff90818416918316808311615571578692036155395761553292509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505061556c9061555861554a610f15565b65ffffffffffff9092168252565b6001600160d01b0385166020820152615398565b615532565b604051632520601d60e01b8152600490fd5b506155a79061559361554a610f15565b6001600160d01b0384166020820152615398565b60009190565b600a549192918015615640576155c56155dd91614431565b600a600052600080516020616cb48339815191520190565b9081549165ffffffffffff908184169183168083116155715786920361561b5761553292509065ffffffffffff82549181199060301b169116179055565b505061556c9061562c61554a610f15565b6001600160d01b038516602082015261541a565b506155a79061565061554a610f15565b6001600160d01b038416602082015261541a565b805492939280156156fb5761567b61568891614431565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411615571578793036156c7575061553292509065ffffffffffff82549181199060301b169116179055565b91505061556c916156e76156d9610f15565b65ffffffffffff9093168352565b6001600160d01b038616602083015261547a565b50906155a79161570c6156d9610f15565b6001600160d01b038516602083015261547a565b905b82811061572e57505090565b90918082169080831860011c8201809211611d6357600a60005265ffffffffffff8083600080516020616cb4833981519152015416908516106000146157775750915b90615722565b92915061578390613b20565b90615771565b905b82811061579757505090565b90918082169080831860011c8201809211611d6357601260005265ffffffffffff8083600080516020616c94833981519152015416908516106000146157e05750915b9061578b565b9291506157ec90613b20565b906157da565b91905b8382106158025750505090565b9091928083169080841860011c8201809211611d635760008581526020902082015465ffffffffffff90811690841610156158415750925b91906157f5565b93925061584d90613b20565b9161583a565b600d548060801c9160018301926001600160801b038093168385161461589b57600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c83146158f35782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b1561590d57565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561595257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b1561598d57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b156159cc57565b60405162461bcd60e51b815260206004820152602360248201527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b604051615a2981610676565b6000815290565b818110615a3b575050565b60008155600101615a30565b91818110615a5457505050565b6107429260005260206000209182019101615a30565b8151916001600160401b03831161065657600160401b831161065657615a9583835481855584615a47565b602080910191600052806000209060005b848110615ab4575050505050565b83516001600160a01b03168382015592810192600101615aa6565b8151916001600160401b03831161065657600160401b831161065657615afa83835481855584615a47565b602080910191600052806000209060005b848110615b19575050505050565b83518382015592810192600101615b0b565b9190601f8111615b3a57505050565b610742926000526020600020906020601f840160051c83019310615b66575b601f0160051c0190615a30565b9091508190615b59565b91909182516001600160401b03811161065657615b9781615b9184546105f3565b84615b2b565b602080601f8311600114615bd3575081929394600092615bc8575b50508160011b916000199060031b1c1916179055565b015190503880615bb2565b90601f19831695615be985600052602060002090565b926000905b888210615c2657505083600195969710615c0d575b505050811b019055565b015160001960f88460031b161c19169055388080615c03565b80600185968294968601518155019501930190615bee565b815191600160401b8311610656578154838355808410615c9c575b50615c6e602080920192600052602060002090565b6000925b848410615c80575050505050565b60018382615c9083945186615b70565b01920193019290615c72565b6000838152846020822092830192015b828110615cba575050615c59565b80615cc7600192546105f3565b80615cd4575b5001615cac565b601f908181118414615cec5750508281555b38615ccd565b83615d0e92615d0085600052602060002090565b920160051c82019101615a30565b60008181526020812081835555615ce6565b600861010061074293615d34815185615a6a565b615d45602082015160018601615acf565b604081015160028501556060810151615d85906001600160a01b03165b6003860180546001600160a01b0319166001600160a01b03909216919091179055565b615d96608082015160048601615c3e565b615dbb615da660a0830151151590565b600586019060ff801983541691151516179055565b60c0810151600685015560e0810151600785015501519101615b70565b93906109db9593613f8e93615e0792875260018060a01b0316602087015260a0604087015260a086019061389e565b9084820360608601526125e9565b15615e1c57565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b15615e6857565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b15615ea757565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b908160209103126105ee57516109db81610ac3565b15615efc57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b8054600160401b81101561065657615f4f91600182018155614440565b9190916154bf5761074291615b70565b15615f6657565b60405162461bcd60e51b8152602060048201526015602482015274141c9bdc1bdcd85b081b9bdd08195e1958dd5d1959605a1b6044820152606490fd5b15615faa57565b60405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742071756f72756d60681b6044820152606490fd5b15615fec57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b1561602757565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6060810191815260209060608282015283548093526080810192600094855282852090855b8181106160c7575050506040818403910152808454928381520193835280832092905b8282106160b0575050505090565b8354855293840193600193840193909101906160a2565b82546001600160a01b03168652948401946001928301920161607f565b906160f88260005260208052604060002090565b61610e616109600583015460ff1690565b615f5f565b616122600782015460068301541115615fa3565b600181810193906000815b616166575b5050613daa7fe8585c604452fcb59bc021fce36eb8241ffc18bd81b50ce6cd5cea81ceeaa58d93946040519384938461605a565b83548110156161ec57806161a261619b6113b86161866161e69589614440565b905460039190911b1c6001600160a01b031690565b1515615fe5565b6161c36161bc6161b2838a614440565b90549060031b1c90565b1515616020565b6119276161d36161868388614440565b6161e06161b2848b614440565b906161f1565b8161612d565b616132565b91906001600160a01b03831680156148e957600254828101809111611d63576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116162775761074292935061666e565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b156162a457565b60405162461bcd60e51b8152602060048201526014602482015273151a5b595b1bd8dac81b9bdd08195e1c1a5c995960621b6044820152606490fd5b156162e757565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561632557565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b90610100600891616372815185615b70565b616383602082015160018601615acf565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556163ce60a082015160058601615c3e565b6163f36163de60c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526109db929101906107aa565b1561643357565b60405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606490fd5b1561647f57565b60405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742074726561737572792062616c616e63650000006044820152606490fd5b815181546001600160a01b0319166001600160a01b03909116178155610742916008906101009060208101516001850155604081015160028501556060810151615d85906001600160a01b0316615d62565b9081526001600160a01b03918216602082015291166040820152606081019190915260a0608082018190526109db929101906107aa565b80600052602160205260406000209061656c60ff600584015416615f5f565b616580600783015460068401541115615fa3565b60018201908154926028549361659885821115616478565b8403938411611d63576165f6613daa916165d27f0bb768aa97fa4e8a8f73bfa7bc210f1a29f29c765d44f0c29acc04a549e32e4396602855565b805485546165e9916001600160a01b031630614809565b546001600160a01b031690565b9254604080519384526001600160a01b039094166020840152928201929092529081906060820190565b6001600160a01b031660009081526020819052604090205480158015616664575b61665e576166556109db9160285490614a1a565b60025490615175565b50600090565b5060285415616641565b906107429161668461667f836150e0565b6147a8565b50506001600160a01b039081169081156166d4575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116614620565b6166e56166e0846150e0565b6147d8565b5050616699565b61074292916001600160a01b03918216919081908315616744575b16918215616731575b60005260086020528060406000205416916000526040600020541690614620565b61673d6166e0856150e0565b5050616710565b61675061667f866150e0565b5050616707565b908160209103126105ee575180151581036105ee5790565b61677881616881565b9061678282611d7e565b6005820361687d5761679f91506000526014602052604060002090565b546013546167b5906001600160a01b03166113b8565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa90811561157957600091616860575b50156167f357505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa91821561157957600092616833575b50501561682e57600790565b600290565b6168529250803d10616859575b61684a81836106e3565b810190616757565b3880616822565b503d616840565b6168779150843d86116168595761684a81836106e3565b386167e5565b5090565b61689581600052600c602052604060002090565b5460ff8160f01c1661698d5760f81c616987576168c2614011613ca983600052600c602052604060002090565b801561696e5765ffffffffffff431680911015616967576168e2826139aa565b106168ed5750600190565b6168f961180a82616994565b8015616942575b1561690b5750600390565b614011600161692761693493600052600c602052604060002090565b015465ffffffffffff1690565b61693d57600490565b600590565b5061696261180a8260005260116020526040600020600181015490541090565b616900565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa91821561157957616a3192606492616a1f926000926137f057506137d890614458565b04916002600182015491015490613b2e565b101590565b90616a42939291613930565b616a4b8161676f565b6008811015611d8857603b600160ff83161b1615616b4a5750616a90616a7b82600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1616ad0816000526014602052604060002090565b5480616ada575090565b601354616aef906001600160a01b03166113b8565b803b156105ee5760405163c4d252f560e01b815260048101929092526000908290602490829084905af1801561157957616b37575b5060008181526014602052604081205590565b8061156d616b4492610643565b38616b24565b90616b6e606492604051926331b75e4d60e01b845260048401526024830190611d8d565b603b6044820152fd5b949392616ba3608093616b95616bb19460a08a5260a08a019061389e565b9088820360208a01526125e9565b9086820360408801526138db565b93600060608201520152565b9192616bec60a094616bde616bfa949998979960c0875260c087019061389e565b9085820360208701526125e9565b9083820360408501526138db565b946000606083015260808201520152565b9290939160018060a01b036013541690813b156105ee57600093616c5a6040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601616b77565b039134905af19081156115795760009261495292616c84575b506000526014602052604060002090565b616c8d90610643565b38616c7356febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212209a5de699f7aefb288e8394e1a1967891a7fa659845a380ec582ae5c3dad15a8264736f6c63430008140033bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a83ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724","opcodes":"PUSH2 0x180 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x9F JUMPI PUSH3 0x20 PUSH3 0x19 PUSH3 0x387 JUMP JUMPDEST SWAP1 PUSH3 0x132D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6D09 SWAP1 DUP2 PUSH3 0x23BA DUP3 CODECOPY PUSH1 0x80 MLOAD DUP2 PUSH2 0x4D74 ADD MSTORE PUSH1 0xA0 MLOAD DUP2 PUSH2 0x4E29 ADD MSTORE PUSH1 0xC0 MLOAD DUP2 PUSH2 0x4D3E ADD MSTORE PUSH1 0xE0 MLOAD DUP2 PUSH2 0x4DC3 ADD MSTORE PUSH2 0x100 MLOAD DUP2 PUSH2 0x4DE9 ADD MSTORE PUSH2 0x120 MLOAD DUP2 PUSH2 0x2636 ADD MSTORE PUSH2 0x140 MLOAD DUP2 PUSH2 0x2662 ADD MSTORE PUSH2 0x160 MLOAD DUP2 DUP2 DUP2 PUSH2 0x2A69 ADD MSTORE DUP2 DUP2 PUSH2 0x378A ADD MSTORE DUP2 DUP2 PUSH2 0x382A ADD MSTORE DUP2 DUP2 PUSH2 0x3A5C ADD MSTORE DUP2 DUP2 PUSH2 0x43E5 ADD MSTORE PUSH2 0x69DA 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 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH3 0xA4 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 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1C0 DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x140 DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH3 0x151 DUP3 PUSH3 0xBA JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x167 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x156 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH1 0x40 MLOAD SWAP3 PUSH3 0x1AF PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP6 PUSH3 0xDC JUMP JUMPDEST DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0x9F JUMPI PUSH3 0x1D0 SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x153 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP2 MLOAD SWAP1 PUSH3 0x206 DUP3 PUSH3 0x1D3 JUMP JUMPDEST SWAP3 PUSH3 0x216 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH3 0xDC JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH3 0x9F JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH3 0x246 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x9F JUMPI DUP7 SWAP2 PUSH3 0x26A DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH3 0x178 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH3 0x235 JUMP JUMPDEST MLOAD SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP1 MLOAD SWAP2 PUSH3 0x2CB DUP4 PUSH3 0x1D3 JUMP JUMPDEST SWAP3 PUSH3 0x2DB PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH3 0xDC JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x9F JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x307 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH3 0x315 DUP5 PUSH3 0x29C JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x2F8 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP1 MLOAD SWAP2 PUSH3 0x33B DUP4 PUSH3 0x1D3 JUMP JUMPDEST SWAP3 PUSH3 0x34B PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH3 0xDC JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x9F JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x377 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH3 0x368 JUMP JUMPDEST PUSH3 0x9163 SWAP1 DUP2 CODESIZE SUB DUP1 PUSH1 0x40 MLOAD SWAP4 PUSH3 0x3A0 DUP3 DUP7 PUSH3 0xDC JUMP JUMPDEST DUP5 CODECOPY DUP3 ADD PUSH1 0x40 DUP4 DUP3 SUB SLT PUSH3 0x9F JUMPI DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x9F JUMPI DUP5 ADD SWAP4 PUSH2 0x1C0 DUP6 DUP5 SUB SLT PUSH3 0x9F JUMPI PUSH3 0x3DB PUSH3 0x100 JUMP JUMPDEST SWAP5 DUP1 MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP5 PUSH3 0x3F4 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST DUP7 MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP5 PUSH3 0x411 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x20 DUP8 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP5 PUSH3 0x431 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP5 PUSH3 0x451 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP8 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP5 PUSH3 0x485 SWAP2 DUP4 ADD PUSH3 0x1EB JUMP JUMPDEST PUSH1 0xC0 DUP8 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x100 PUSH3 0x4A4 DUP2 DUP4 ADD PUSH3 0x276 JUMP JUMPDEST SWAP1 DUP8 ADD MSTORE PUSH2 0x120 PUSH3 0x4B8 DUP2 DUP4 ADD PUSH3 0x28A JUMP JUMPDEST SWAP1 DUP8 ADD MSTORE PUSH2 0x140 DUP1 DUP3 ADD MLOAD SWAP1 DUP8 ADD MSTORE PUSH2 0x160 DUP1 DUP3 ADD MLOAD SWAP1 DUP8 ADD MSTORE PUSH2 0x180 DUP1 DUP3 ADD MLOAD DUP5 DUP2 GT PUSH3 0x9F JUMPI DUP6 PUSH3 0x4EF SWAP2 DUP5 ADD PUSH3 0x2B1 JUMP JUMPDEST SWAP1 DUP8 ADD MSTORE PUSH2 0x1A0 SWAP1 DUP2 DUP2 ADD MLOAD SWAP4 DUP5 GT PUSH3 0x9F JUMPI PUSH3 0x1D0 SWAP5 PUSH1 0x20 SWAP5 PUSH3 0x517 SWAP3 ADD PUSH3 0x321 JUMP JUMPDEST SWAP1 DUP7 ADD MSTORE ADD PUSH3 0x29C JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH3 0x554 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH3 0x53E 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 0x532 JUMP JUMPDEST DUP2 DUP2 LT PUSH3 0x56B JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x586 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH3 0x5A9 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x5D0 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x60E JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0xB PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x64C JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x5 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x68A JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x6C8 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x16 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x706 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x17 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x744 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x18 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x782 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x15 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH3 0x7C2 JUMPI POP POP POP JUMP JUMPDEST PUSH3 0x151 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x5B7 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x55F JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x81C DUP2 PUSH3 0x816 PUSH1 0x4 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x5C2 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x85B JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x84F JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x4 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x838 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x8CA JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x8B0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x4 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x8A5 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x88F JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x90F DUP2 PUSH3 0x909 PUSH1 0xB SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x600 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x94E JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x942 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0xB SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x92B JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x9BD JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x9A3 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0xB SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x998 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x982 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xA02 DUP2 PUSH3 0x9FC PUSH1 0x16 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x6BA JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xA41 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0xA35 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x16 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xA1E JUMP JUMPDEST PUSH1 0x16 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0xAB0 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0xA96 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x16 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xA8B JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xA75 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xAF5 DUP2 PUSH3 0xAEF PUSH1 0x17 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x6F8 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xB34 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0xB28 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x17 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xB11 JUMP JUMPDEST PUSH1 0x17 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0xBA3 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0xB89 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x17 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xB7E JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xB68 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xBE8 DUP2 PUSH3 0xBE2 PUSH1 0x18 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x736 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xC27 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0xC1B JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x18 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xC04 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0xC96 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0xC7C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x18 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xC71 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xC5B JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xCDB DUP2 PUSH3 0xCD4 DUP5 SLOAD PUSH3 0x522 JUMP JUMPDEST DUP5 PUSH3 0x7B2 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xD1A JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xD0E JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xCF8 JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH3 0xD31 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH3 0xD71 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH3 0xD57 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xD4D JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xD36 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 GT PUSH3 0xD6 JUMPI PUSH1 0x1B SLOAD DUP3 PUSH1 0x1B SSTORE DUP1 DUP4 LT PUSH3 0xE12 JUMPI JUMPDEST POP PUSH1 0x1B PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD SWAP1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9103 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH3 0xDF3 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH3 0xE05 DUP4 SWAP5 MLOAD DUP7 PUSH3 0xCAF JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH3 0xDE4 JUMP JUMPDEST PUSH1 0x1B PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9103 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 DUP3 ADD SWAP2 DUP5 ADD JUMPDEST DUP3 DUP2 LT PUSH3 0xE40 JUMPI POP POP PUSH3 0xDC4 JUMP JUMPDEST DUP1 PUSH3 0xE4F PUSH1 0x1 SWAP3 SLOAD PUSH3 0x522 JUMP JUMPDEST DUP1 PUSH3 0xE5E JUMPI JUMPDEST POP ADD PUSH3 0xE30 JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH3 0xE78 JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH3 0xE56 JUMP JUMPDEST DUP4 PUSH3 0xE9D SWAP3 PUSH3 0xE8E DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH3 0x55F JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH3 0xE71 JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xEDB DUP2 PUSH3 0xED5 PUSH1 0x15 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x774 JUMP JUMPDEST PUSH1 0x20 SWAP2 DUP3 SWAP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xF9C JUMPI PUSH3 0xF7E SWAP4 DUP4 PUSH2 0x120 SWAP5 PUSH3 0x151 SWAP8 SWAP5 PUSH3 0xF29 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xF90 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x15 SSTORE JUMPDEST DUP3 ADD MLOAD PUSH3 0x9D6 JUMP JUMPDEST PUSH3 0xF38 PUSH1 0x40 DUP3 ADD MLOAD PUSH3 0xAC9 JUMP JUMPDEST PUSH3 0xF47 PUSH1 0x60 DUP3 ADD MLOAD PUSH3 0xBBC JUMP JUMPDEST PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x19 SSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0x1A SSTORE PUSH3 0xF66 PUSH1 0xC0 DUP3 ADD MLOAD PUSH3 0xDA0 JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1C SSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH1 0x1D SSTORE ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0xFF DUP1 NOT PUSH1 0x1E SLOAD AND SWAP2 ISZERO ISZERO AND OR PUSH1 0x1E SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xF0A JUMP JUMPDEST PUSH1 0x15 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP2 SWAP1 PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 SWAP3 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH3 0x101F JUMPI POP DUP5 PUSH3 0x151 SWAP8 SWAP5 PUSH3 0xF29 SWAP5 PUSH3 0xF7E SWAP9 SWAP5 PUSH2 0x120 SWAP9 PUSH1 0x1 SWAP6 LT PUSH3 0x1005 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x15 SSTORE PUSH3 0xF20 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xFF6 JUMP JUMPDEST SWAP3 SWAP4 DUP7 PUSH1 0x1 DUP2 SWAP3 DUP8 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD PUSH3 0xFCD JUMP JUMPDEST ISZERO PUSH3 0x103F JUMPI 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 PUSH32 0x417272617973206C656E677468206D69736D6174636800000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH3 0x108C JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F20696E697469616C20706172746E65727300000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x10E1 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH3 0xD8A 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 PUSH3 0x1112 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH3 0x10E7 JUMP JUMPDEST ISZERO PUSH3 0x1120 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 PUSH3 0x115C 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 PUSH1 0x40 DUP2 ADD SWAP1 PUSH1 0x40 DUP2 MSTORE DUP3 MLOAD DUP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD SWAP2 PUSH1 0x20 DUP1 SWAP5 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH3 0x11F0 JUMPI POP POP POP DUP3 DUP2 DUP4 SUB SWAP2 ADD MSTORE DUP2 DUP1 DUP5 MLOAD SWAP3 DUP4 DUP2 MSTORE ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH3 0x11DB JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH3 0x11CC JUMP JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP6 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 PUSH1 0x1 ADD PUSH3 0x11AB JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH3 0x1229 DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH3 0x153 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP9 SWAP7 SWAP6 SWAP3 PUSH3 0x1282 SWAP1 PUSH3 0x1273 PUSH3 0x1262 SWAP11 SWAP15 SWAP14 SWAP13 SWAP11 PUSH3 0x1291 SWAP6 SWAP8 SWAP5 DUP14 PUSH2 0x160 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH3 0x120E JUMP JUMPDEST PUSH1 0x20 SWAP8 DUP14 DUP10 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH3 0x120E JUMP JUMPDEST SWAP1 DUP12 DUP3 SUB PUSH1 0x40 DUP14 ADD MSTORE PUSH3 0x120E JUMP JUMPDEST SWAP1 DUP10 DUP3 SUB PUSH1 0x60 DUP12 ADD MSTORE PUSH3 0x120E JUMP JUMPDEST SWAP3 PUSH1 0x80 DUP9 ADD MSTORE PUSH1 0xA0 DUP8 ADD MSTORE DUP6 DUP3 SUB PUSH1 0xC0 DUP8 ADD MSTORE DUP3 MLOAD SWAP1 DUP2 DUP4 MSTORE DUP1 DUP4 ADD SWAP3 DUP2 DUP1 DUP5 PUSH1 0x5 SHL DUP4 ADD ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH3 0x12FC JUMPI POP POP POP POP POP PUSH1 0xE0 DUP6 ADD SWAP8 SWAP1 SWAP8 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 DUP6 ADD MSTORE SWAP2 DUP2 AND PUSH2 0x120 DUP5 ADD MSTORE SWAP3 SWAP1 SWAP3 AND PUSH2 0x140 SWAP1 SWAP2 ADD MSTORE SWAP2 POP JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH3 0x131C PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP11 MLOAD PUSH3 0x120E JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH3 0x12BE JUMP JUMPDEST SWAP1 SWAP2 PUSH3 0x137F PUSH2 0x160 DUP4 ADD MLOAD PUSH3 0x134E PUSH2 0x100 DUP6 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x120 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x140 DUP7 ADD MLOAD DUP7 MLOAD PUSH1 0x20 DUP9 ADD MLOAD SWAP5 SWAP1 SWAP4 DUP5 SWAP4 SWAP2 ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND PUSH3 0x1591 JUMP JUMPDEST PUSH3 0x138F PUSH1 0xFF NOT PUSH1 0x26 SLOAD AND PUSH1 0x26 SSTORE JUMP JUMPDEST PUSH3 0x1400 DUP3 MLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 DUP8 ADD MLOAD PUSH1 0xA0 DUP9 ADD MLOAD SWAP2 PUSH1 0xC0 DUP10 ADD MLOAD SWAP4 PUSH1 0xE0 DUP11 ADD MLOAD SWAP6 PUSH3 0x13C5 PUSH3 0x121 JUMP JUMPDEST SWAP8 DUP9 MSTORE PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE TIMESTAMP PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0x1 PUSH2 0x120 DUP3 ADD MSTORE PUSH3 0xEB0 JUMP JUMPDEST PUSH3 0x140F PUSH2 0x160 DUP4 ADD MLOAD PUSH1 0x25 SSTORE JUMP JUMPDEST PUSH2 0x180 DUP3 ADD SWAP3 DUP4 MLOAD MLOAD SWAP2 PUSH3 0x142D PUSH2 0x1A0 DUP6 ADD SWAP4 DUP5 MLOAD MLOAD EQ PUSH3 0x1037 JUMP JUMPDEST PUSH3 0x143C DUP6 MLOAD MLOAD ISZERO ISZERO PUSH3 0x1084 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x14D9 JUMPI SWAP1 PUSH3 0x1489 PUSH3 0x1481 PUSH3 0x1475 PUSH3 0x1468 DUP5 PUSH3 0x14D3 SWAP7 PUSH3 0x10FD 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 PUSH3 0x1118 JUMP JUMPDEST PUSH3 0x14A3 PUSH3 0x149A DUP3 DUP8 MLOAD PUSH3 0x10FD JUMP JUMPDEST MLOAD ISZERO ISZERO PUSH3 0x1154 JUMP JUMPDEST PUSH3 0x14CD PUSH3 0x14B8 PUSH3 0x1468 DUP4 DUP11 MLOAD PUSH3 0x10FD JUMP JUMPDEST PUSH3 0x14C5 DUP4 DUP9 MLOAD PUSH3 0x10FD JUMP JUMPDEST MLOAD SWAP1 PUSH3 0x1994 JUMP JUMPDEST PUSH3 0x10D1 JUMP JUMPDEST PUSH3 0x143F JUMP JUMPDEST POP POP SWAP4 PUSH32 0x5CC2D55798CEE8F02A1864E506FF754519B7FBE25D3BD5258441C00B83B7BB04 SWAP4 SWAP3 PUSH32 0xF9E7AA11BCDCBB8AC33B5DBA92FCA799EF091E54C29270822065501D8EDEA1A5 SWAP2 PUSH3 0x1534 PUSH1 0x1 PUSH1 0xFF NOT PUSH1 0x26 SLOAD AND OR PUSH1 0x26 SSTORE JUMP JUMPDEST MLOAD SWAP1 MLOAD SWAP1 PUSH3 0x1549 PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 PUSH3 0x118F JUMP JUMPDEST SUB SWAP1 LOG1 PUSH3 0x158C DUP3 MLOAD SWAP2 PUSH1 0x20 DUP5 ADD MLOAD SWAP1 PUSH1 0x40 DUP6 ADD MLOAD SWAP4 PUSH1 0x60 DUP7 ADD MLOAD SWAP6 PUSH1 0x80 DUP2 ADD MLOAD SWAP1 PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xE0 PUSH1 0xC0 DUP4 ADD MLOAD SWAP3 ADD MLOAD SWAP3 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 ADDRESS SWAP9 ADDRESS SWAP8 DUP13 PUSH3 0x1235 JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST SWAP7 SWAP9 SWAP8 SWAP6 SWAP1 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP5 PUSH1 0x40 MLOAD SWAP1 PUSH3 0x15AB DUP3 PUSH3 0xBA JUMP JUMPDEST PUSH1 0x1 DUP1 DUP4 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP5 ADD MSTORE DUP12 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x15E4 DUP3 PUSH3 0x15DE PUSH1 0x3 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x578 JUMP JUMPDEST PUSH1 0x20 SWAP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x16C5 JUMPI SWAP5 PUSH3 0x16A0 SWAP8 SWAP5 PUSH3 0x1640 PUSH3 0x151 SWAP15 SWAP16 SWAP6 DUP6 DUP1 PUSH3 0x16B3 SWAP16 SWAP15 SWAP14 SWAP12 SWAP8 PUSH3 0x168E SWAP8 PUSH3 0x1694 SWAP11 PUSH3 0x169A SWAP14 PUSH1 0x0 SWAP5 PUSH3 0x16B9 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x3 SSTORE PUSH3 0x7F0 JUMP JUMPDEST PUSH3 0x164B DUP3 PUSH3 0x1A62 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH3 0x165A DUP2 PUSH3 0x1B72 JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP4 ADD KECCAK256 PUSH1 0xE0 MSTORE PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH3 0x1681 PUSH3 0x1CD7 JUMP JUMPDEST PUSH1 0x80 MSTORE ADDRESS PUSH1 0xC0 MSTORE PUSH3 0x8E3 JUMP JUMPDEST PUSH3 0x1779 JUMP JUMPDEST PUSH3 0x17C7 JUMP JUMPDEST PUSH3 0x184B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 MSTORE PUSH3 0x18D3 JUMP JUMPDEST PUSH3 0x1884 JUMP JUMPDEST ADD MLOAD SWAP3 POP CODESIZE DUP1 PUSH3 0x1628 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE SWAP3 SWAP13 SWAP1 SWAP3 SWAP1 PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B SWAP2 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP6 AND DUP2 LT PUSH3 0x1762 JUMPI POP SWAP5 PUSH3 0x1640 PUSH3 0x151 SWAP15 SWAP16 PUSH3 0x1694 SWAP7 DUP7 PUSH3 0x16B3 SWAP16 SWAP15 SWAP14 SWAP12 SWAP8 SWAP7 PUSH3 0x169A SWAP12 SWAP7 PUSH3 0x16A0 SWAP15 SWAP12 PUSH3 0x168E SWAP10 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0x1748 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x3 SSTORE PUSH3 0x7F0 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x1739 JUMP JUMPDEST DUP2 DUP4 ADD MLOAD DUP5 SSTORE SWAP3 DUP6 ADD SWAP3 PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 ADD PUSH3 0x16F4 JUMP JUMPDEST PUSH1 0x10 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 0x10 SSTORE JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH3 0x1832 JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 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 0x10 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 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE JUMP JUMPDEST PUSH1 0x13 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 0x13 SSTORE JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH3 0x1975 JUMPI PUSH1 0x12 SLOAD PUSH1 0x0 SWAP2 SWAP1 DUP1 PUSH3 0x1943 JUMPI POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9123 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 POP PUSH1 0x0 JUMPDEST PUSH3 0x191D PUSH3 0x190E DUP4 PUSH3 0x1D43 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH3 0x1F0F JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 DUP2 ADD PUSH3 0x158C JUMP JUMPDEST PUSH1 0x0 NOT SWAP1 DUP1 DUP3 DUP2 ADD GT PUSH3 0x10E1 JUMPI PUSH1 0x20 DUP5 PUSH1 0x12 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9123 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP7 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR PUSH3 0x18FF JUMP 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 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH3 0x1A49 JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH3 0x10E1 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 PUSH3 0x1A1F JUMPI PUSH3 0x151 SWAP3 SWAP4 POP PUSH3 0x21A1 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 SUB 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 SWAP1 DUP2 MLOAD PUSH1 0x20 DUP1 DUP3 LT PUSH1 0x0 EQ PUSH3 0x1A80 JUMPI POP POP SWAP1 PUSH3 0x1D0 SWAP1 PUSH3 0x1C82 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x1AA7 DUP3 PUSH3 0x1AA1 PUSH1 0x5 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x63E JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x1AE7 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x1ADB JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x5 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x1AC1 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x1B59 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x1B3F JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x5 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 0x1B31 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x1B1B JUMP JUMPDEST SWAP1 DUP2 MLOAD PUSH1 0x20 DUP1 DUP3 LT PUSH1 0x0 EQ PUSH3 0x1B90 JUMPI POP POP SWAP1 PUSH3 0x1D0 SWAP1 PUSH3 0x1C82 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x1BB7 DUP3 PUSH3 0x1BB1 PUSH1 0x6 SLOAD PUSH3 0x522 JUMP JUMPDEST PUSH3 0x67C JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x1BF7 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x1BEB JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x6 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x1BD1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x1C69 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x1C4F 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 0x1C41 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x1C2B JUMP JUMPDEST PUSH1 0x1F DUP2 MLOAD GT PUSH3 0x1CB0 JUMPI PUSH1 0x20 DUP2 MLOAD SWAP2 ADD MLOAD PUSH1 0x20 DUP3 LT PUSH3 0x1CA0 JUMPI OR SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT DUP3 PUSH1 0x20 SUB PUSH1 0x3 SHL SHL AND OR SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH3 0x1A45 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH3 0x120E JUMP JUMPDEST PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD 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 PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x1D58 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 0x10E1 JUMPI JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH3 0x1D9A JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP2 DUP2 DUP4 DUP2 ADD GT PUSH3 0x10E1 JUMPI PUSH1 0xA SWAP1 MSTORE ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x90E3 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH3 0x1DD8 JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH3 0x10E1 JUMPI PUSH1 0x20 SWAP2 DUP2 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 LT ISZERO PUSH3 0xD6 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH3 0x1112 JUMPI PUSH1 0x12 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 0x90C3 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 LT ISZERO PUSH3 0xD6 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH3 0x1112 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 0x90E3 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST SWAP1 DUP2 SLOAD PUSH9 0x10000000000000000 DUP2 LT ISZERO PUSH3 0xD6 JUMPI PUSH1 0x1 DUP2 ADD DUP1 DUP5 SSTORE DUP2 LT ISZERO PUSH3 0x1112 JUMPI PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP3 DUP4 SWAP1 KECCAK256 DUP3 MLOAD SWAP3 SWAP1 SWAP4 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP2 ADD SSTORE JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH3 0x1FDC JUMPI PUSH3 0x1F2B PUSH3 0x1F44 SWAP2 PUSH3 0x1D77 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x90C3 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 0x1FCA JUMPI DUP7 SWAP3 SUB PUSH3 0x1F8C JUMPI PUSH3 0x1F85 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 0x1FC4 SWAP1 PUSH3 0x1FAF PUSH3 0x1FA1 PUSH3 0x142 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 0x1DF5 JUMP JUMPDEST PUSH3 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH3 0x2005 SWAP1 PUSH3 0x1FF0 PUSH3 0x1FA1 PUSH3 0x142 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x1DF5 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH3 0x20AB JUMPI PUSH3 0x2027 PUSH3 0x2040 SWAP2 PUSH3 0x1D77 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x90E3 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 0x1FCA JUMPI DUP7 SWAP3 SUB PUSH3 0x2081 JUMPI PUSH3 0x1F85 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST POP POP PUSH3 0x1FC4 SWAP1 PUSH3 0x2096 PUSH3 0x1FA1 PUSH3 0x142 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x1E57 JUMP JUMPDEST POP PUSH3 0x2005 SWAP1 PUSH3 0x20BF PUSH3 0x1FA1 PUSH3 0x142 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x1E57 JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH3 0x2177 JUMPI PUSH3 0x20EF PUSH3 0x20FC SWAP2 PUSH3 0x1D77 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 PUSH3 0x1FCA JUMPI DUP8 SWAP4 SUB PUSH3 0x213E JUMPI POP PUSH3 0x1F85 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 PUSH3 0x1FC4 SWAP2 PUSH3 0x2162 PUSH3 0x2154 PUSH3 0x142 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 PUSH3 0x1EB9 JUMP JUMPDEST POP SWAP1 PUSH3 0x2005 SWAP2 PUSH3 0x218C PUSH3 0x2154 PUSH3 0x142 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH3 0x1EB9 JUMP JUMPDEST SWAP1 PUSH3 0x21AD DUP2 PUSH3 0x1D43 JUMP JUMPDEST NUMBER PUSH6 0xFFFFFFFFFFFF AND SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP2 DUP3 DUP1 PUSH3 0x21CC PUSH3 0x1D87 JUMP JUMPDEST AND SWAP2 AND ADD DUP3 DUP2 GT PUSH3 0x10E1 JUMPI PUSH3 0x21E4 SWAP1 DUP6 PUSH3 0x200B JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH3 0x2345 JUMPI JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH32 0x5EFF886EA0CE6CA488A3D6E336D6C0F75F46D19B42C06CE5EE98E42C96D256C7 SLOAD PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 SWAP1 SWAP3 KECCAK256 SLOAD DUP2 AND SWAP5 SWAP2 AND SWAP1 DUP5 DUP3 EQ ISZERO DUP1 PUSH3 0x233B JUMPI JUMPDEST PUSH3 0x224A JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH3 0x22CF JUMPI JUMPDEST POP POP DUP3 PUSH3 0x2262 JUMPI JUMPDEST DUP1 DUP1 PUSH3 0x2243 JUMP JUMPDEST PUSH3 0x22C3 PUSH3 0x22AA PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9143 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP4 PUSH3 0x22A3 PUSH3 0x229C DUP8 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH3 0x1D43 JUMP JUMPDEST SWAP1 PUSH3 0x237D 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 DUP1 PUSH3 0x225A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 PUSH3 0x22F3 DUP6 PUSH3 0x1D43 JUMP JUMPDEST DUP5 DUP1 PUSH3 0x2300 DUP6 PUSH3 0x1DC5 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP5 DUP3 GT PUSH3 0x10E1 JUMPI PUSH3 0x22AA DUP6 SWAP3 PUSH3 0x2330 SWAP3 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x9143 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP6 PUSH3 0x20D4 JUMP JUMPDEST SUB SWAP1 LOG2 CODESIZE DUP1 PUSH3 0x2251 JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH3 0x223D JUMP JUMPDEST PUSH3 0x2350 DUP5 PUSH3 0x1D43 JUMP JUMPDEST DUP4 DUP1 PUSH3 0x235C PUSH3 0x1D87 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB DUP4 DUP2 GT PUSH3 0x10E1 JUMPI PUSH3 0x2375 SWAP1 DUP7 PUSH3 0x200B JUMP JUMPDEST POP POP PUSH3 0x21FA JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH3 0x2394 DUP6 PUSH3 0x1DC5 JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH3 0x10E1 JUMPI PUSH3 0x23B5 SWAP2 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH3 0x20D4 JUMP JUMPDEST SWAP1 SWAP2 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 0x3877 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0x7E637E EQ PUSH2 0x582 JUMPI DUP1 PUSH4 0x13CF08B EQ PUSH2 0x57D JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x578 JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x573 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x56E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x564 JUMPI DUP1 PUSH4 0x965211E EQ PUSH2 0x55F JUMPI DUP1 PUSH4 0xC0512E9 EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0xEB12596 EQ PUSH2 0x555 JUMPI DUP1 PUSH4 0x108B4E07 EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x54B JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x546 JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x53C JUMPI DUP1 PUSH4 0x194A94FC EQ PUSH2 0x537 JUMPI DUP1 PUSH4 0x1B470FAF EQ PUSH2 0x532 JUMPI DUP1 PUSH4 0x1C0F4D8D EQ PUSH2 0x52D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x528 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x523 JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x519 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0x35C4364F EQ PUSH2 0x50F JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x505 JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x4FB JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x4F6 JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x4FA76EC9 EQ PUSH2 0x4EC JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x4E7 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x4E2 JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x4DD JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x4D8 JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4BA JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x4B5 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x4AB JUMPI DUP1 PUSH4 0x7E63B733 EQ PUSH2 0x4A6 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x4A1 JUMPI DUP1 PUSH4 0x82308158 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x492 JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x48D JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x488 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x483 JUMPI DUP1 PUSH4 0x96E973FB EQ PUSH2 0x47E JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x479 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x474 JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x46F JUMPI DUP1 PUSH4 0x9BE65B40 EQ PUSH2 0x46A JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x45B JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x456 JUMPI DUP1 PUSH4 0xAB273016 EQ PUSH2 0x451 JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xB4931936 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x442 JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x43D JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC0E58A0E EQ PUSH2 0x433 JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x429 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x424 JUMPI DUP1 PUSH4 0xD1FAD4CD EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x41A JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x410 JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x406 JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x401 JUMPI DUP1 PUSH4 0xEC4A59D9 EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0xF2C26A47 EQ PUSH2 0x3E8 JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x3E3 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x3DE JUMPI PUSH4 0xFD5C4BE7 SUB PUSH2 0xE JUMPI PUSH2 0x3859 JUMP JUMPDEST PUSH2 0x3814 JUMP JUMPDEST PUSH2 0x375A JUMP JUMPDEST PUSH2 0x362A JUMP JUMPDEST PUSH2 0x3550 JUMP JUMPDEST PUSH2 0x3499 JUMP JUMPDEST PUSH2 0x3444 JUMP JUMPDEST PUSH2 0x3426 JUMP JUMPDEST PUSH2 0x33C4 JUMP JUMPDEST PUSH2 0x331D JUMP JUMPDEST PUSH2 0x32CF JUMP JUMPDEST PUSH2 0x326C JUMP JUMPDEST PUSH2 0x320E JUMP JUMPDEST PUSH2 0x31E5 JUMP JUMPDEST PUSH2 0x30B4 JUMP JUMPDEST PUSH2 0x3098 JUMP JUMPDEST PUSH2 0x2FCB JUMP JUMPDEST PUSH2 0x2F5F JUMP JUMPDEST PUSH2 0x2E93 JUMP JUMPDEST PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x2DD5 JUMP JUMPDEST PUSH2 0x2DB7 JUMP JUMPDEST PUSH2 0x2D90 JUMP JUMPDEST PUSH2 0x2D59 JUMP JUMPDEST PUSH2 0x2C2C JUMP JUMPDEST PUSH2 0x2C10 JUMP JUMPDEST PUSH2 0x2BDB JUMP JUMPDEST PUSH2 0x2B67 JUMP JUMPDEST PUSH2 0x2B44 JUMP JUMPDEST PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x2AD4 JUMP JUMPDEST PUSH2 0x29F1 JUMP JUMPDEST PUSH2 0x29D5 JUMP JUMPDEST PUSH2 0x2998 JUMP JUMPDEST PUSH2 0x28F1 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST PUSH2 0x27B6 JUMP JUMPDEST PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x261D JUMP JUMPDEST PUSH2 0x2577 JUMP JUMPDEST PUSH2 0x2502 JUMP JUMPDEST PUSH2 0x23D6 JUMP JUMPDEST PUSH2 0x234E JUMP JUMPDEST PUSH2 0x22F9 JUMP JUMPDEST PUSH2 0x2288 JUMP JUMPDEST PUSH2 0x224B JUMP JUMPDEST PUSH2 0x2200 JUMP JUMPDEST PUSH2 0x21E2 JUMP JUMPDEST PUSH2 0x2173 JUMP JUMPDEST PUSH2 0x214D JUMP JUMPDEST PUSH2 0x20C5 JUMP JUMPDEST PUSH2 0x2059 JUMP JUMPDEST PUSH2 0x2009 JUMP JUMPDEST PUSH2 0x1FA7 JUMP JUMPDEST PUSH2 0x1F5A JUMP JUMPDEST PUSH2 0x1F3C JUMP JUMPDEST PUSH2 0x1EDE JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x1DC7 JUMP JUMPDEST PUSH2 0x1D9A JUMP JUMPDEST PUSH2 0x1C7C JUMP JUMPDEST PUSH2 0x1C56 JUMP JUMPDEST PUSH2 0x1C0C JUMP JUMPDEST PUSH2 0x1BF0 JUMP JUMPDEST PUSH2 0x1BB5 JUMP JUMPDEST PUSH2 0x1B7E JUMP JUMPDEST PUSH2 0x1A29 JUMP JUMPDEST PUSH2 0x1970 JUMP JUMPDEST PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x1671 JUMP JUMPDEST PUSH2 0x15E8 JUMP JUMPDEST PUSH2 0x15CA JUMP JUMPDEST PUSH2 0x1380 JUMP JUMPDEST PUSH2 0x1221 JUMP JUMPDEST PUSH2 0x11ED JUMP JUMPDEST PUSH2 0x106C JUMP JUMPDEST PUSH2 0xE75 JUMP JUMPDEST PUSH2 0xBC5 JUMP JUMPDEST PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0xAD4 JUMP JUMPDEST PUSH2 0x9DE JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH2 0x8F7 JUMP JUMPDEST PUSH2 0x87E JUMP JUMPDEST PUSH2 0x7EA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD DUP1 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x5 DUP3 ADD SWAP2 PUSH2 0x5E2 DUP4 SLOAD SWAP2 PUSH2 0x5C1 PUSH1 0xFF DUP5 AND ISZERO PUSH2 0x5E15 JUMP JUMPDEST PUSH2 0x5D1 PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x629D JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SLOAD SWAP2 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0xFF NOT AND OR SWAP1 SSTORE PUSH2 0x654D JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x623 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x60D 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 0x602 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 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 0x656 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 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 0x656 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH1 0x0 DUP3 SLOAD SWAP3 PUSH2 0x718 DUP5 PUSH2 0x5F3 JUMP JUMPDEST SWAP1 DUP2 DUP5 MSTORE PUSH1 0x1 SWAP5 DUP6 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x787 JUMPI POP PUSH1 0x1 EQ PUSH2 0x744 JUMPI JUMPDEST POP POP PUSH2 0x742 SWAP3 POP SUB DUP4 PUSH2 0x6E3 JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 DUP2 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP2 DUP4 LT PUSH2 0x76F JUMPI POP POP PUSH2 0x742 SWAP4 POP DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x734 JUMP JUMPDEST DUP6 SLOAD DUP9 DUP5 ADD DUP6 ADD MSTORE SWAP5 DUP6 ADD SWAP5 DUP8 SWAP5 POP SWAP2 DUP4 ADD SWAP2 PUSH2 0x757 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x742 SWAP5 POP PUSH1 0x20 SWAP3 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x734 JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x7D6 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 0x7B5 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH2 0x859 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x817 DUP2 PUSH2 0x704 JUMP JUMPDEST SWAP1 PUSH1 0x2 DUP2 ADD SLOAD SWAP1 PUSH1 0x3 DUP2 ADD SLOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x4 DUP3 ADD SLOAD AND PUSH1 0xFF PUSH1 0x6 DUP4 ADD SLOAD AND SWAP1 PUSH1 0x8 PUSH1 0x7 DUP5 ADD SLOAD SWAP4 ADD SLOAD SWAP4 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP8 PUSH1 0xE0 DUP10 MSTORE PUSH1 0xE0 DUP10 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP7 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x5EE JUMPI PUSH1 0x20 SWAP1 PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x8DB JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x8CA JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x8BF JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x8B8 JUMP JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x10 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x93A PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x9AB JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x974 PUSH2 0x52C0 JUMP JUMPDEST AND PUSH2 0x98F PUSH2 0x981 DUP4 PUSH2 0x50E0 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x54C4 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 STOP 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 SWAP1 PUSH1 0x20 PUSH2 0x9DB SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0xB SLOAD PUSH2 0xA01 DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xA96 JUMPI POP PUSH1 0x1 EQ PUSH2 0xA3B JUMPI JUMPDEST PUSH2 0xA37 DUP6 PUSH2 0xA2B DUP2 DUP8 SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x9CA JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0xB DUP4 MSTORE PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 JUMPDEST DUP3 DUP5 LT PUSH2 0xA7E JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xA2B DUP3 PUSH2 0xA37 PUSH2 0xA1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xA63 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xA37 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xA2B SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xA1B JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0xAF1 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD CALLER ISZERO PUSH2 0xB89 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0xB70 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 SWAP2 PUSH2 0xB38 SWAP2 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 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN 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 CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xFF PUSH1 0x26 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x22 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x16 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xBF3 DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xC11 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x16 PUSH1 0x0 MSTORE PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xC52 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xC40 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xC97 DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xCB5 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x17 PUSH1 0x0 MSTORE PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xCF6 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xCE4 JUMP JUMPDEST PUSH1 0x18 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xD1E DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xD3C JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x18 PUSH1 0x0 MSTORE PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xD7D JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xD6B JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0xDA6 DUP4 PUSH2 0x5F3 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0xE08 JUMPI POP PUSH1 0x1 EQ PUSH2 0xDC8 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0xDF4 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0xDC2 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0xDDD JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0xDC2 JUMP JUMPDEST SWAP6 SWAP4 SWAP1 SWAP2 SWAP3 PUSH2 0x9DB SWAP9 SWAP8 SWAP6 SWAP4 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND DUP9 MSTORE PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE AND PUSH1 0x60 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x100 SWAP1 DUP2 PUSH1 0xE0 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP1 PUSH2 0xA37 PUSH1 0x8 DUP4 DUP4 SLOAD AND SWAP3 PUSH1 0x1 DUP2 ADD SLOAD SWAP5 PUSH1 0x2 DUP3 ADD SLOAD SWAP1 PUSH1 0x3 DUP4 ADD SLOAD AND PUSH1 0xFF PUSH1 0x5 DUP5 ADD SLOAD AND SWAP1 PUSH1 0x6 DUP5 ADD SLOAD SWAP3 PUSH2 0xEE9 PUSH1 0x7 DUP7 ADD SLOAD SWAP6 PUSH2 0xEE2 PUSH1 0x40 MLOAD DUP1 SWAP10 DUP2 SWAP4 ADD PUSH2 0xD95 JUMP JUMPDEST SUB DUP8 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP10 PUSH2 0xE2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x120 DUP3 ADD DUP3 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x742 DUP3 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xF50 DUP4 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0xF5E PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xF88 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0xF96 DUP2 PUSH2 0xAC3 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xF7A JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xFB8 DUP4 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0xFC6 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xFF0 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xFE2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x1026 DUP3 PUSH2 0xFFF JUMP JUMPDEST SWAP2 PUSH2 0x1034 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6E3 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x5EE 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 0x5EE JUMPI DUP2 PUSH1 0x20 PUSH2 0x9DB SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x101A JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x109D SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x10B6 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x11DA PUSH2 0x10FB PUSH32 0x8FD808CDCD18F44B7F33C61FB97B83154C1D653EF4A9A2D236B290644EDD6C83 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH2 0x1108 DUP4 MLOAD DUP6 MLOAD EQ PUSH2 0x5906 JUMP JUMPDEST PUSH2 0x1114 DUP4 MLOAD ISZERO ISZERO PUSH2 0x594B JUMP JUMPDEST PUSH2 0x111F TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x113B SWAP1 JUMPDEST SLOAD ISZERO ISZERO PUSH2 0x59C5 JUMP JUMPDEST PUSH2 0x11CC PUSH1 0x23 SLOAD SWAP7 PUSH2 0x1153 PUSH2 0x114E DUP10 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x23 SSTORE JUMP JUMPDEST PUSH2 0x115B PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x1174 PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST PUSH1 0x64 SWAP1 DIV SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x117D PUSH2 0xEF5 JUMP JUMPDEST DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE CALLER PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x0 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x11C7 DUP9 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5D20 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 CALLER DUP9 DUP7 PUSH2 0x5DD8 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x123D PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x1248 PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x1267 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C 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 SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0x12B6 DUP3 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0x12C4 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x5EE JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x12F2 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI DUP7 SWAP2 PUSH2 0x1313 DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0x1051 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0x12E2 JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x5EE JUMPI DUP3 PUSH2 0x134A SWAP2 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI DUP4 PUSH2 0x1362 SWAP2 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0x1379 SWAP2 PUSH1 0x4 ADD PUSH2 0x129E JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH2 0x138E CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST PUSH2 0x139C DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x3930 JUMP JUMPDEST SWAP3 PUSH2 0x13A6 DUP5 PUSH2 0x41A2 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH2 0x13C4 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 0x1579 JUMPI PUSH1 0x0 SWAP7 PUSH2 0x15AB 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 0x1426 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x6B77 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x157E JUMPI JUMPDEST POP POP PUSH2 0x144F DUP8 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x13 SLOAD PUSH2 0x1465 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0x1491 DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x6BBD JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH2 0x14B5 SWAP3 PUSH2 0x14B0 SWAP3 PUSH2 0x1560 JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x3B2E JUMP JUMPDEST PUSH2 0x5113 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0x154F JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0x153E DUP5 PUSH2 0x1520 PUSH2 0xA37 SWAP7 PUSH1 0x1 PUSH2 0x1506 DUP9 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x156D PUSH2 0x1573 SWAP3 PUSH2 0x643 JUMP JUMPDEST DUP1 PUSH2 0x8EC JUMP JUMPDEST CODESIZE PUSH2 0x14A9 JUMP JUMPDEST PUSH2 0x43A8 JUMP JUMPDEST PUSH2 0x159D SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x15A4 JUMPI JUMPDEST PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x4399 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x1439 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x158B JUMP JUMPDEST PUSH2 0x15C3 SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0x13EF JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x165C PUSH2 0x163C PUSH32 0x5C84C0144A4E16E610C6C44C3571A58AF67CE17B61280F57E6FEEB2C363EAA60 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1648 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x168E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x64 CALLDATALOAD PUSH1 0x24 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x11DA PUSH2 0x16DB PUSH32 0xF80F5CE91F7D79D29FD2BD635816739C0FAE47505F5A30A820E49ACE80884165 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH2 0x16EF PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO ISZERO PUSH2 0x5FE5 JUMP JUMPDEST PUSH2 0x16FA DUP5 ISZERO ISZERO PUSH2 0x642C JUMP JUMPDEST PUSH2 0x1708 PUSH1 0x28 SLOAD DUP6 GT ISZERO PUSH2 0x6478 JUMP JUMPDEST PUSH2 0x1713 TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x172B SWAP1 PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x17BD PUSH1 0x24 SLOAD SWAP7 PUSH2 0x1743 PUSH2 0x173E DUP10 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x24 SSTORE JUMP JUMPDEST PUSH2 0x174B PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x175D PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST SWAP1 PUSH2 0x1766 PUSH2 0xEF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE SWAP3 PUSH1 0x20 DUP5 ADD DUP10 SWAP1 MSTORE PUSH1 0x40 DUP5 ADD MSTORE CALLER PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x0 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x17B8 DUP9 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x64C4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 CALLER DUP9 DUP7 PUSH2 0x6516 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x17F4 DUP2 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 ADD SWAP3 PUSH2 0x1813 PUSH2 0x180E PUSH2 0x180A DUP7 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x5E15 JUMP JUMPDEST PUSH2 0x1822 PUSH1 0x2 DUP4 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x183E SWAP1 JUMPDEST SLOAD ISZERO ISZERO PUSH2 0x5EA0 JUMP JUMPDEST PUSH1 0x0 SWAP1 PUSH1 0x4 DUP4 ADD SWAP2 DUP3 SLOAD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x18FE JUMPI POP POP PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP2 DUP2 ADD SWAP2 DUP3 MSTORE PUSH2 0x188D SWAP3 SWAP1 SWAP2 PUSH2 0x1888 SWAP1 DUP4 SWAP1 PUSH1 0x14 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP5 MSTORE DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0x5F32 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SWAP2 PUSH2 0x189E DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0xC5FB6601AC4858DBA31868A09F1646A3BFE4638F325353BB142719B81E3645A1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x18E5 JUMPI STOP JUMPDEST PUSH2 0x18F9 PUSH2 0x21 SWAP3 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x654D JUMP JUMPDEST DUP1 PUSH2 0x1916 PUSH2 0x190F PUSH2 0x192C SWAP4 DUP8 PUSH2 0x4440 JUMP JUMPDEST POP SLOAD PUSH2 0x5F3 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1931 JUMPI JUMPDEST PUSH2 0x1927 SWAP1 PUSH2 0x5EF5 JUMP JUMPDEST PUSH2 0x3E12 JUMP JUMPDEST PUSH2 0x184A JUMP JUMPDEST POP PUSH2 0x1927 PUSH2 0x1948 PUSH2 0x1942 DUP4 DUP9 PUSH2 0x4440 JUMP JUMPDEST POP PUSH2 0x704 JUMP JUMPDEST DUP1 MLOAD CALLER SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 PUSH2 0x1966 SWAP2 SWAP1 DUP2 ADD DUP10 ADD SWAP1 DUP10 ADD PUSH2 0x5EE0 JUMP JUMPDEST AND EQ ISZERO SWAP1 POP PUSH2 0x191E JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x198D DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1999 DUP2 PUSH2 0xAC3 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 0x19E3 JUMPI JUMPDEST PUSH2 0x19D7 SWAP4 POP PUSH2 0x4809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x19FF JUMPI PUSH2 0x19FA DUP4 PUSH2 0x19D7 SWAP6 SUB CALLER DUP4 PUSH2 0x491B JUMP JUMPDEST PUSH2 0x19CD 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 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A32 CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST PUSH2 0x1A40 DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x3930 JUMP JUMPDEST SWAP3 PUSH2 0x1A4A DUP5 PUSH2 0x41F4 JUMP JUMPDEST POP PUSH2 0x1A75 PUSH2 0x1A62 DUP6 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0x1B19 JUMPI JUMPDEST SWAP5 PUSH2 0x1A9B SWAP3 SWAP2 PUSH2 0xA37 SWAP7 DUP7 PUSH2 0x6C0B JUMP JUMPDEST PUSH1 0x13 SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0x1AF8 JUMPI JUMPDEST PUSH2 0x1AE9 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 DUP1 PUSH1 0x20 DUP2 ADD PUSH2 0x11DA JUMP JUMPDEST PUSH2 0x1AF3 PUSH1 0x0 PUSH1 0xD SSTORE JUMP JUMPDEST PUSH2 0x1AB7 JUMP JUMPDEST POP PUSH2 0x1B14 PUSH2 0x180A PUSH1 0xD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST PUSH2 0x1AB2 JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x1B74 JUMPI PUSH2 0x1B55 SWAP1 ADDRESS PUSH2 0x1B4B PUSH2 0x13B8 PUSH2 0x1B3E DUP5 DUP11 PUSH2 0x3E37 JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0x1B5A JUMPI PUSH2 0x3E12 JUMP JUMPDEST PUSH2 0x1B20 JUMP JUMPDEST PUSH2 0x1927 PUSH2 0x1B67 DUP3 DUP11 PUSH2 0x3E37 JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x5853 JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0x1A8B JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x5 DUP3 ADD SWAP2 PUSH2 0x1C4A DUP4 SLOAD SWAP2 PUSH2 0x5C1 PUSH1 0xFF DUP5 AND ISZERO PUSH2 0x5E15 JUMP JUMPDEST PUSH1 0xFF NOT AND OR SWAP1 SSTORE PUSH2 0x60E4 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x10 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1C99 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x1CBC PUSH1 0x24 CALLDATALOAD PUSH2 0x4568 JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x1D0E JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x1CDA SWAP3 DUP5 PUSH2 0x57F2 JUMP JUMPDEST DUP1 PUSH2 0x1CF4 JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x1D00 DUP5 SWAP3 SWAP4 PUSH2 0x4431 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 PUSH2 0x1D18 DUP7 PUSH2 0x5195 JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x1D63 JUMPI PUSH1 0x20 SWAP6 PUSH2 0x1CDA SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1D51 JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x1CCB JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1D5D SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x3994 JUMP 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 0x1D88 JUMPI JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x1DB8 PUSH1 0x4 CALLDATALOAD PUSH2 0x676F JUMP JUMPDEST PUSH2 0x1DC5 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0x1D8D JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0x1E14 PUSH1 0x24 CALLDATALOAD PUSH2 0x1DEB DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 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 0x5EE JUMPI PUSH2 0x1E2E CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST SWAP1 PUSH2 0x1E3D DUP3 DUP3 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x3930 JUMP JUMPDEST PUSH2 0x1E46 DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x1 DUP1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x1EB1 JUMPI POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1E99 JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x1E89 SWAP4 PUSH2 0x6A36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x233D98E3 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x1ED5 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 0x1D8D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x1EFE DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x25 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0xA37 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x1FC7 DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH2 0x2027 PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2033 DUP2 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2044 DUP4 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3FC2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x2078 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x5EE JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x20DE PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x20EB DUP3 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x210C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2124 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP6 PUSH2 0x2144 PUSH2 0x1E89 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x3E50 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD PUSH2 0x216D DUP2 PUSH2 0xAC3 JUMP JUMPDEST CALLER PUSH2 0x45A1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x218C PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x21AD SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x5EE JUMPI PUSH2 0x21D8 PUSH2 0x2051 SWAP4 PUSH2 0x21D0 PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3FC2 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x4458 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x221D DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH2 0x223D PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5145 JUMP JUMPDEST PUSH4 0xFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0xAC3 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND DUP1 SWAP3 SUB PUSH2 0x5EE JUMPI PUSH2 0x22B5 PUSH2 0x4111 JUMP JUMPDEST PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 PUSH1 0x10 SLOAD SWAP3 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x10 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2312 PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH1 0x20 SWAP2 PUSH2 0x2341 PUSH2 0x233A PUSH2 0x2051 SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2044 DUP4 PUSH2 0x676 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x237F SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2398 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x23B1 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x129E JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x23D0 PUSH2 0x1E89 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP3 PUSH2 0x39DC JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x23FE DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 ADD SWAP3 PUSH2 0x2414 PUSH2 0x180E PUSH2 0x180A DUP7 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2423 PUSH1 0x2 DUP4 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x243B SWAP1 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 SWAP1 PUSH1 0x4 DUP4 ADD SWAP2 DUP3 SLOAD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x24EC JUMPI POP POP PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP2 DUP2 ADD SWAP2 DUP3 MSTORE PUSH2 0x247B SWAP3 SWAP1 SWAP2 PUSH2 0x1888 SWAP1 DUP4 SWAP1 PUSH1 0x14 ADD PUSH2 0x187A JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SWAP2 PUSH2 0x248C DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x77C69D1B59F862D9677AC552A49C26BA3FE18CCC64AD8DA630A5343C306DEA61 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x24D3 JUMPI STOP JUMPDEST PUSH2 0x24E7 PUSH2 0x21 SWAP3 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x60E4 JUMP JUMPDEST DUP1 PUSH2 0x1916 PUSH2 0x190F PUSH2 0x24FD SWAP4 DUP8 PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x2447 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x251F DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB 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 SWAP3 PUSH2 0x9DB SWAP7 SWAP6 SWAP3 PUSH1 0xC0 SWAP6 SWAP3 DUP6 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP2 PUSH1 0xA0 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH2 0xA37 PUSH1 0x8 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x3 DUP6 ADD SLOAD AND SWAP4 PUSH1 0xFF PUSH1 0x5 DUP3 ADD SLOAD AND PUSH1 0x6 DUP3 ADD SLOAD SWAP1 PUSH2 0x25DD PUSH1 0x7 DUP5 ADD SLOAD SWAP4 PUSH2 0x25D6 PUSH1 0x40 MLOAD DUP1 SWAP8 DUP2 SWAP4 ADD PUSH2 0xD95 JUMP JUMPDEST SUB DUP6 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x253F JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x2609 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x25FB JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x26B8 PUSH2 0x265A PUSH32 0x0 PUSH2 0x4E4F JUMP JUMPDEST PUSH2 0xA37 PUSH2 0x2686 PUSH32 0x0 PUSH2 0x4F48 JUMP JUMPDEST PUSH2 0x26C6 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2696 DUP4 PUSH2 0x676 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 0x7AA JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x7AA 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 0x25E9 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2703 PUSH1 0x4 CALLDATALOAD PUSH2 0x4568 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x275B JUMPI JUMPDEST PUSH2 0x271E SWAP4 POP PUSH2 0x5720 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2733 JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x2740 PUSH1 0x20 SWAP4 PUSH2 0x4431 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x2766 DUP2 PUSH2 0x5195 JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x271E SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x27A4 JUMPI POP SWAP2 PUSH2 0x2714 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x27B0 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x2714 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x27D2 PUSH2 0x1FE9 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x27E0 DUP4 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x180A PUSH2 0x2805 PUSH2 0x2892 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x288C 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 0x2884 DUP2 PUSH2 0x691 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x4D15 JUMP JUMPDEST DUP7 PUSH2 0x5002 JUMP JUMPDEST PUSH2 0x28AD JUMPI SWAP1 PUSH2 0x1E89 SWAP2 PUSH2 0xA37 SWAP4 PUSH2 0x28A7 PUSH2 0x388B JUMP JUMPDEST SWAP3 PUSH2 0x3F46 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x2914 DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xA96 JUMPI POP PUSH1 0x1 EQ PUSH2 0x293D JUMPI PUSH2 0xA37 DUP6 PUSH2 0xA2B DUP2 DUP8 SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0x2980 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xA2B DUP3 PUSH2 0xA37 PUSH2 0xA1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2965 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x29B5 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x27 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2A0E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2A65 SWAP2 PUSH2 0x2A33 PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0x1579 JUMPI PUSH2 0xA37 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x2AB6 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2ACE SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x2AA5 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2AF1 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 PUSH2 0x2B1D SWAP1 PUSH2 0x5354 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x24 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x2B1D PUSH2 0x52C0 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2B84 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x2B8C PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x13 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 0x13 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2C05 PUSH1 0x4 CALLDATALOAD PUSH2 0x2BFB DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x4809 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2C54 DUP2 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP2 ADD SWAP1 PUSH2 0x2C6A PUSH2 0x180E PUSH2 0x180A DUP5 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2C79 PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2C91 SWAP1 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2CCB SWAP1 PUSH2 0x2CC2 DUP2 PUSH1 0x34 DUP2 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x5 DUP4 ADD PUSH2 0x5F32 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x8 DUP3 ADD SWAP2 PUSH2 0x2CDC DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x9F1B808CCD95CFAD6377948752267D2AD18CBD81217EC7ABD183A497D47C81D1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x2D23 JUMPI STOP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH2 0x9A6 SWAP1 PUSH2 0x1E89 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x2DB2 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x6620 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2DF1 PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x2DFC PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E1C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E35 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E4E SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH2 0xA37 PUSH2 0x2E5A PUSH2 0x4185 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x39AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2EB2 DUP2 ISZERO ISZERO PUSH2 0x642C JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD LT PUSH2 0x2F23 JUMPI PUSH2 0x9A6 DUP2 PUSH2 0x2EF7 PUSH32 0xBD67EC2DB294B72ED21AC12CF37AA44775B63EA7AB9345652A1D28BE069C4100 SWAP4 ADDRESS CALLER PUSH2 0x4809 JUMP JUMPDEST PUSH2 0x2F0B PUSH2 0x2F06 DUP3 PUSH1 0x28 SLOAD PUSH2 0x3B2E JUMP JUMPDEST PUSH1 0x28 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD CALLER DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x496E73756666696369656E742062616C616E6365 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2F77 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x2F9E PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST SWAP1 PUSH2 0x2FA7 PUSH2 0x4111 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 0x2FC5 PUSH2 0x40E1 JUMP JUMPDEST SWAP1 PUSH2 0x496E JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2FE8 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0x2FF7 PUSH2 0x1FF9 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0x307F JUMPI PUSH2 0x3073 PUSH2 0x21 SWAP5 PUSH2 0x307A 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 0x305B DUP3 PUSH2 0x6AC JUMP JUMPDEST PUSH2 0x306E PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x4BE2 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x4997 JUMP JUMPDEST PUSH2 0x45A1 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 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH2 0x30AB CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x3930 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x30E5 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH32 0x2DE0B4AD2878FFF8E0328D13D59576E6595E750E974AEC7069BD4E182D2D5AAF PUSH2 0x11DA PUSH2 0x3124 PUSH2 0xA37 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP3 PUSH2 0x31D7 PUSH1 0x44 CALLDATALOAD SWAP5 PUSH2 0x3138 DUP4 MLOAD ISZERO ISZERO PUSH2 0x62E0 JUMP JUMPDEST PUSH2 0x3144 DUP2 MLOAD ISZERO ISZERO PUSH2 0x631E JUMP JUMPDEST PUSH2 0x314F TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST PUSH1 0x22 SLOAD SWAP6 PUSH2 0x3164 PUSH2 0x315F DUP9 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x22 SSTORE JUMP JUMPDEST PUSH2 0x316C PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x317E PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST SWAP2 PUSH2 0x3187 PUSH2 0xEF5 JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x64 CALLDATALOAD PUSH1 0x60 DUP5 ADD MSTORE CALLER PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x31D2 DUP7 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x6360 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 CALLER DUP7 DUP5 PUSH2 0x6404 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x322E DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x32C6 PUSH1 0x4 CALLDATALOAD PUSH2 0x328E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH2 0x329B DUP3 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 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 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x3336 PUSH2 0x330A JUMP JUMPDEST PUSH2 0x333E PUSH2 0x4111 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0x33AB JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 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 0x10 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 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2A65 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x33E6 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x33F4 DUP2 PUSH2 0x676 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x28 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x3460 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x34B6 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP2 PUSH2 0x3506 SWAP2 PUSH2 0x34D7 PUSH2 0x4955 JUMP JUMPDEST POP PUSH2 0x34E0 PUSH2 0x4955 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 0x3500 PUSH2 0x4955 JUMP JUMPDEST POP PUSH2 0x4440 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3514 DUP3 PUSH2 0x65B 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 0x5EE JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x356C PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x3577 PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x3596 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP8 SWAP5 SWAP10 SWAP9 SWAP6 SWAP3 PUSH2 0x3600 SWAP1 PUSH2 0x35F2 PUSH2 0x360E SWAP5 PUSH2 0x35E4 PUSH2 0x100 SWAP12 SWAP9 SWAP6 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP8 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO SWAP2 ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP2 DUP2 PUSH1 0x15 SLOAD PUSH2 0x364E DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x3736 JUMPI POP PUSH1 0x1 EQ PUSH2 0x36D9 JUMPI JUMPDEST POP POP PUSH2 0x3676 SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x368E DUP3 PUSH2 0x3687 DUP2 PUSH2 0xBE3 JUMP JUMPDEST SUB DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x36A8 DUP2 PUSH2 0x36A1 DUP2 PUSH2 0xC87 JUMP JUMPDEST SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36B8 DUP2 PUSH2 0x36A1 DUP2 PUSH2 0xD0E JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x1A SLOAD PUSH1 0x1C SLOAD SWAP2 PUSH1 0x1D SLOAD SWAP4 PUSH1 0xFF PUSH1 0x1E SLOAD AND SWAP6 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 PUSH2 0x35BB JUMP JUMPDEST SWAP2 POP PUSH1 0x15 DUP3 MSTORE PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 JUMPDEST DUP5 DUP4 LT PUSH2 0x371B JUMPI POP PUSH2 0x3676 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE DUP1 PUSH2 0x3668 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 0x3701 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP3 POP PUSH2 0x3676 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x3668 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH2 0xA37 SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x37DE SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x37F0 JUMPI JUMPDEST POP PUSH2 0x37D8 SWAP1 PUSH2 0x4458 JUMP JUMPDEST SWAP1 PUSH2 0x4A1A JUMP JUMPDEST DIV PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP3 MSTORE JUMP JUMPDEST PUSH2 0x37D8 SWAP2 SWAP3 POP PUSH2 0x380D SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x37CE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x23 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3898 DUP3 PUSH2 0x676 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 0x38BE 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 0x38B0 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 0x3906 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x3920 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x7AA JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x38F6 JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x397C SWAP3 PUSH2 0x398E SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x396C PUSH2 0x3959 PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6E3 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 0xC 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 0x1D63 JUMPI AND SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x39EB DUP3 CALLER PUSH2 0x4246 JUMP JUMPDEST ISZERO PUSH2 0x3AE8 JUMPI PUSH1 0xF SLOAD SWAP5 DUP6 PUSH2 0x3A07 JUMPI JUMPDEST PUSH2 0x9DB SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x3C53 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER DUP2 AND PUSH1 0x0 NOT ADD DUP2 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x3A58 SWAP2 PUSH1 0x20 SWAP2 PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x3A31 DUP2 PUSH2 0x676 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 SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3ACA JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3AA3 JUMPI POP PUSH2 0x39FA 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 0x3AE2 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x3A95 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x3B1C PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1D8D JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP1 PUSH2 0x3B45 DUP3 PUSH2 0xF22 JUMP JUMPDEST PUSH2 0x3B52 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6E3 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x3B63 PUSH1 0x1F NOT SWAP2 PUSH2 0xF22 JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x3B74 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x3B68 JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x3BB8 SWAP1 PUSH2 0x3BC6 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 0x389E JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x25E9 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 0x3C25 JUMPI POP POP POP POP POP PUSH2 0x9DB SWAP7 SWAP8 POP SWAP1 PUSH2 0x3C0C SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x3C44 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x7AA JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x3BE8 JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x3C6B DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x3930 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x3E07 JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x3DFF JUMPI JUMPDEST PUSH2 0x3DD6 JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x3CB8 PUSH2 0x3CA9 DUP11 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST AND PUSH2 0x3DAF JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x3DAA SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x3CFA PUSH1 0x10 SLOAD SWAP4 DUP1 DUP6 AND SWAP1 NUMBER AND PUSH2 0x3B2E JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x3D88 PUSH2 0x3D16 DUP13 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x3D5F PUSH2 0x3D3B DUP7 PUSH2 0x5113 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 0x3D68 DUP4 PUSH2 0x5145 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 0x3D9C PUSH2 0x3D95 DUP10 MLOAD PUSH2 0x3B3B JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x3B2E JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x3B85 JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x3DB9 DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0x1A25 SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x3B00 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 0x3C83 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x3C7C JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x1D63 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 0x3E4B JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E21 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0x180A PUSH2 0x3F0A SWAP2 PUSH2 0x3F04 DUP11 PUSH2 0x3E86 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x3E91 CALLDATASIZE DUP9 DUP11 PUSH2 0x101A 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 0x2884 DUP2 PUSH2 0x6C7 JUMP JUMPDEST DUP11 PUSH2 0x5002 JUMP JUMPDEST PUSH2 0x3F25 JUMPI PUSH2 0x9DB SWAP6 SWAP7 SWAP2 PUSH2 0x3F1F SWAP2 CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST SWAP3 PUSH2 0x3FC2 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 0x9DB SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x3F59 DUP6 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x3FC2 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x3F8E SWAP4 PUSH2 0x9DB 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 0x7AA JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x9DB SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x3FCE DUP5 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x40B3 JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH2 0x402A PUSH2 0x4022 PUSH2 0x401C PUSH2 0x4011 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x43B4 JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x42AE JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x4077 JUMPI POP PUSH2 0x4071 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x3F9C JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x4071 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x3F62 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x40D8 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1D8D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x410C JUMPI RETURNDATASIZE SWAP1 PUSH2 0x40F2 DUP3 PUSH2 0xFFF JUMP JUMPDEST SWAP2 PUSH2 0x4100 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6E3 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x416D JUMPI ADDRESS SUB PUSH2 0x412C JUMPI JUMP JUMPDEST PUSH2 0x4135 CALLDATASIZE PUSH2 0xFFF JUMP JUMPDEST PUSH2 0x4142 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6E3 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 0x4165 PUSH2 0x58AE JUMP JUMPDEST SUB PUSH2 0x415C 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 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH2 0x41AB DUP2 PUSH2 0x676F JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x41C8 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x41EB 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 0x1D8D JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x41FD DUP2 PUSH2 0x676F JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x421A JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x423D 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 0x1D8D JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x42A6 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 0x42A6 JUMPI PUSH2 0x4285 SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x4A2D JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x4293 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 POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x42C5 SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x42F0 PUSH2 0x42E9 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 0x4378 JUMPI PUSH2 0x4316 PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x4323 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 0x433A JUMPI POP PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4351 JUMPI POP PUSH1 0x1 ADD PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x4366 JUMPI PUSH1 0x2 ADD PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E 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 SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT 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 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x4419 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x9DB SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x0 NOT DUP3 ADD DUP3 DUP2 GT PUSH2 0x1D63 JUMPI DUP3 GT ISZERO PUSH2 0x3E4B JUMPI PUSH1 0x0 SWAP2 PUSH1 0x12 DUP4 MSTORE PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 DUP2 ADD SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP3 DUP2 DUP5 DUP3 AND GT ISZERO PUSH2 0x455D JUMPI POP PUSH2 0x44B7 SWAP1 PUSH2 0x5113 JUMP JUMPDEST DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x4507 JUMPI JUMPDEST POP PUSH2 0x44CE SWAP4 POP PUSH2 0x5789 JUMP JUMPDEST DUP1 PUSH2 0x44E1 JUMPI POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x44EC PUSH1 0x12 SWAP2 PUSH2 0x4431 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x44D5 JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x4512 DUP3 PUSH2 0x5195 JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x1D63 JUMPI PUSH2 0x44CE SWAP5 PUSH1 0x12 DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x454B JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x44C3 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4557 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x4545 JUMP JUMPDEST SWAP4 POP POP POP POP PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 DUP3 LT ISZERO PUSH2 0x4583 JUMPI POP PUSH2 0x9DB SWAP1 PUSH2 0x5113 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 0x742 SWAP7 SWAP5 AND SWAP5 PUSH2 0x461E 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 0x4768 JUMPI JUMPDEST PUSH2 0x4648 JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x46CD JUMPI JUMPDEST POP POP DUP3 PUSH2 0x465D JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x4641 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 0x46AA SWAP2 PUSH2 0x46A4 SWAP1 SWAP2 PUSH2 0x50E0 JUMP JUMPDEST SWAP1 PUSH2 0x4771 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 0x4656 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 0x46ED DUP5 PUSH2 0x50E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x4701 DUP6 PUSH2 0x5354 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB DUP2 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x4745 PUSH2 0x475E SWAP2 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP5 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x5664 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 0x464E JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x463C JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x4786 DUP6 PUSH2 0x5354 JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP2 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x5664 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x47BB PUSH2 0x530A JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x55AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x47EB PUSH2 0x530A JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x55AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x4902 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x48E9 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 0x48BA JUMPI DUP5 PUSH2 0x742 SWAP7 SWAP8 SUB PUSH2 0x486B 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 0x66EC 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 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0xB89 JUMPI DUP2 AND ISZERO PUSH2 0xB70 JUMPI PUSH2 0xB21 PUSH2 0x4952 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 0x4962 DUP3 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x742 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x4985 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 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 DUP1 SWAP3 SUB PUSH2 0x49C3 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x4AB6 JUMPI JUMPDEST PUSH2 0x4A8D JUMPI PUSH2 0x4A47 DUP2 PUSH2 0x3B20 JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x4A98 JUMPI JUMPDEST PUSH2 0x4A5A SWAP1 ISZERO ISZERO PUSH2 0x49EE JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x1D63 JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x1D63 JUMPI SUB PUSH2 0x4A8D JUMPI PUSH2 0x4A7D SWAP3 PUSH2 0x4ABF 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 0x4A4F JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x4A3A JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x4ACB DUP5 PUSH2 0x3B20 JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x4B52 JUMPI JUMPDEST PUSH2 0x4ADE SWAP1 ISZERO ISZERO PUSH2 0x49EE JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1D63 JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x4AFF JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x4B20 PUSH2 0x4B1B PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x4B70 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x4B46 JUMPI SWAP1 PUSH2 0x4B37 PUSH2 0x4B3E SWAP3 PUSH2 0x4A04 JUMP JUMPDEST ADD SWAP5 PUSH2 0x3E12 JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x4AEF 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 0x4AD3 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x4BD8 JUMPI JUMPDEST ISZERO PUSH2 0x4B8C JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x4BCE JUMPI JUMPDEST ISZERO PUSH2 0x4BA5 JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x4BC4 JUMPI JUMPDEST ISZERO PUSH2 0x4BBE JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x4BAF JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x4B96 JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x4B7D JUMP JUMPDEST SWAP2 PUSH2 0x9DB SWAP4 SWAP2 PUSH2 0x4BF1 SWAP4 PUSH2 0x4BFA JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x4C88 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x4C72 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 0x1579 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x4C69 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 PUSH1 0x4 GT ISZERO PUSH2 0x1D88 JUMPI JUMP JUMPDEST PUSH2 0x4C91 DUP2 PUSH2 0x4C7E JUMP JUMPDEST DUP1 PUSH2 0x4C9A JUMPI POP POP JUMP JUMPDEST PUSH2 0x4CA3 DUP2 PUSH2 0x4C7E JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4CBD JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x4CC6 DUP2 PUSH2 0x4C7E JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x4CE7 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 0x4CF3 PUSH1 0x3 SWAP3 PUSH2 0x4C7E JUMP JUMPDEST EQ PUSH2 0x4CFB 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 PUSH1 0x42 SWAP1 PUSH2 0x4D20 PUSH2 0x4D3B 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 0x4E26 JUMPI JUMPDEST ISZERO PUSH2 0x4D96 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 0x398E DUP2 PUSH2 0x691 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x4D6D JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4E8D JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x4E7B JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x4E71 DUP4 PUSH2 0x65B 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 0x4EA0 DUP4 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4F26 JUMPI POP PUSH1 0x1 EQ PUSH2 0x4EC7 JUMPI JUMPDEST POP PUSH2 0x9DB SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x4F0B JUMPI POP PUSH2 0x9DB SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x4EBA 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 0x4EF2 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x9DB SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4F6A JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x4E7B JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x4E71 DUP4 PUSH2 0x65B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x4F7D DUP4 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4F26 JUMPI POP PUSH1 0x1 EQ PUSH2 0x4FA3 JUMPI POP PUSH2 0x9DB SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x4FE7 JUMPI POP PUSH2 0x9DB SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x4EBA 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 0x4FCE JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x502A JUMPI PUSH2 0x5014 SWAP2 SWAP3 PUSH2 0x50A4 JUMP JUMPDEST POP PUSH2 0x501E DUP2 PUSH2 0x4C7E JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x4293 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x5060 DUP2 PUSH2 0x2CB4 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 0x7AA JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x506D PUSH2 0x40E1 JUMP JUMPDEST DUP3 PUSH2 0x5096 JUMPI JUMPDEST DUP3 PUSH2 0x507D JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x5092 SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x4399 JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x5073 JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x50D5 JUMPI PUSH2 0x50CE SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x4BFA JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x50F4 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 0x5126 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 PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x5156 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 DUP2 ISZERO PUSH2 0x517F 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 0x9DB JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x52AE JUMPI JUMPDEST PUSH2 0x5256 PUSH2 0x524C PUSH2 0x5242 PUSH2 0x5238 PUSH2 0x522E PUSH2 0x5224 PUSH2 0x5262 SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x525D SWAP11 LT ISZERO PUSH2 0x52A1 JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x5294 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x5287 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x527B JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x526F JUMPI JUMPDEST LT ISZERO PUSH2 0x5267 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x521D DUP2 DUP12 PUSH2 0x5175 JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP11 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP10 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP9 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP8 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP7 PUSH2 0x5175 JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x5175 JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x520D JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x5206 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x51FC JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x51F1 JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x51E5 JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x51D7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x51AE JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x52D2 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1D63 JUMPI PUSH1 0x12 PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x531C JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1D63 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x5366 JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x1D63 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 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x656 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH2 0x742 SWAP2 PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x53F8 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 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x656 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH2 0x742 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x53F8 PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x656 JUMPI PUSH2 0x5497 SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x54BF JUMPI DUP2 MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x742 SWAP2 PUSH2 0x53F8 JUMP JUMPDEST PUSH2 0x5382 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x5583 JUMPI PUSH2 0x54DC PUSH2 0x54F4 SWAP2 PUSH2 0x4431 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 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 0x5571 JUMPI DUP7 SWAP3 SUB PUSH2 0x5539 JUMPI PUSH2 0x5532 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 0x556C SWAP1 PUSH2 0x5558 PUSH2 0x554A PUSH2 0xF15 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 0x5398 JUMP JUMPDEST PUSH2 0x5532 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x55A7 SWAP1 PUSH2 0x5593 PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x5398 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x5640 JUMPI PUSH2 0x55C5 PUSH2 0x55DD SWAP2 PUSH2 0x4431 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 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 0x5571 JUMPI DUP7 SWAP3 SUB PUSH2 0x561B JUMPI PUSH2 0x5532 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST POP POP PUSH2 0x556C SWAP1 PUSH2 0x562C PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x541A JUMP JUMPDEST POP PUSH2 0x55A7 SWAP1 PUSH2 0x5650 PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x541A JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x56FB JUMPI PUSH2 0x567B PUSH2 0x5688 SWAP2 PUSH2 0x4431 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 0x5571 JUMPI DUP8 SWAP4 SUB PUSH2 0x56C7 JUMPI POP PUSH2 0x5532 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 0x556C SWAP2 PUSH2 0x56E7 PUSH2 0x56D9 PUSH2 0xF15 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 0x547A JUMP JUMPDEST POP SWAP1 PUSH2 0x55A7 SWAP2 PUSH2 0x570C PUSH2 0x56D9 PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x547A JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x572E JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x5777 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x5722 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x5783 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x5771 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x5797 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI PUSH1 0x12 PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x57E0 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x578B JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x57EC SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x57DA JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x5802 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 0x1D63 JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x5841 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x57F5 JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x584D SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP2 PUSH2 0x583A JUMP JUMPDEST PUSH1 0xD 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 0x589B JUMPI PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0xD SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0xD SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x58F3 JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0xE 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 0xD SLOAD AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST ISZERO PUSH2 0x590D JUMPI 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 0x5952 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 ISZERO PUSH2 0x598D JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x496E76616C69642074696D656C6F636B PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x59CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A29 DUP2 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x5A3B JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5A30 JUMP JUMPDEST SWAP2 DUP2 DUP2 LT PUSH2 0x5A54 JUMPI POP POP POP JUMP JUMPDEST PUSH2 0x742 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x5A30 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x656 JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI PUSH2 0x5A95 DUP4 DUP4 SLOAD DUP2 DUP6 SSTORE DUP5 PUSH2 0x5A47 JUMP JUMPDEST PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5AB4 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5AA6 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x656 JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI PUSH2 0x5AFA DUP4 DUP4 SLOAD DUP2 DUP6 SSTORE DUP5 PUSH2 0x5A47 JUMP JUMPDEST PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5B19 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5B0B JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x5B3A JUMPI POP POP POP JUMP JUMPDEST PUSH2 0x742 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH2 0x5B66 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH2 0x5A30 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x5B59 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH2 0x5B97 DUP2 PUSH2 0x5B91 DUP5 SLOAD PUSH2 0x5F3 JUMP JUMPDEST DUP5 PUSH2 0x5B2B JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x5BD3 JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH2 0x5BC8 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x5BB2 JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH2 0x5BE9 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH2 0x5C26 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH2 0x5C0D JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x5C03 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH2 0x5BEE JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x5C9C JUMPI JUMPDEST POP PUSH2 0x5C6E PUSH1 0x20 DUP1 SWAP3 ADD SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x5C80 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH2 0x5C90 DUP4 SWAP5 MLOAD DUP7 PUSH2 0x5B70 JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH2 0x5C72 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 KECCAK256 SWAP3 DUP4 ADD SWAP3 ADD JUMPDEST DUP3 DUP2 LT PUSH2 0x5CBA JUMPI POP POP PUSH2 0x5C59 JUMP JUMPDEST DUP1 PUSH2 0x5CC7 PUSH1 0x1 SWAP3 SLOAD PUSH2 0x5F3 JUMP JUMPDEST DUP1 PUSH2 0x5CD4 JUMPI JUMPDEST POP ADD PUSH2 0x5CAC JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH2 0x5CEC JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH2 0x5CCD JUMP JUMPDEST DUP4 PUSH2 0x5D0E SWAP3 PUSH2 0x5D00 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH2 0x5A30 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH2 0x5CE6 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x100 PUSH2 0x742 SWAP4 PUSH2 0x5D34 DUP2 MLOAD DUP6 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x5D45 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x5ACF JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x5D85 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x3 DUP7 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x5D96 PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x4 DUP7 ADD PUSH2 0x5C3E JUMP JUMPDEST PUSH2 0x5DBB PUSH2 0x5DA6 PUSH1 0xA0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0x6 DUP6 ADD SSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD PUSH2 0x5B70 JUMP JUMPDEST SWAP4 SWAP1 PUSH2 0x9DB SWAP6 SWAP4 PUSH2 0x3F8E SWAP4 PUSH2 0x5E07 SWAP3 DUP8 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST ISZERO PUSH2 0x5E1C JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5E68 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x141C9BDC1BDCD85B08195E1C1A5C9959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5EA7 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD PUSH2 0x9DB DUP2 PUSH2 0xAC3 JUMP JUMPDEST ISZERO PUSH2 0x5EFC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x656 JUMPI PUSH2 0x5F4F SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x4440 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x54BF JUMPI PUSH2 0x742 SWAP2 PUSH2 0x5B70 JUMP JUMPDEST ISZERO PUSH2 0x5F66 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x141C9BDC1BDCD85B081B9BDD08195E1958DD5D1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5FAA JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x496E73756666696369656E742071756F72756D PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5FEC 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 0x6027 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 PUSH1 0x60 DUP2 ADD SWAP2 DUP2 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x60 DUP3 DUP3 ADD MSTORE DUP4 SLOAD DUP1 SWAP4 MSTORE PUSH1 0x80 DUP2 ADD SWAP3 PUSH1 0x0 SWAP5 DUP6 MSTORE DUP3 DUP6 KECCAK256 SWAP1 DUP6 JUMPDEST DUP2 DUP2 LT PUSH2 0x60C7 JUMPI POP POP POP PUSH1 0x40 DUP2 DUP5 SUB SWAP2 ADD MSTORE DUP1 DUP5 SLOAD SWAP3 DUP4 DUP2 MSTORE ADD SWAP4 DUP4 MSTORE DUP1 DUP4 KECCAK256 SWAP3 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x60B0 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 SLOAD DUP6 MSTORE SWAP4 DUP5 ADD SWAP4 PUSH1 0x1 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x60A2 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 MSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP3 DUP4 ADD SWAP3 ADD PUSH2 0x607F JUMP JUMPDEST SWAP1 PUSH2 0x60F8 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x610E PUSH2 0x6109 PUSH1 0x5 DUP4 ADD SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x6122 PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x6 DUP4 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 ADD SWAP4 SWAP1 PUSH1 0x0 DUP2 JUMPDEST PUSH2 0x6166 JUMPI JUMPDEST POP POP PUSH2 0x3DAA PUSH32 0xE8585C604452FCB59BC021FCE36EB8241FFC18BD81B50CE6CD5CEA81CEEAA58D SWAP4 SWAP5 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH2 0x605A JUMP JUMPDEST DUP4 SLOAD DUP2 LT ISZERO PUSH2 0x61EC JUMPI DUP1 PUSH2 0x61A2 PUSH2 0x619B PUSH2 0x13B8 PUSH2 0x6186 PUSH2 0x61E6 SWAP6 DUP10 PUSH2 0x4440 JUMP JUMPDEST SWAP1 SLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 SHL SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x5FE5 JUMP JUMPDEST PUSH2 0x61C3 PUSH2 0x61BC PUSH2 0x61B2 DUP4 DUP11 PUSH2 0x4440 JUMP JUMPDEST SWAP1 SLOAD SWAP1 PUSH1 0x3 SHL SHR SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x6020 JUMP JUMPDEST PUSH2 0x1927 PUSH2 0x61D3 PUSH2 0x6186 DUP4 DUP9 PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x61E0 PUSH2 0x61B2 DUP5 DUP12 PUSH2 0x4440 JUMP JUMPDEST SWAP1 PUSH2 0x61F1 JUMP JUMPDEST DUP2 PUSH2 0x612D JUMP JUMPDEST PUSH2 0x6132 JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x48E9 JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1D63 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 0x6277 JUMPI PUSH2 0x742 SWAP3 SWAP4 POP PUSH2 0x666E 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 ISZERO PUSH2 0x62A4 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x151A5B595B1BD8DAC81B9BDD08195E1C1A5C9959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x62E7 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x22B6B83A3C9037B832B930BA34B7B7 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x6325 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x456D7074792074617267657420636861696E73 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x100 PUSH1 0x8 SWAP2 PUSH2 0x6372 DUP2 MLOAD DUP6 PUSH2 0x5B70 JUMP JUMPDEST PUSH2 0x6383 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x5ACF JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x3 DUP6 ADD SSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x4 DUP6 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x63CE PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x5 DUP7 ADD PUSH2 0x5C3E JUMP JUMPDEST PUSH2 0x63F3 PUSH2 0x63DE PUSH1 0xC0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD SSTORE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x9DB SWAP3 SWAP2 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST ISZERO PUSH2 0x6433 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416D6F756E74206D7573742062652067726561746572207468616E2030000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x647F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E73756666696369656E742074726561737572792062616C616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 MLOAD DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x742 SWAP2 PUSH1 0x8 SWAP1 PUSH2 0x100 SWAP1 PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x5D85 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5D62 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x9DB SWAP3 SWAP2 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x656C PUSH1 0xFF PUSH1 0x5 DUP5 ADD SLOAD AND PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x6580 PUSH1 0x7 DUP4 ADD SLOAD PUSH1 0x6 DUP5 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 DUP2 SLOAD SWAP3 PUSH1 0x28 SLOAD SWAP4 PUSH2 0x6598 DUP6 DUP3 GT ISZERO PUSH2 0x6478 JUMP JUMPDEST DUP5 SUB SWAP4 DUP5 GT PUSH2 0x1D63 JUMPI PUSH2 0x65F6 PUSH2 0x3DAA SWAP2 PUSH2 0x65D2 PUSH32 0xBB768AA97FA4E8A8F73BFA7BC210F1A29F29C765D44F0C29ACC04A549E32E43 SWAP7 PUSH1 0x28 SSTORE JUMP JUMPDEST DUP1 SLOAD DUP6 SLOAD PUSH2 0x65E9 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS PUSH2 0x4809 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 SLOAD PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 DUP3 ADD SWAP1 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 DUP1 ISZERO DUP1 ISZERO PUSH2 0x6664 JUMPI JUMPDEST PUSH2 0x665E JUMPI PUSH2 0x6655 PUSH2 0x9DB SWAP2 PUSH1 0x28 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST PUSH1 0x2 SLOAD SWAP1 PUSH2 0x5175 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x28 SLOAD ISZERO PUSH2 0x6641 JUMP JUMPDEST SWAP1 PUSH2 0x742 SWAP2 PUSH2 0x6684 PUSH2 0x667F DUP4 PUSH2 0x50E0 JUMP JUMPDEST PUSH2 0x47A8 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x66D4 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 0x4620 JUMP JUMPDEST PUSH2 0x66E5 PUSH2 0x66E0 DUP5 PUSH2 0x50E0 JUMP JUMPDEST PUSH2 0x47D8 JUMP JUMPDEST POP POP PUSH2 0x6699 JUMP JUMPDEST PUSH2 0x742 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x6744 JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x6731 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 0x4620 JUMP JUMPDEST PUSH2 0x673D PUSH2 0x66E0 DUP6 PUSH2 0x50E0 JUMP JUMPDEST POP POP PUSH2 0x6710 JUMP JUMPDEST PUSH2 0x6750 PUSH2 0x667F DUP7 PUSH2 0x50E0 JUMP JUMPDEST POP POP PUSH2 0x6707 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x5EE JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x6778 DUP2 PUSH2 0x6881 JUMP JUMPDEST SWAP1 PUSH2 0x6782 DUP3 PUSH2 0x1D7E JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x687D JUMPI PUSH2 0x679F SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x13 SLOAD PUSH2 0x67B5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 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 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x6860 JUMPI JUMPDEST POP ISZERO PUSH2 0x67F3 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 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x6833 JUMPI JUMPDEST POP POP ISZERO PUSH2 0x682E JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x6852 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x6859 JUMPI JUMPDEST PUSH2 0x684A DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x6757 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x6822 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x6840 JUMP JUMPDEST PUSH2 0x6877 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x6859 JUMPI PUSH2 0x684A DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x67E5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x6895 DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x698D JUMPI PUSH1 0xF8 SHR PUSH2 0x6987 JUMPI PUSH2 0x68C2 PUSH2 0x4011 PUSH2 0x3CA9 DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x696E JUMPI PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 SWAP2 LT ISZERO PUSH2 0x6967 JUMPI PUSH2 0x68E2 DUP3 PUSH2 0x39AA JUMP JUMPDEST LT PUSH2 0x68ED JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x68F9 PUSH2 0x180A DUP3 PUSH2 0x6994 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6942 JUMPI JUMPDEST ISZERO PUSH2 0x690B JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x4011 PUSH1 0x1 PUSH2 0x6927 PUSH2 0x6934 SWAP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x693D JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x6962 PUSH2 0x180A DUP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x6900 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 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0xC PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP3 MSTORE DUP1 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH2 0x6A31 SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x6A1F SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x37F0 JUMPI POP PUSH2 0x37D8 SWAP1 PUSH2 0x4458 JUMP JUMPDEST DIV SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x3B2E JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x6A42 SWAP4 SWAP3 SWAP2 PUSH2 0x3930 JUMP JUMPDEST PUSH2 0x6A4B DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x6B4A JUMPI POP PUSH2 0x6A90 PUSH2 0x6A7B DUP3 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x6AD0 DUP2 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x6ADA JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH2 0x6AEF SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x5EE 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 0x1579 JUMPI PUSH2 0x6B37 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0x156D PUSH2 0x6B44 SWAP3 PUSH2 0x643 JUMP JUMPDEST CODESIZE PUSH2 0x6B24 JUMP JUMPDEST SWAP1 PUSH2 0x6B6E 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 0x1D8D JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x6BA3 PUSH1 0x80 SWAP4 PUSH2 0x6B95 PUSH2 0x6BB1 SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x6BEC PUSH1 0xA0 SWAP5 PUSH2 0x6BDE PUSH2 0x6BFA SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x38DB 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 0x13 SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x5EE JUMPI PUSH1 0x0 SWAP4 PUSH2 0x6C5A 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 0x6B77 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x4952 SWAP3 PUSH2 0x6C84 JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x6C8D SWAP1 PUSH2 0x643 JUMP JUMPDEST CODESIZE PUSH2 0x6C73 JUMP INVALID 0xBB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC3444C65A7BB8D6351C1CF70C95A316CC6A92839C98 PUSH7 0x82D98BC35F958F BASEFEE DUP4 0xF9 0xD2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP11 0x5D 0xE6 SWAP10 0xF7 0xAE 0xFB 0x28 DUP15 DUP4 SWAP5 0xE1 LOG1 SWAP7 PUSH25 0x91A7FA659845A380EC582AE5C3DAD15A8264736F6C63430008 EQ STOP CALLER 0xBB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC3444C65A7BB8D6351C1CF70C95A316CC6A92839C98 PUSH7 0x82D98BC35F958F BASEFEE DUP4 0xF9 0xD2 0xA8 GASPRICE 0xD8 0xAA 0x4F DUP8 SLOAD NUMBER 0x23 0xA9 0xD1 0xE5 0xDD SWAP1 0x2F BLOCKHASH 0xC3 JUMP MSTORE PUSH27 0x7955687113DB5F9A85AD579DC10553476BF02EF2726E8CE5CED78D PUSH4 0xE26E602E 0x4A 0x22 JUMPI 0xB1 CREATE2 MSIZE COINBASE DUP15 0x24 0xB4 PUSH4 0x3997DEC2 0xBA 0xCD 0xD2 CREATE JUMPDEST MSIZE 0xDE CALLVALUE 0xDA SWAP12 MSTORE RETURNDATASIZE SELFDESTRUCT DUP12 0xE4 0x2E 0x5E CODESIZE 0xE8 XOR 0xC8 0x2F 0xDB SIGNEXTEND 0xAE PUSH24 0x4387A7240000000000000000000000000000000000000000 ","sourceMap":"782:20814:46:-:0;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;:::i;:::-;;;;;-1:-1:-1;;782:20814:46;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::o;:::-;;;;4854:24;782:20814;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;;;;;;;;-1:-1:-1;;782:20814:46;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;1667:13:20;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;:::o;:::-;;;1690:17:20;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3615:13:2;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3432:13:35;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;3432:13:35;782:20814:46;;;;;;;;;3432:13:35;782:20814:46;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3501:16:35;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;5078:407;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;1690:17:20;782:20814:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:20;782:20814:46;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;1690:17:20;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:20;782:20814:46;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;3615:13:2;782:20814:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615:13:2;782:20814:46;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;3615:13:2;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615:13:2;782:20814:46;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;5078:407;782:20814;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5078:407;782:20814;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;5078:407;782:20814;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5078:407;782:20814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;:::o;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;782:20814:46;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46:o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;4632:2019;;;;4916:23;;;782:20814;;4813:18;;;782:20814;;;;;;4833:19;;;782:20814;;;4854:24;;;782:20814;4775:11;;4743:13;;;;;4775:11;;;;4854:24;5056:4;;-1:-1:-1;;;;;782:20814:46;;4632:2019;:::i;:::-;2974:5;782:20814;;2974:5;782:20814;;2974:5;782:20814;;2974:5;782:20814;5116:11;;4743:13;;;5149;5186:15;;;;5228:18;;;;5274:19;;;782:20814;;5314:12;;782:20814;5352:17;;;;;5388:10;;;;782:20814;;;;:::i;:::-;;;;4743:13;5088:397;;782:20814;5186:15;5088:397;;782:20814;5228:18;5088:397;;782:20814;5274:19;5088:397;;782:20814;;5088:397;;782:20814;5352:17;5088:397;;782:20814;5388:10;5088:397;;782:20814;5431:15;4813:18;5088:397;;782:20814;5470:4;4833:19;5088:397;;782:20814;;:::i;:::-;5495:42;4916:23;;;782:20814;5495:42;782:20814;;5495:42;5690:22;;;;;;782:20814;5723:21;5682:96;5723:21;;;;;;782:20814;5690:61;5682:96;:::i;:::-;5788:65;5796:22;;782:20814;5796:33;;5788:65;:::i;:::-;-1:-1:-1;5927:3:46;5896:22;;782:20814;;5892:33;;;;;5954:25;5946:64;5954:39;:25;;;5927:3;5954:25;;:::i;:::-;782:20814;-1:-1:-1;;;;;782:20814:46;;;5954:25;-1:-1:-1;;;;;782:20814:46;;;5954:39;;;5946:64;:::i;:::-;6024:52;6032:24;:21;;;:24;:::i;:::-;782:20814;6032:28;;6024:52;:::i;:::-;6123:24;6096:25;;:22;;;:25;:::i;:::-;6123:24;:21;;;:24;:::i;:::-;782:20814;6123:24;;:::i;:::-;5927:3;:::i;:::-;5877:13;;5892:33;;;;6310:334;5892:33;;6223:71;5892:33;6177:31;5470:4;782:20814;;2974:5;782:20814;;;2974:5;782:20814;;6177:31;6248:22;6272:21;;782:20814;6223:71;5186:15;782:20814;6223:71;;;;;:::i;:::-;;;;6310:334;6338:11;;4743:13;;;;6363;5186:15;;;;6390;5228:18;;;;6419;5274:19;;;;782:20814;5314:12;782:20814;5314:12;;782:20814;5388:10;5352:17;;;6510;5388:10;;782:20814;;5186:15;782:20814;5056:4;;;;;;6310:334;;;:::i;:::-;;;;4632:2019::o;1888:97:7:-;;;;;;;;;;;;782:20814:46;;;;;;:::i;:::-;;;;;-1:-1:-1;;;782:20814:46;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;1667:13:20;782:20814:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;1107:24:6;782:20814:46;;;1962:15:7;782:20814:46;;;;;1379:20:9;782:20814:46;;;;;;;1009:18:6;782:20814:46;1055:19:6;782:20814:46;-1:-1:-1;782:20814:46;;;;;;;;;;;1667:13:20;782:20814:46;;;;;1667:13:20;782:20814:46;;:::i;:::-;3401:45:35;;;:::i;:::-;3393:53;;3467:51;;;:::i;:::-;3456:62;;782:20814:46;;;;;3542:22:35;3528:36;;782:20814:46;;;;;3591:25:35;3574:42;;3644:13;3627:30;;3692:23;;:::i;:::-;3667:48;;3747:4;3725:27;;782:20814:46;:::i;:::-;1009:18:6;:::i;:::-;1055:19;:::i;:::-;1107:24;:::i;:::-;-1:-1:-1;;;;;782:20814:46;668:40:8;;1379:20:9;:::i;:::-;1962:15:7;:::i;782:20814:46:-;;;;-1:-1:-1;782:20814:46;;;;;1667:13:20;782:20814:46;;;;;;;;;-1:-1:-1;782:20814:46;-1:-1:-1;;782:20814:46;;;;;;;;;1962:15:7;782:20814:46;;1009:18:6;782:20814:46;;1379:20:9;782:20814:46;;;;;;1055:19:6;782:20814:46;;1107:24:6;782:20814:46;;;;;;;;;;;;;;;;;;1667:13:20;782:20814:46;;:::i;:::-;;;;;;;1667:13:20;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2721:170:6;2816:12;782:20814:46;2801:44:6;782:20814:46;;;;;;;;;;;;;;;;;;2801:44:6;-1:-1:-1;;782:20814:46;;2816:12:6;782:20814:46;2721:170:6:o;3011:274::-;782:20814:46;;;;3092:20:6;;;3088:88;;3190:47;782:20814:46;;;3206:13:6;782:20814:46;;;;;;;;;;;;;;;3190:47:6;782:20814:46;;;;;;;;3206:13:6;782:20814:46;3011:274:6:o;3088:88::-;782:20814:46;;-1:-1:-1;;;3135:30:6;;3111:1;3135:30;;;782:20814:46;;;3135:30:6;3415:213;3529:18;782:20814:46;;;;;;;;;;;;;3508:62:6;;;3529:18;782:20814:46;3415:213:6:o;6165:176:7:-;6268:9;782:20814:46;6245:56:7;782:20814:46;;;;;;;;;;;;;;;;;;;;;;6245:56:7;-1:-1:-1;;;;;;782:20814:46;;6268:9:7;782:20814:46;6165:176:7:o;3532:498:9:-;2544:3;3674:32;;3670:132;;1586:23;782:20814:46;-1:-1:-1;;10446:63:43;:8;;;:63;-1:-1:-1;;;;;;;;;;;10446:63:43;;-1:-1:-1;10446:63:43;8310:38;3906::9;;;:::i;:::-;782:20814:46;18895:12;782:20814;8310:38:43;:::i;:::-;-1:-1:-1;;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;3961:62:9;782:20814:46;10446:63:43;782:20814:46;;;;;;;;;;14439:109:43;;1586:23:9;-1:-1:-1;;;;;;;;;;;14439:109:43;;;;;782:20814:46;;;10446:63:43;;3670:132:9;782:20814:46;;;;3729:62:9;;;;;;;;;782:20814:46;2544:3:9;782:20814:46;;;;3729:62:9;7458:208:20;;;-1:-1:-1;;;;;782:20814:46;;7528:21:20;;7524:91;;6233:21;782:20814:46;;;;;;;;;6233:21:20;782:20814:46;-1:-1:-1;;;;;782:20814:46;;7547:1:20;782:20814:46;;;;;;;;;;;;;;;;;;;;;7083:25:20;;782:20814:46;7083:25:20;6233:21;782:20814:46;;-1:-1:-1;;;;;2616:12:22;;2612:94;;2756:5;;;;;:::i;2612:94::-;782:20814:46;;-1:-1:-1;;;2655:36:22;;;;;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;2655:36:22;;;;;7524:91:20;782:20814:46;;-1:-1:-1;;;7572:32:20;;7547:1;7572:32;;;782:20814:46;;;7572:32:20;2887:340:31;;782:20814:46;;3032:2:31;3010:24;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;782:20814:46;;;;;;;3432:13:35;782:20814:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432:13:35;782:20814:46;1390:66:31;3168:42;:::o;782:20814:46:-;;;;-1:-1:-1;782:20814:46;;;;;3432:13:35;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432:13:35;782:20814:46;1390:66:31;3168:42;:::o;782:20814:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887:340:31;;782:20814:46;;3032:2:31;3010:24;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;782:20814:46;;;;;;;3501:16:35;782:20814:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501:16:35;782:20814:46;1390:66:31;3168:42;:::o;782:20814:46:-;;;;-1:-1:-1;782:20814:46;;;;;3501:16:35;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501:16:35;782:20814:46;1390:66:31;3168:42;:::o;782:20814:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708:286:31;1854:2;782:20814:46;;1840:16:31;1836:72;;782:20814:46;;;;;;;;;;;1949:36:31;1708:286;:::o;782:20814:46:-;;;;;;;;;;1949:36:31;1708:286;:::o;1836:72::-;782:20814:46;;-1:-1:-1;;;1879:18:31;;782:20814:46;1879:18:31;;;782:20814:46;;;;;;;;;;;:::i;4113:179:35:-;4226:11;782:20814:46;4239:14:35;782:20814:46;;;4204:80:35;;;;782:20814:46;2079:95:35;782:20814:46;;;2079:95:35;;782:20814:46;2079:95:35;;;782:20814:46;4255:13:35;2079:95;;;782:20814:46;4278:4:35;2079:95;;;782:20814:46;2079:95:35;4204:80;;2079:95;782:20814:46;;;;;;;;;;;;;;;;;;4194:91:35;;4113:179;:::o;4174:218:41:-;-1:-1:-1;;;;;782:20814:46;4254:25:41;;;4250:105;;782:20814:46;4174:218:41;:::o;4250:105::-;782:20814:46;;;;4302:42:41;;;;;;782:20814:46;4302:42:41;;;782:20814:46;;;;;4302:42:41;782:20814:46;-1:-1:-1;;782:20814:46;;;;;;;;:::o;10310:206:43:-;7419:17:11;782:20814:46;10405:17:43;;10446:8;;;:63;;10405:17;10310:206;:::o;10446:63::-;782:20814:46;;;;;;;;;;7419:17:11;14439:109:43;;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;;10310:206:43:o;:::-;782:20814:46;;10405:17:43;;10446:8;;;:63;;;10405:17;10310:206;:::o;10446:63::-;782:20814:46;;;;;;;;;;14439:109:43;;;;;;;782:20814:46;;;10310:206:43;:::o;782:20814:46:-;1586:23:9;782:20814:46;;;;;;;;;;;;1586:23:9;782:20814:46;;;;;;1586:23:9;-1:-1:-1;782:20814:46;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;:::o;:::-;7419:17:11;782:20814:46;;;;;;;;;;;;7419:17:11;782:20814:46;;;;;;7419:17:11;-1:-1:-1;782:20814:46;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;:::o;11657:922:43:-;1586:23:9;782:20814:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;1586:23:9;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;;14289:265;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:20814:46;;;;;;;;;;;;;;;;;12285:19:43;782:20814:46;;12423:25:43;;:::o;12247:163::-;782:20814:46;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;:::-;12247:163;;12099:89;782:20814:46;;-1:-1:-1;;;12143:30:43;;;;;11860:713;782:20814:46;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;12479:::-;11870:1;12545:17;;:::o;11657:922::-;7419:17:11;782:20814:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;7419:17:11;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;;14289:265;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:20814:46;;;;;;;;;;;;;;;;;12247:163:43;782:20814:46;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;12353:41:43:-;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;11860:713::-;782:20814:46;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;11657:922::-;782:20814:46;;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;11916:28;14439:109;;;;;;14289:265;;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;;782:20814:46;;;;;;;;;;;;;;;;;12247:163:43;782:20814:46;;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;11860:713::-;782:20814:46;;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;7276:399:11:-;;7444:26;;;:::i;:::-;18895:12:46;782:20814;;;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;;:::i;:::-;782:20814:46;;;;;;;;;8310:38:43;;;;:::i;:::-;-1:-1:-1;;;;;;;782:20814:46;;;;7495:16:11;;7491:110;;7276:399;5674:10;782:20814:46;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;7862:10:11;;;;;:24;;7276:399;7858:686;;7276:399;;;;;;:::o;7858:686::-;7906:18;7902:315;;7858:686;8234:16;;;8230:304;;7858:686;;;;;8230:304;8475:44;8309:143;-1:-1:-1;;;;;;;;;;;8336:24:11;8408:26;8336:24;;782:20814:46;;;;;;;;8010:20:11;782:20814:46;;;;;;;8336:24:11;8408:26;;:::i;:::-;8309:143;;:::i;:::-;782:20814:46;;;;;;;;;;;;;;;;;;;;;;8475:44:11;;;;8230:304;;;;;7902:315;-1:-1:-1;;;;;782:20814:46;;;;;;8010:20:11;782:20814:46;;;;;8089:26:11;;;;:::i;:::-;9312:14;;;;;:::i;:::-;782:20814:46;;;;;;;;;;;8310:38:43;;;8156:46:11;8310:38:43;-1:-1:-1;;;;;;;;;;;8310:38:43;;:::i;8156:46:11:-;;;;7902:315;;;;7862:24;7876:10;;;;7862:24;;7491:110;7563:26;;;:::i;:::-;9312:14;;;;:::i;:::-;782:20814:46;;;;;;;;;;8310:38:43;;;;:::i;:::-;7491:110:11;;;;9069:273;;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;9069:273;9312:14;:::i;:::-;782:20814:46;;;;;;;;;8310:38:43;18895:12:46;782:20814;18895:12;782:20814;8310:38:43;;:::i;:::-;9282:53:11;;9069:273::o"},"deployedBytecode":{"functionDebugData":{"abi_decode":{"entryPoint":2284,"id":null,"parameterSlots":2,"returnSlots":0},"abi_decode_address_payable_fromMemory":{"entryPoint":24288,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_address_dyn":{"entryPoint":3897,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_address_dynt_array_uint256_dynt_array_bytes_dynt_bytes32":{"entryPoint":4894,"id":null,"parameterSlots":1,"returnSlots":4},"abi_decode_array_bytes_dyn":{"entryPoint":4766,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":4001,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_available_length_string":{"entryPoint":4122,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bool_fromMemory":{"entryPoint":26455,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string":{"entryPoint":4177,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_calldata":{"entryPoint":8344,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint256_fromMemory":{"entryPoint":17305,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint32":{"entryPoint":13066,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_uint8":{"entryPoint":8169,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_uint8_32494":{"entryPoint":8185,"id":null,"parameterSlots":0,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_address_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_address_uint256_uint256_address_bool_uint256_uint256_string":{"entryPoint":3627,"id":null,"parameterSlots":9,"returnSlots":1},"abi_encode_array_address_dyn":{"entryPoint":14494,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32":{"entryPoint":27511,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32_uint256":{"entryPoint":27581,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_array_bytes_dyn":{"entryPoint":14555,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":9705,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":1962,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4_32410":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes4_32515":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_enum_ProposalState":{"entryPoint":7565,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_packed_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":2506,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage":{"entryPoint":3477,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage_32521":{"entryPoint":3043,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_32522":{"entryPoint":3207,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_32523":{"entryPoint":3342,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_string_string_string_uint256_uint256_uint256_uint256_bool":{"entryPoint":13755,"id":null,"parameterSlots":10,"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_address_address_uint256_string":{"entryPoint":25878,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_uint256_address_array_address_dyn_array_uint256_dyn_array_string_dyn_array_bytes_dyn_uint256_uint256_string":{"entryPoint":15237,"id":null,"parameterSlots":10,"returnSlots":1},"abi_encode_uint256_address_array_address_dyn_array_uint256_dyn_string":{"entryPoint":24024,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_uint256_address_bool_uint256_uint256_string":{"entryPoint":9535,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_uint256_address_bytes":{"entryPoint":25604,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_address_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_array_address_dyn_storage_array_uint256_dyn":{"entryPoint":24666,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_enum_ProposalState_bytes32":{"entryPoint":15104,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_53212":{"entryPoint":null,"id":null,"parameterSlots":2,"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":16284,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint256_uint8_uint256_string_bytes":{"entryPoint":16226,"id":null,"parameterSlots":6,"returnSlots":1},"allocate_and_zero_memory_array_array_bytes_dyn":{"entryPoint":23069,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_and_zero_memory_array_array_string_dyn":{"entryPoint":15163,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_and_zero_memory_struct_struct_Checkpoint208":{"entryPoint":18773,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory":{"entryPoint":3861,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_32424":{"entryPoint":3829,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_array_string":{"entryPoint":14475,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_array_address_dyn":{"entryPoint":3874,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_string":{"entryPoint":4095,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_bytes_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"array_push_from_bytes_to_array_bytes_storage_dyn_ptr":{"entryPoint":24370,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":21626,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_53203":{"entryPoint":21400,"id":null,"parameterSlots":1,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_64788":{"entryPoint":21530,"id":null,"parameterSlots":1,"returnSlots":0},"checked_add_uint256":{"entryPoint":15150,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_uint256_32603":{"entryPoint":15136,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256":{"entryPoint":18970,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_uint256_32604":{"entryPoint":18926,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256_32608":{"entryPoint":18948,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_uint256":{"entryPoint":17457,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_bytes_storage":{"entryPoint":23339,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_from_storage_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_storage_array_end_array_address_dyn":{"entryPoint":23111,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_address":{"entryPoint":23088,"id":null,"parameterSlots":2,"returnSlots":0},"convert_bytes32_to_bytes1":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_array_from_storage_to_memory_bytes":{"entryPoint":1796,"id":null,"parameterSlots":1,"returnSlots":1},"copy_array_to_storage_from_array_address_dyn_to_array_address_dyn":{"entryPoint":23146,"id":null,"parameterSlots":2,"returnSlots":0},"copy_array_to_storage_from_array_bytes_dyn_to_array_bytes_dyn":{"entryPoint":23614,"id":null,"parameterSlots":2,"returnSlots":0},"copy_array_to_storage_from_array_uint256_dyn_to_array_uint256_dyn":{"entryPoint":23247,"id":null,"parameterSlots":2,"returnSlots":0},"copy_byte_array_to_storage_from_bytes_to_bytes":{"entryPoint":23408,"id":null,"parameterSlots":2,"returnSlots":0},"copy_struct_to_storage_from_struct_Proposal_to_struct_Proposal":{"entryPoint":25440,"id":null,"parameterSlots":2,"returnSlots":0},"copy_struct_to_storage_from_struct_TokenDistributionProposal_to_struct_TokenDistributionProposal":{"entryPoint":23840,"id":null,"parameterSlots":2,"returnSlots":0},"copy_struct_to_storage_from_struct_TreasuryProposal_to_struct_TreasuryProposal":{"entryPoint":25796,"id":null,"parameterSlots":2,"returnSlots":0},"external_fun_BALLOT_TYPEHASH":{"entryPoint":13007,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_CLOCK_MODE":{"entryPoint":7902,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_COUNTING_MODE":{"entryPoint":12814,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_EXTENDED_BALLOT_TYPEHASH":{"entryPoint":7093,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_allowance":{"entryPoint":12908,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_approve":{"entryPoint":2772,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_balanceOf":{"entryPoint":8779,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_cancel":{"entryPoint":7712,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVote":{"entryPoint":8201,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteBySig":{"entryPoint":10166,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReason":{"entryPoint":8953,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParams":{"entryPoint":8563,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParamsBySig":{"entryPoint":8389,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_checkpoints":{"entryPoint":13465,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_clock":{"entryPoint":10446,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_createProposal":{"entryPoint":12468,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_createTokenDistributionProposal":{"entryPoint":4204,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_createTreasuryProposal":{"entryPoint":5745,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_decimals":{"entryPoint":7152,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegate":{"entryPoint":8525,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegateBySig":{"entryPoint":12235,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegates":{"entryPoint":8281,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_depositToTreasury":{"entryPoint":11923,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_dleInfo":{"entryPoint":13866,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_eip712Domain":{"entryPoint":9757,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_execute":{"entryPoint":6697,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_executeTokenDistributionProposal":{"entryPoint":7180,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_executeTreasuryProposal":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getAvailableWithdrawal":{"entryPoint":11664,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastTotalSupply":{"entryPoint":9959,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastVotes":{"entryPoint":7292,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes":{"entryPoint":13252,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotesWithParams":{"entryPoint":10737,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes_4892":{"entryPoint":10964,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_hasVoted":{"entryPoint":7623,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_hashProposal":{"entryPoint":12440,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_initialTokensDistributed":{"entryPoint":2978,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_installModule":{"entryPoint":5608,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_lastWithdrawalBlock":{"entryPoint":10648,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_name":{"entryPoint":2526,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_nonces":{"entryPoint":9474,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_numCheckpoints":{"entryPoint":8704,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155BatchReceived":{"entryPoint":11733,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155Received":{"entryPoint":13648,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC721Received":{"entryPoint":4641,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalCounter":{"entryPoint":3013,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalDeadline":{"entryPoint":11893,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalEta":{"entryPoint":11609,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalNeedsQueuing":{"entryPoint":11280,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalProposer":{"entryPoint":4589,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalSnapshot":{"entryPoint":7038,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalThreshold":{"entryPoint":11703,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalVotes":{"entryPoint":8026,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposals":{"entryPoint":2026,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_propose":{"entryPoint":9038,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_queue":{"entryPoint":4992,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorum":{"entryPoint":14170,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumDenominator":{"entryPoint":10709,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator":{"entryPoint":8674,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator_4535":{"entryPoint":11076,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumPercentage":{"entryPoint":7996,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_relay":{"entryPoint":12127,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setProposalThreshold":{"entryPoint":13380,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingDelay":{"entryPoint":8840,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingPeriod":{"entryPoint":13085,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_signProposal":{"entryPoint":11308,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_signTokenDistributionProposal":{"entryPoint":9174,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_signTreasuryProposal":{"entryPoint":6091,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_state":{"entryPoint":7578,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_supportsInterface":{"entryPoint":2174,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_symbol":{"entryPoint":10481,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_timelock":{"entryPoint":12773,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_token":{"entryPoint":14356,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_tokenDistributionProposalCounter":{"entryPoint":14425,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_tokenDistributionProposals":{"entryPoint":9591,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_totalSupply":{"entryPoint":5578,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_totalTreasuryBalance":{"entryPoint":13350,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transfer":{"entryPoint":11227,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transferFrom":{"entryPoint":6512,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_treasuryProposalCounter":{"entryPoint":11046,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_treasuryProposals":{"entryPoint":3701,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateQuorumNumerator":{"entryPoint":2334,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateTimelock":{"entryPoint":11111,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_version":{"entryPoint":8103,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingDelay":{"entryPoint":7254,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingPeriod":{"entryPoint":2295,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":1523,"id":null,"parameterSlots":1,"returnSlots":1},"extract_from_storage_value_dynamict_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"extract_from_storage_value_dynamict_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"extract_from_storage_value_offsett_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"extract_returndata":{"entryPoint":16609,"id":null,"parameterSlots":0,"returnSlots":1},"finalize_allocation":{"entryPoint":1763,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_32416":{"entryPoint":1603,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_32512":{"entryPoint":1627,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_53180":{"entryPoint":1654,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_53183":{"entryPoint":1681,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_53184":{"entryPoint":1708,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_53189":{"entryPoint":1735,"id":null,"parameterSlots":1,"returnSlots":0},"fun":{"entryPoint":14455,"id":519,"parameterSlots":0,"returnSlots":0},"fun__castVote":{"entryPoint":16322,"id":1817,"parameterSlots":5,"returnSlots":1},"fun_approve":{"entryPoint":18715,"id":6098,"parameterSlots":3,"returnSlots":0},"fun_balanceOf":{"entryPoint":null,"id":5733,"parameterSlots":1,"returnSlots":1},"fun_cancel":{"entryPoint":27190,"id":4297,"parameterSlots":4,"returnSlots":1},"fun_castVote":{"entryPoint":16198,"id":1742,"parameterSlots":4,"returnSlots":1},"fun_castVoteWithReasonAndParamsBySig":{"entryPoint":15952,"id":1718,"parameterSlots":7,"returnSlots":1},"fun_checkGovernance":{"entryPoint":16657,"id":829,"parameterSlots":0,"returnSlots":0},"fun_clear":{"entryPoint":null,"id":14608,"parameterSlots":0,"returnSlots":0},"fun_countVote":{"entryPoint":17070,"id":3839,"parameterSlots":4,"returnSlots":1},"fun_delegate":{"entryPoint":17825,"id":5061,"parameterSlots":2,"returnSlots":0},"fun_domainSeparatorV4":{"entryPoint":19771,"id":8872,"parameterSlots":0,"returnSlots":1},"fun_empty":{"entryPoint":null,"id":14644,"parameterSlots":0,"returnSlots":1},"fun_executeOperations":{"entryPoint":27659,"id":4244,"parameterSlots":5,"returnSlots":0},"fun_executeTokenDistribution":{"entryPoint":24804,"id":15699,"parameterSlots":1,"returnSlots":0},"fun_executeTreasuryProposal":{"entryPoint":25933,"id":16250,"parameterSlots":1,"returnSlots":0},"fun_getAvailableWithdrawal":{"entryPoint":26144,"id":16337,"parameterSlots":1,"returnSlots":1},"fun_getVotes":{"entryPoint":17332,"id":4481,"parameterSlots":2,"returnSlots":1},"fun_hashProposal":{"entryPoint":14640,"id":599,"parameterSlots":4,"returnSlots":1},"fun_hashTypedDataV4":{"entryPoint":19733,"id":8909,"parameterSlots":1,"returnSlots":1},"fun_insert":{"entryPoint":22116,"id":13646,"parameterSlots":3,"returnSlots":2},"fun_insert_32402":{"entryPoint":21700,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_insert_53193":{"entryPoint":21933,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_isValidDescriptionForProposer":{"entryPoint":16966,"id":2089,"parameterSlots":2,"returnSlots":1},"fun_isValidSignatureNow":{"entryPoint":20482,"id":9105,"parameterSlots":3,"returnSlots":1},"fun_latest":{"entryPoint":21332,"id":13471,"parameterSlots":1,"returnSlots":1},"fun_latest_32401":{"entryPoint":21184,"id":13471,"parameterSlots":0,"returnSlots":1},"fun_latest_53192":{"entryPoint":21258,"id":13471,"parameterSlots":0,"returnSlots":1},"fun_mint":{"entryPoint":25073,"id":5987,"parameterSlots":2,"returnSlots":0},"fun_moveDelegateVotes":{"entryPoint":17952,"id":5194,"parameterSlots":3,"returnSlots":0},"fun_onERC1155BatchReceived":{"entryPoint":16773,"id":1959,"parameterSlots":0,"returnSlots":1},"fun_popFront":{"entryPoint":22702,"id":14494,"parameterSlots":0,"returnSlots":1},"fun_proposalDeadline":{"entryPoint":14762,"id":750,"parameterSlots":1,"returnSlots":1},"fun_propose":{"entryPoint":15443,"id":1105,"parameterSlots":5,"returnSlots":1},"fun_propose_962":{"entryPoint":14812,"id":962,"parameterSlots":4,"returnSlots":1},"fun_push":{"entryPoint":18344,"id":5266,"parameterSlots":1,"returnSlots":2},"fun_pushBack":{"entryPoint":22611,"id":14351,"parameterSlots":1,"returnSlots":0},"fun_push_32587":{"entryPoint":18289,"id":5266,"parameterSlots":2,"returnSlots":2},"fun_push_32741":{"entryPoint":18392,"id":5266,"parameterSlots":1,"returnSlots":2},"fun_quorumNumerator":{"entryPoint":17496,"id":4587,"parameterSlots":1,"returnSlots":1},"fun_quorumReached":{"entryPoint":27028,"id":3722,"parameterSlots":1,"returnSlots":1},"fun_recover":{"entryPoint":19426,"id":8699,"parameterSlots":4,"returnSlots":1},"fun_sqrt":{"entryPoint":20885,"id":10179,"parameterSlots":1,"returnSlots":1},"fun_state":{"entryPoint":26479,"id":4116,"parameterSlots":1,"returnSlots":1},"fun_state_708":{"entryPoint":26753,"id":708,"parameterSlots":1,"returnSlots":1},"fun_throwError":{"entryPoint":19592,"id":8748,"parameterSlots":2,"returnSlots":0},"fun_toStringWithFallback":{"entryPoint":20296,"id":7045,"parameterSlots":1,"returnSlots":1},"fun_toStringWithFallback_32469":{"entryPoint":20047,"id":7045,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":20704,"id":10995,"parameterSlots":1,"returnSlots":1},"fun_toUint32":{"entryPoint":20805,"id":11611,"parameterSlots":1,"returnSlots":1},"fun_toUint48":{"entryPoint":20755,"id":11555,"parameterSlots":1,"returnSlots":1},"fun_transfer":{"entryPoint":18441,"id":5877,"parameterSlots":3,"returnSlots":0},"fun_transferVotingUnits":{"entryPoint":26348,"id":5116,"parameterSlots":3,"returnSlots":0},"fun_transferVotingUnits_32704":{"entryPoint":26222,"id":5116,"parameterSlots":2,"returnSlots":0},"fun_tryParseAddress":{"entryPoint":18989,"id":8328,"parameterSlots":3,"returnSlots":2},"fun_tryParseChr":{"entryPoint":19312,"id":8388,"parameterSlots":1,"returnSlots":1},"fun_tryParseHexUintUncheckedBounds":{"entryPoint":19135,"id":8153,"parameterSlots":3,"returnSlots":2},"fun_tryRecover":{"entryPoint":20644,"id":8475,"parameterSlots":2,"returnSlots":3},"fun_tryRecover_8663":{"entryPoint":19450,"id":8663,"parameterSlots":4,"returnSlots":3},"fun_unsafeAccess":{"entryPoint":null,"id":13765,"parameterSlots":2,"returnSlots":1},"fun_unsafeAccess_53204":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_unsafeAccess_64789":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_upperBinaryLookup":{"entryPoint":22514,"id":13698,"parameterSlots":4,"returnSlots":1},"fun_upperBinaryLookup_53182":{"entryPoint":22304,"id":13698,"parameterSlots":3,"returnSlots":1},"fun_upperBinaryLookup_53191":{"entryPoint":22409,"id":13698,"parameterSlots":3,"returnSlots":1},"fun_useCheckedNonce":{"entryPoint":18839,"id":6807,"parameterSlots":2,"returnSlots":0},"fun_useNonce":{"entryPoint":null,"id":6782,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap":{"entryPoint":16802,"id":2018,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap_53177":{"entryPoint":16884,"id":2018,"parameterSlots":1,"returnSlots":1},"fun_validateTimepoint":{"entryPoint":17768,"id":4877,"parameterSlots":1,"returnSlots":1},"fun_verifyCallResult":{"entryPoint":18798,"id":6667,"parameterSlots":2,"returnSlots":1},"fun_voteSucceeded":{"entryPoint":null,"id":3745,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":15890,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_uint256_of_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"mapping_index_access_mapping_address_uint256_of_address_32420":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_uint256_of_address_32584":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_uint256_of_address_32598":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_32414":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_32417":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_32426":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_32465":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_32484":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":15927,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x00":{"entryPoint":21378,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":14740,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":7528,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":15905,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":1581,"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_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral":{"entryPoint":22918,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_01a7":{"entryPoint":24161,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_0fa5":{"entryPoint":25374,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_2707":{"entryPoint":24085,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_37e2":{"entryPoint":24224,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_3e76":{"entryPoint":25644,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_499f":{"entryPoint":24608,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_535d":{"entryPoint":24549,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_582f":{"entryPoint":22790,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_58ef":{"entryPoint":25245,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_59ea":{"entryPoint":25720,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_6bac":{"entryPoint":24415,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_920f":{"entryPoint":22859,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_988e":{"entryPoint":24309,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_a2e6":{"entryPoint":22981,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_cd09":{"entryPoint":25312,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_ff74":{"entryPoint":24483,"id":null,"parameterSlots":1,"returnSlots":0},"revert_forward":{"entryPoint":17320,"id":null,"parameterSlots":0,"returnSlots":0},"shift_right_uint256_uint8":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"storage_array_index_access_struct_Checkpoint208_dyn":{"entryPoint":17472,"id":null,"parameterSlots":2,"returnSlots":2},"transit_byte_array_long_to_short_bytes_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offset_0t_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_address_to_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool_32430":{"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_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},"update_storage_value_offsett_uint256_to_uint256_32490":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256_32500":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256_32687":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256_32700":{"entryPoint":null,"id":null,"parameterSlots":1,"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":7550,"id":null,"parameterSlots":1,"returnSlots":0},"validator_assert_enum_RecoverError":{"entryPoint":19582,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_address":{"entryPoint":2755,"id":null,"parameterSlots":1,"returnSlots":0},"wrapping_div_uint256":{"entryPoint":20853,"id":null,"parameterSlots":2,"returnSlots":1},"wrapping_div_uint256_32423":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"write_to_memory_address":{"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":[],"immutableReferences":{"4384":[{"length":32,"start":10857},{"length":32,"start":14218},{"length":32,"start":14378},{"length":32,"start":14940},{"length":32,"start":17381},{"length":32,"start":27098}],"8770":[{"length":32,"start":19828}],"8772":[{"length":32,"start":20009}],"8774":[{"length":32,"start":19774}],"8776":[{"length":32,"start":19907}],"8778":[{"length":32,"start":19945}],"8781":[{"length":32,"start":9782}],"8784":[{"length":32,"start":9826}]},"linkReferences":{},"object":"60806040526004361015610023575b361561001957600080fd5b610021613877565b005b60003560e01c80627e637e14610582578063013cf08b1461057d57806301ffc9a71461057857806302a251a31461057357806306f3f9e61461056e57806306fdde0314610569578063095ea7b3146105645780630965211e1461055f5780630c0512e91461055a5780630eb1259614610555578063108b4e0714610550578063143489d01461054b578063150b7a0214610546578063160cbed71461054157806318160ddd1461053c578063194a94fc146105375780631b470faf146105325780631c0f4d8d1461052d57806323b872dd146105285780632656227d146105235780632d63f6931461051e5780632fe3e26114610519578063313ce5671461051457806335c4364f1461050f5780633932abb11461050a5780633a46b1a8146105055780633e4f49e61461050057806343859632146104fb578063452115d6146104f65780634bf5d7e9146104f15780634fa76ec9146104ec578063544ffc9c146104e757806354fd4d50146104e257806356781388146104dd578063587cde1e146104d85780635b8d0e0d146104d35780635c19a95c146104ce5780635f398a14146104c957806360c4247f146104c45780636fcfff45146104bf57806370a08231146104ba57806379051887146104b55780637b3c71d3146104b05780637d5e81e2146104ab5780637e63b733146104a65780637ecebe00146104a1578063823081581461049c57806384b0196e146104975780638e539e8c146104925780638ff262e31461048d57806391ddadf41461048857806395d89b411461048357806396e973fb1461047e57806397c3d334146104795780639a802a6d146104745780639ab24eb01461046f5780639be65b401461046a578063a7713a7014610465578063a890c91014610460578063a9059cbb1461045b578063a9a9529414610456578063ab27301614610451578063ab58fb8e1461044c578063b493193614610447578063b58131b014610442578063bc197c811461043d578063c01f9e3714610438578063c0e58a0e14610433578063c28bc2fa1461042e578063c3cda52014610429578063c59057e414610424578063d1fad4cd1461041f578063d33219b41461041a578063dd4e2ba514610415578063dd62ed3e14610410578063deaaa7cc1461040b578063e540d01d14610406578063eb9019d414610401578063ec4a59d9146103fc578063ece40cc1146103f7578063f1127ed8146103f2578063f23a6e61146103ed578063f2c26a47146103e8578063f8ce560a146103e3578063fc0c546a146103de5763fd5c4be70361000e57613859565b613814565b61375a565b61362a565b613550565b613499565b613444565b613426565b6133c4565b61331d565b6132cf565b61326c565b61320e565b6131e5565b6130b4565b613098565b612fcb565b612f5f565b612e93565b612e75565b612dd5565b612db7565b612d90565b612d59565b612c2c565b612c10565b612bdb565b612b67565b612b44565b612b26565b612ad4565b6129f1565b6129d5565b612998565b6128f1565b6128ce565b6127b6565b6126e7565b61261d565b612577565b612502565b6123d6565b61234e565b6122f9565b612288565b61224b565b612200565b6121e2565b612173565b61214d565b6120c5565b612059565b612009565b611fa7565b611f5a565b611f3c565b611ede565b611e20565b611dc7565b611d9a565b611c7c565b611c56565b611c0c565b611bf0565b611bb5565b611b7e565b611a29565b611970565b6117cb565b611671565b6115e8565b6115ca565b611380565b611221565b6111ed565b61106c565b610e75565b610bc5565b610ba2565b610ad4565b6109de565b61091e565b6108f7565b61087e565b6107ea565b346105ee5760203660031901126105ee576100216004358060005260216020526040600020600160058201916105e28354916105c160ff841615615e15565b6105d1600282015442101561629d565b600660078201549101541115615fa3565b60ff191617905561654d565b600080fd5b90600182811c92168015610623575b602083101461060d57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610602565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161065657604052565b61062d565b604081019081106001600160401b0382111761065657604052565b602081019081106001600160401b0382111761065657604052565b60c081019081106001600160401b0382111761065657604052565b60a081019081106001600160401b0382111761065657604052565b61010081019081106001600160401b0382111761065657604052565b90601f801991011681019081106001600160401b0382111761065657604052565b9060405191826000825492610718846105f3565b9081845260019485811690816000146107875750600114610744575b5050610742925003836106e3565b565b9093915060005260209081600020936000915b81831061076f57505061074293508201013880610734565b85548884018501529485019487945091830191610757565b91505061074294506020925060ff191682840152151560051b8201013880610734565b919082519283825260005b8481106107d6575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016107b5565b346105ee5760203660031901126105ee57600435600052601f602052610859604060002061081781610704565b9060028101549060038101549060018060a01b0360048201541660ff60068301541690600860078401549301549360405197889760e0895260e08901906107aa565b956020880152604087015260608601521515608085015260a084015260c08301520390f35b346105ee5760203660031901126105ee5760043563ffffffff60e01b81168091036105ee576020906332a2ad4360e11b81149081156108db575b81156108ca575b506040519015158152f35b6301ffc9a760e01b149050386108bf565b630271189760e51b811491506108b8565b60009103126105ee57565b346105ee5760003660031901126105ee57602063ffffffff60105460301c16604051908152f35b346105ee5760203660031901126105ee5760043561093a614111565b606481116109ab577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b036109746152c0565b1661098f610981836150e0565b65ffffffffffff43166154c4565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206109db9281815201906107aa565b90565b346105ee57600080600319360112610ac0576040519080600b54610a01816105f3565b80855291600191808316908115610a965750600114610a3b575b610a3785610a2b818703826106e3565b604051918291826109ca565b0390f35b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828410610a7e575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101610a63565b869550610a3796935060209250610a2b94915060ff191682840152151560051b8201019293610a1b565b80fd5b6001600160a01b038116036105ee57565b346105ee5760403660031901126105ee57600435610af181610ac3565b6024353315610b89576001600160a01b038216918215610b70573360009081526001602052604090208291610b38915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b346105ee5760003660031901126105ee57602060ff602654166040519015158152f35b346105ee5760003660031901126105ee576020602254604051908152f35b60165460009291610bf3826105f3565b80825291600190818116908115610c6a5750600114610c1157505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410610c5257505060209250010190565b80546020858501810191909152909301928101610c40565b915050602093945060ff929192191683830152151560051b010190565b60175460009291610c97826105f3565b80825291600190818116908115610c6a5750600114610cb557505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410610cf657505060209250010190565b80546020858501810191909152909301928101610ce4565b60185460009291610d1e826105f3565b80825291600190818116908115610c6a5750600114610d3c57505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410610d7d57505060209250010190565b80546020858501810191909152909301928101610d6b565b9060009291805491610da6836105f3565b918282526001938481169081600014610e085750600114610dc8575b50505050565b90919394506000526020928360002092846000945b838610610df4575050505001019038808080610dc2565b805485870183015294019385908201610ddd565b9294505050602093945060ff191683830152151560051b01019038808080610dc2565b95939091926109db9897959360018060a01b038094168852602088015260408701521660608501521515608084015260a083015260c0820152610100908160e082015201906107aa565b346105ee5760203660031901126105ee576004356000526021602052604060002060018060a01b0390610a376008838354169260018101549460028201549060038301541660ff60058401541690600684015492610ee9600786015495610ee26040518099819301610d95565b03876106e3565b60405198899889610e2b565b6040519061012082018281106001600160401b0382111761065657604052565b604051906107428261065b565b6001600160401b0381116106565760051b60200190565b81601f820112156105ee57803591610f5083610f22565b92610f5e60405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610f88575050505090565b8380918335610f9681610ac3565b815201910190610f7a565b81601f820112156105ee57803591610fb883610f22565b92610fc660405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610ff0575050505090565b81358152908301908301610fe2565b6001600160401b03811161065657601f01601f191660200190565b92919261102682610fff565b9161103460405193846106e3565b8294818452818301116105ee578281602093846000960137010152565b9080601f830112156105ee578160206109db9335910161101a565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761109d903690600401610f39565b906024358181116105ee576110b6903690600401610fa1565b90604435916064359182116105ee57610a37936111da6110fb7f8fd808cdcd18f44b7f33c61fb97b83154c1d653ef4a9a2d236b290644edd6c83943690600401611051565b6111088351855114615906565b6111148351151561594b565b61111f428711615986565b33600090815260208190526040902061113b905b5415156159c5565b6111cc6023549661115361114e89613e12565b602355565b61115b615a1d565b61117461116d60025460255490614a1a565b6064900490565b9061117d610ef5565b8781526020810189905260408101939093523360608401526080830152600060a083015260c0820152600060e0820152826101008201526111c78860005260208052604060002090565b615d20565b604051938493338886615dd8565b0390a16040519081529081906020820190565b346105ee5760203660031901126105ee57600435600052600c602052602060018060a01b0360406000205416604051908152f35b346105ee5760803660031901126105ee5761123d600435610ac3565b611248602435610ac3565b6064356001600160401b0381116105ee57611267903690600401611051565b506013546001600160a01b0316300361128c57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b9080601f830112156105ee578135906112b682610f22565b926112c460405194856106e3565b828452602092838086019160051b830101928084116105ee57848301915b8483106112f25750505050505090565b82356001600160401b0381116105ee57869161131384848094890101611051565b8152019201916112e2565b60806003198201126105ee576001600160401b03916004358381116105ee578261134a91600401610f39565b926024358181116105ee578361136291600401610fa1565b926044359182116105ee576113799160040161129e565b9060643590565b346105ee5761138e3661131e565b61139c818385879697613930565b926113a6846141a2565b506013546113c4906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615611579576000966115ab575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b825281806114268c8a8a8d60048601616b77565b03915afa9182156115795760009261157e575b505061144f876000526014602052604060002090565b55601354611465906001600160a01b03166113b8565b90813b156105ee5760008094611491878b51998a97889687956308f2a0bb60e41b875260048701616bbd565b03925af1908115611579576114b5926114b092611560575b5042613b2e565b615113565b65ffffffffffff81161561154f57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289261153e84611520610a3796600161150688600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b8061156d61157392610643565b806108ec565b386114a9565b6143a8565b61159d9250803d106115a4575b61159581836106e3565b810190614399565b3880611439565b503d61158b565b6115c3919650823d84116115a45761159581836106e3565b94386113ef565b346105ee5760003660031901126105ee576020600254604051908152f35b346105ee5760403660031901126105ee576004356001600160401b0381116105ee5761165c61163c7f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401611051565b60243561164881610ac3565b6040519283926040845260408401906107aa565b6001600160a01b0390911660208301520390a1005b346105ee5760803660031901126105ee5760043561168e81610ac3565b6044356064356024356001600160401b0382116105ee57610a37936111da6116db7ff80f5ce91f7d79d29fd2bd635816739c0fae47505f5a30a820e49ace80884165943690600401611051565b6116ef6001600160a01b0384161515615fe5565b6116fa84151561642c565b611708602854851115616478565b611713428711615986565b33600090815260208190526040902061172b90611133565b6117bd6024549661174361173e89613e12565b602455565b61174b615a1d565b61175d61116d60025460255490614a1a565b90611766610ef5565b6001600160a01b0388168152926020840189905260408401523360608401526080830152600060a083015260c0820152600060e0820152826101008201526117b8886000526021602052604060002090565b6164c4565b604051938493338886616516565b346105ee576020806003193601126105ee576004356117f4816000526021602052604060002090565b600581019261181361180e61180a865460ff1690565b1590565b615e15565b61182260028301544210615e61565b33600090815260208190526040902061183e905b541515615ea0565b60009060048301918254905b8181106118fe5750506040513360601b6001600160601b03191691810191825261188d9290916118889083906014015b03601f1981018452836106e3565b615f32565b6006600782019161189e8354613e12565b92839055604080518581523360208201529081018490527fc5fb6601ac4858dba31868a09f1646a3bfe4638f325353bb142719b81e3645a190606090a1015411156118e557005b6118f961002192600160ff19825416179055565b61654d565b8061191661190f61192c9387614440565b50546105f3565b158015611931575b61192790615ef5565b613e12565b61184a565b506119276119486119428388614440565b50610704565b805133916001600160a01b0391611966919081018901908901615ee0565b161415905061191e565b346105ee5760603660031901126105ee5760043561198d81610ac3565b60243561199981610ac3565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106119e3575b6119d79350614809565b60405160018152602090f35b8284106119ff576119fa836119d79503338361491b565b6119cd565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b611a323661131e565b611a40818385879597613930565b92611a4a846141f4565b50611a75611a6285600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611b19575b94611a9b9291610a379686616c0b565b6013543091166001600160a01b0316141580611af8575b611ae9575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081016111da565b611af36000600d55565b611ab7565b50611b1461180a600d546001600160801b0381169060801c1490565b611ab2565b9290939160005b8451811015611b7457611b559030611b4b6113b8611b3e848a613e37565b516001600160a01b031690565b14611b5a57613e12565b611b20565b611927611b67828a613e37565b5160208151910120615853565b5091939092611a8b565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b346105ee5760003660031901126105ee5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346105ee5760003660031901126105ee57602060405160128152f35b346105ee5760203660031901126105ee576100216004358060005260208052604060002060016005820191611c4a8354916105c160ff841615615e15565b60ff19161790556160e4565b346105ee5760003660031901126105ee57602065ffffffffffff60105416604051908152f35b346105ee5760403660031901126105ee57600435611c9981610ac3565b6001600160a01b0316600090815260096020526040812090611cbc602435614568565b91805482938160058111611d0e575b5090602094611cda92846157f2565b80611cf45750505b6040516001600160d01b039091168152f35b91611d00849293614431565b92815220015460301c611ce2565b94611d1886615195565b8603958611611d6357602095611cda9385875265ffffffffffff80838a8a2001541690851610600014611d515750915b91925094611ccb565b929150611d5d90613b20565b90611d48565b613994565b634e487b7160e01b600052602160045260246000fd5b60081115611d8857565b611d68565b906008821015611d885752565b346105ee5760203660031901126105ee576020611db860043561676f565b611dc56040518092611d8d565bf35b346105ee5760403660031901126105ee57602060ff611e14602435611deb81610ac3565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346105ee57611e2e3661131e565b90611e3d828285879697613930565b611e468161676f565b6008811015611d885760018060ff83161b1615611eb157506000908152600c60205260409020546001600160a01b03163303611e9957610a3793611e8993616a36565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b90611ed5606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60016044820152fd5b346105ee5760003660031901126105ee57610a37604051611efe8161065b565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906107aa565b346105ee5760003660031901126105ee576020602554604051908152f35b346105ee5760203660031901126105ee57600435600052601160205260406000208054610a3760026001840154930154604051938493846040919493926060820195825260208201520152565b346105ee5760003660031901126105ee57610a37604051611fc78161065b565b60018152603160f81b60208201526040519182916020835260208301906107aa565b6024359060ff821682036105ee57565b6064359060ff821682036105ee57565b346105ee5760403660031901126105ee576020612051612027611fe9565b60405161203381610676565b600081526040519161204483610676565b6000835233600435613fc2565b604051908152f35b346105ee5760203660031901126105ee57602060043561207881610ac3565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f840112156105ee578235916001600160401b0383116105ee57602083818601950101116105ee57565b346105ee5760c03660031901126105ee576120de611fe9565b604435906120eb82610ac3565b6001600160401b03906064358281116105ee5761210c903690600401612098565b6084358481116105ee57612124903690600401611051565b9160a4359485116105ee57610a3795612144611e89963690600401611051565b94600435613e50565b346105ee5760203660031901126105ee5761002160043561216d81610ac3565b336145a1565b346105ee5760803660031901126105ee5761218c611fe9565b6001600160401b03906044358281116105ee576121ad903690600401612098565b90916064359384116105ee576121d8612051936121d06020963690600401611051565b93369161101a565b9033600435613fc2565b346105ee5760203660031901126105ee576020612051600435614458565b346105ee5760203660031901126105ee5760043561221d81610ac3565b60018060a01b03166000526009602052602061223d604060002054615145565b63ffffffff60405191168152f35b346105ee5760203660031901126105ee57602061205160043561226d81610ac3565b6001600160a01b031660009081526020819052604090205490565b346105ee5760203660031901126105ee5760043565ffffffffffff8082168092036105ee576122b5614111565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b346105ee5760603660031901126105ee57612312611fe9565b6044356001600160401b0381116105ee5760209161234161233a612051933690600401612098565b369161101a565b6040519161204483610676565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761237f903690600401610f39565b906024358181116105ee57612398903690600401610fa1565b916044358281116105ee576123b190369060040161129e565b6064359283116105ee57610a37936123d0611e89943690600401611051565b926139dc565b346105ee576020806003193601126105ee576004356123fe8160005260208052604060002090565b600581019261241461180e61180a865460ff1690565b61242360028301544210615e61565b33600090815260208190526040902061243b90611836565b60009060048301918254905b8181106124ec5750506040513360601b6001600160601b03191691810191825261247b92909161188890839060140161187a565b6006600782019161248c8354613e12565b92839055604080518581523360208201529081018490527f77c69d1b59f862d9677ac552a49c26ba3fe18ccc64ad8da630a5343c306dea6190606090a1015411156124d357005b6124e761002192600160ff19825416179055565b6160e4565b8061191661190f6124fd9387614440565b612447565b346105ee5760203660031901126105ee5760043561251f81610ac3565b60018060a01b031660005260076020526020604060002054604051908152f35b926109db96959260c09592855260018060a01b0316602085015215156040840152606083015260808201528160a082015201906107aa565b346105ee5760203660031901126105ee576004356000526020805260406000206002810154610a37600860018060a01b036003850154169360ff6005820154166006820154906125dd6007840154936125d66040518097819301610d95565b03856106e3565b6040519687968761253f565b90815180825260208080930193019160005b828110612609575050505090565b8351855293810193928101926001016125fb565b346105ee5760003660031901126105ee576126b861265a7f0000000000000000000000000000000000000000000000000000000000000000614e4f565b610a376126867f0000000000000000000000000000000000000000000000000000000000000000614f48565b6126c66040519161269683610676565b60008352604051958695600f60f81b875260e0602088015260e08701906107aa565b9085820360408701526107aa565b90466060850152306080850152600060a085015283820360c08501526125e9565b346105ee5760203660031901126105ee57612703600435614568565b600a5490600082916005841161275b575b61271e9350615720565b60008161273357505060405160008152602090f35b600a612740602093614431565b9152600080516020616cb4833981519152015460301c611ce2565b919261276681615195565b8103908111611d635761271e93600a835265ffffffffffff8083600080516020616cb4833981519152015416908516106000146127a4575091612714565b9291506127b090613b20565b90612714565b346105ee5760803660031901126105ee576004356127d2611fe9565b90604435916127e083610ac3565b6064356001600160401b0381116105ee5761180a612805612892923690600401611051565b6001600160a01b038616600090815260076020526040902080546001810190915561288c9060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a0815261288481610691565b519020614d15565b86615002565b6128ad5790611e8991610a37936128a761388b565b92613f46565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346105ee5760003660031901126105ee57602060405165ffffffffffff43168152f35b346105ee57600080600319360112610ac0576040519080600454612914816105f3565b80855291600191808316908115610a96575060011461293d57610a3785610a2b818703826106e3565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410612980575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101612965565b346105ee5760203660031901126105ee576004356129b581610ac3565b60018060a01b031660005260276020526020604060002054604051908152f35b346105ee5760003660031901126105ee57602060405160648152f35b346105ee5760603660031901126105ee57600435612a0e81610ac3565b6044356001600160401b0381116105ee57612a6591612a336020923690600401611051565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa801561157957610a3791600091612ab6575b506040519081529081906020820190565b612ace915060203d81116115a45761159581836106e3565b38612aa5565b346105ee5760203660031901126105ee57600435612af181610ac3565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612b1d90615354565b16604051908152f35b346105ee5760003660031901126105ee576020602454604051908152f35b346105ee5760003660031901126105ee5760206001600160d01b03612b1d6152c0565b346105ee5760203660031901126105ee57600435612b8481610ac3565b612b8c614111565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b346105ee5760403660031901126105ee57612c05600435612bfb81610ac3565b6024359033614809565b602060405160018152f35b346105ee5760203660031901126105ee57602060405160018152f35b346105ee5760203660031901126105ee57600435612c5481600052601f602052604060002090565b6006810190612c6a61180e61180a845460ff1690565b612c7960028201544210615e61565b336000908152602081905260409020612c9190611836565b6040513360601b6001600160601b0319166020820152612ccb90612cc281603481015b03601f1981018352826106e3565b60058301615f32565b60076008820191612cdc8354613e12565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a101541115612d2357005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f906109a690611e89565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b346105ee5760203660031901126105ee576020612051600435612db281610ac3565b616620565b346105ee5760003660031901126105ee576020600f54604051908152f35b346105ee5760a03660031901126105ee57612df1600435610ac3565b612dfc602435610ac3565b6001600160401b036044358181116105ee57612e1c903690600401610fa1565b506064358181116105ee57612e35903690600401610fa1565b506084359081116105ee57612e4e903690600401611051565b50610a37612e5a614185565b6040516001600160e01b031990911681529081906020820190565b346105ee5760203660031901126105ee5760206120516004356139aa565b346105ee5760203660031901126105ee57600435612eb281151561642c565b3360005260006020528060406000205410612f23576109a681612ef77fbd67ec2db294b72ed21ac12cf37aa44775b63ea7ab9345652a1d28be069c4100933033614809565b612f0b612f0682602854613b2e565b602855565b60408051338152602081019290925290918291820190565b60405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606490fd5b60603660031901126105ee57600435612f7781610ac3565b604435906001600160401b0382116105ee5760008091612f9e610021943690600401612098565b90612fa7614111565b81604051928392833781018481520391602435905af1612fc56140e1565b9061496e565b346105ee5760c03660031901126105ee57600435612fe881610ac3565b60443590602435612ff7611ff9565b83421161307f576130736100219461307a926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261305b826106ac565b61306e60a4359360843593519020614d15565b614be2565b9182614997565b6145a1565b604051632341d78760e11b815260048101859052602490fd5b346105ee5760206120516130ab3661131e565b92919091613930565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee576130e5903690600401611051565b6024359182116105ee577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111da613124610a37943690600401610fa1565b926131d760443594613138835115156162e0565b6131448151151561631e565b61314f428711615986565b6022549561316461315f88613e12565b602255565b61316c615a1d565b61317e61116d60025460255490614a1a565b91613187610ef5565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526131d286600052601f602052604060002090565b616360565b604051918291338684616404565b346105ee5760003660031901126105ee576013546040516001600160a01b039091168152602090f35b346105ee5760003660031901126105ee57610a3760405161322e8161065b565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906107aa565b346105ee5760403660031901126105ee5760206132c660043561328e81610ac3565b6024359061329b82610ac3565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b346105ee5760003660031901126105ee5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff821682036105ee57565b346105ee5760203660031901126105ee5761333661330a565b61333e614111565b63ffffffff8082169182156133ab577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346105ee5760403660031901126105ee57612a6560206004356133e681610ac3565b60006040516133f481610676565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b346105ee5760003660031901126105ee576020602854604051908152f35b346105ee5760203660031901126105ee57600435613460614111565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b346105ee5760403660031901126105ee576004356134b681610ac3565b6024359063ffffffff821682036105ee57610a3791613506916134d7614955565b506134e0614955565b506001600160a01b03166000908152600960205260409020613500614955565b50614440565b50604051906135148261065b565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b346105ee5760a03660031901126105ee5761356c600435610ac3565b613577602435610ac3565b6084356001600160401b0381116105ee57613596903690600401611051565b506013546001600160a01b0316300361128c5760405163f23a6e6160e01b8152602090f35b979499989592613600906135f261360e946135e46101009b98958d6101209081815201906107aa565b8c810360208e0152906107aa565b908a820360408c01526107aa565b9088820360608a01526107aa565b97608087015260a086015260c085015260e08401521515910152565b346105ee57600080600319360112610ac05760405190818160155461364e816105f3565b8084529360019180831690811561373657506001146136d9575b5050613676925003826106e3565b6040519061368e8261368781610be3565b03836106e3565b610a376040516136a8816136a181610c87565b03826106e3565b6040516136b8816136a181610d0e565b601954601a54601c5491601d549360ff601e541695604051998a998a6135bb565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b84831061371b575061367693505081016020013880613668565b81935090816020925483858901015201910190918492613701565b9150506020925061367694915060ff191682840152151560051b8201013880613668565b346105ee5760203660031901126105ee57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa91821561157957610a37926064926137de926000926137f0575b506137d890614458565b90614a1a565b04604051918291829190602083019252565b6137d891925061380d9060203d81116115a45761159581836106e3565b91906137ce565b346105ee5760003660031901126105ee576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346105ee5760003660031901126105ee576020602354604051908152f35b6013546001600160a01b0316300361128c57565b6040519061389882610676565b60008252565b90815180825260208080930193019160005b8281106138be575050505090565b83516001600160a01b0316855293810193928101926001016138b0565b90815180825260208092019182818360051b85019501936000915b8483106139065750505050505090565b909192939495848061392083856001950387528a516107aa565b98019301930191949392906138f6565b929061397c9261398e9260405194859261396c613959602086019960808b5260a087019061389e565b601f1996878783030160408801526125e9565b90858583030160608601526138db565b906080830152039081018352826106e3565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611d63571690565b91939290936139eb8233614246565b15613ae857600f549485613a07575b6109db9495503393613c53565b65ffffffffffff43811660001901818111611d6357613a58916020916000604051613a3181610676565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561157957600091613aca575b50868110613aa357506139fa565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613ae2915060203d81116115a45761159581836106e3565b38613a95565b60405163d9b3955760e01b8152336004820152602490fd5b604090613b1c6000939594606083019683526020830190611d8d565b0152565b9060018201809211611d6357565b91908201809211611d6357565b90613b4582610f22565b613b5260405191826106e3565b8281528092613b63601f1991610f22565b019060005b828110613b7457505050565b806060602080938501015201613b68565b9592613bb890613bc6939b9a9899969592885260209b60018060a01b03168c8901526101208060408a015288019061389e565b9086820360608801526125e9565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b838210613c255750505050506109db96975090613c0c9184820360a08601526138db565b9360c083015260e08201526101008184039101526107aa565b90919293958380613c448f93600194601f199082030186528a516107aa565b98019201920190939291613be8565b919493909294613c6b86516020880120828686613930565b958351855190818114801590613e07575b8015613dff575b613dd657505065ffffffffffff9485613cb8613ca98a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613daf577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e095613daa9363ffffffff613cfa60105493808516904316613b2e565b9260301c16613d88613d168c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a16178155613d5f613d3b86615113565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b613d6883615145565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b613d9c613d958951613b3b565b9184613b2e565b936040519889988d8a613b85565b0390a1565b87613db98161676f565b6040516331b75e4d60e01b8152918291611a259160048401613b00565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b508015613c83565b508351811415613c7c565b6000198114611d635760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015613e4b5760209160051b010190565b613e21565b93909291969561180a613f0a91613f048a613e868160018060a01b03166000526007602052604060002080549060018201905590565b613e9136888a61101a565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152612884816106c7565b8a615002565b613f25576109db959691613f1f91369161101a565b92613fc2565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916109db939160405193613f5985610676565b60008552613fc2565b93909260ff613f8e936109db97958752166020860152604085015260a0606085015260a08401906107aa565b9160808184039101526107aa565b909260ff6080936109db96958452166020830152604082015281606082015201906107aa565b929190613fce8461676f565b6008811015611d88576002600160ff83161b16156140b3575083600052600c60205261402a61402261401c614011604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b836143b4565b8383876142ae565b9480511560001461407757506140717fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613f9c565b0390a290565b614071907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886613f62565b6040516331b75e4d60e01b8152600481018690526064916140d8906024830190611d8d565b60026044820152fd5b3d1561410c573d906140f282610fff565b9161410060405193846106e3565b82523d6000602084013e565b606090565b6013546001600160a01b031633810361416d57300361412c57565b61413536610fff565b61414260405191826106e3565b368152602081019036600083376000602036830101525190205b806141656158ae565b0361415c5750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b0316300361128c5763bc197c8160e01b90565b6141ab8161676f565b906008821015611d88576010600160ff84161b16156141c8575090565b6141eb606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60106044820152fd5b6141fd8161676f565b906008821015611d88576030600160ff84161b161561421a575090565b61423d606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60306044820152fd5b908051603481106142a65760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b016142a65761428591602919820190614a2d565b901591821561429357505090565b6001600160a01b03918216911614919050565b505050600190565b6142c5909291926000526011602052604060002090565b91600383016142f06142e983839060018060a01b0316600052602052604060002090565b5460ff1690565b6143785761431660ff9392614323929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b168061433a5750614335828254613b2e565b905590565b600181036143515750600101614335828254613b2e565b60020361436657600201614335828254613b2e565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b908160209103126105ee575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561157957600091614419575090565b6109db915060203d81116115a45761159581836106e3565b600019810191908211611d6357565b8054821015613e4b5760005260206000200190600090565b601254906000198201828111611d6357821115613e4b57600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff9281848216111561455d57506144b790615113565b83908260058111614507575b506144ce9350615789565b806144e157505b6001600160d01b031690565b6144ec601291614431565b9152600080516020616c94833981519152015460301c6144d5565b909261451282615195565b8203918211611d63576144ce94601287528083600080516020616c948339815191520154169085161060001461454b5750915b386144c3565b92915061455790613b20565b90614545565b935050505060301c90565b65ffffffffffff43168082101561458357506109db90615113565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b0319821681179092556107429694169461461e9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580614768575b614648575b5050505050565b816146cd575b50508261465d575b8080614641565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916146aa916146a490916150e0565b90614771565b604080516001600160d01b039384168152919092166020820152a2388080614656565b6001600160a01b031660009081526009602052604090206146ed846150e0565b6001600160d01b0390818061470185615354565b1691169003818111611d635761474561475e917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690615664565b6040805192851683529316602082015291829190820190565b0390a2388061464e565b5083151561463c565b906001600160d01b0390818061478685615354565b16911601908111611d63576147a49165ffffffffffff431690615664565b9091565b6001600160d01b039081806147bb61530a565b16911601908111611d63576147a49065ffffffffffff43166155ad565b6001600160d01b039081806147eb61530a565b1691169003908111611d63576147a49065ffffffffffff43166155ad565b6001600160a01b038082169493929190851561490257821680156148e9576001600160a01b038216600090815260208190526040902054958487106148ba578461074296970361486b8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36166ec565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610b8957811615610b7057610b216149529260018060a01b03166000526001602052604060002090565b55565b604051906149628261065b565b60006020838281520152565b909190610742575080511561498557805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b03811660009081526007602052604090208054600181019091558092036149c3575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b9180830460021490151715611d6357565b908160041b9180830460101490151715611d6357565b81810292918115918404141715611d6357565b9190825182118015614ab6575b614a8d57614a4781613b20565b821180614a98575b614a5a9015156149ee565b60280180602811611d6357818303838111611d635703614a8d57614a7d92614abf565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b14614a4f565b50818111614a3a565b929092614acb84613b20565b831180614b52575b614ade9015156149ee565b936000948101809111611d63579192905b818310614aff5750505060019190565b9092919360ff614b20614b1b6020888601015160ff60f81b1690565b614b70565b1690600f8211614b465790614b37614b3e92614a04565b0194613e12565b919290614aef565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614ad3565b60f81c602f811180614bd8575b15614b8c57602f190160ff1690565b6060811180614bce575b15614ba5576056190160ff1690565b6040811180614bc4575b15614bbe576036190160ff1690565b5060ff90565b5060478110614baf565b5060678110614b96565b50603a8110614b7d565b916109db9391614bf193614bfa565b90929192614c88565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411614c7257926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156115795780516001600160a01b03811615614c6957918190565b50809160019190565b50505060009160039190565b60041115611d8857565b614c9181614c7e565b80614c9a575050565b614ca381614c7e565b60018103614cbd5760405163f645eedf60e01b8152600490fd5b614cc681614c7e565b60028103614ce75760405163fce698f760e01b815260048101839052602490fd5b80614cf3600392614c7e565b14614cfb5750565b6040516335e2f38360e21b81526004810191909152602490fd5b604290614d20614d3b565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480614e26575b15614d96577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261398e81610691565b507f00000000000000000000000000000000000000000000000000000000000000004614614d6d565b60ff8114614e8d5760ff811690601f8211614e7b5760405191614e718361065b565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614ea0836105f3565b80835292600190818116908115614f265750600114614ec7575b506109db925003826106e3565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310614f0b57506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614ef2565b9050602092506109db94915060ff191682840152151560051b82010138614eba565b60ff8114614f6a5760ff811690601f8211614e7b5760405191614e718361065b565b50604051600654816000614f7d836105f3565b80835292600190818116908115614f265750600114614fa357506109db925003826106e3565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310614fe757506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614fce565b9091813b61502a5761501491926150a4565b5061501e81614c7e565b15918261429357505090565b600091829160405161506081612cb46020820194630b135d3f60e11b998a875260248401526040604484015260648301906107aa565b51915afa9061506d6140e1565b82615096575b8261507d57505090565b61509291925060208082518301019101614399565b1490565b915060208251101591615073565b81519190604183036150d5576150ce92506020820151906060604084015193015160001a90614bfa565b9192909190565b505060009160029190565b6001600160d01b03908181116150f4571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111615126571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff90818111615156571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b811561517f570490565b634e487b7160e01b600052601260045260246000fd5b60018111156109db57600181600160801b8110156152ae575b61525661524c61524261523861522e61522461526297600488600160401b61525d9a10156152a1575b640100000000811015615294575b62010000811015615287575b61010081101561527b575b601081101561526f575b1015615267575b60030260011c61521d818b615175565b0160011c90565b61521d818a615175565b61521d8189615175565b61521d8188615175565b61521d8187615175565b61521d8186615175565b8093615175565b821190565b900390565b60011b61520d565b811c9160021b91615206565b60081c91811b916151fc565b60101c9160081b916151f1565b60201c9160101b916151e5565b60401c9160201b916151d7565b50600160401b9050608082901c6151ae565b601254600090806152d2575050600090565b80600019810111611d635760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a546000908061531c575050600090565b80600019810111611d6357600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b80546000918161536657505050600090565b600019928284810111611d635760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b821015610656576001820180601255821015613e4b57610742916012600052600080516020616c9483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b821015610656576001820180600a55821015613e4b5761074291600a600052600080516020616cb483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b8110156106565761549791600182018155614440565b6154bf578151815465ffffffffffff191665ffffffffffff91909116178155610742916153f8565b615382565b6012549192918015615583576154dc6154f491614431565b6012600052600080516020616c948339815191520190565b9081549165ffffffffffff90818416918316808311615571578692036155395761553292509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505061556c9061555861554a610f15565b65ffffffffffff9092168252565b6001600160d01b0385166020820152615398565b615532565b604051632520601d60e01b8152600490fd5b506155a79061559361554a610f15565b6001600160d01b0384166020820152615398565b60009190565b600a549192918015615640576155c56155dd91614431565b600a600052600080516020616cb48339815191520190565b9081549165ffffffffffff908184169183168083116155715786920361561b5761553292509065ffffffffffff82549181199060301b169116179055565b505061556c9061562c61554a610f15565b6001600160d01b038516602082015261541a565b506155a79061565061554a610f15565b6001600160d01b038416602082015261541a565b805492939280156156fb5761567b61568891614431565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411615571578793036156c7575061553292509065ffffffffffff82549181199060301b169116179055565b91505061556c916156e76156d9610f15565b65ffffffffffff9093168352565b6001600160d01b038616602083015261547a565b50906155a79161570c6156d9610f15565b6001600160d01b038516602083015261547a565b905b82811061572e57505090565b90918082169080831860011c8201809211611d6357600a60005265ffffffffffff8083600080516020616cb4833981519152015416908516106000146157775750915b90615722565b92915061578390613b20565b90615771565b905b82811061579757505090565b90918082169080831860011c8201809211611d6357601260005265ffffffffffff8083600080516020616c94833981519152015416908516106000146157e05750915b9061578b565b9291506157ec90613b20565b906157da565b91905b8382106158025750505090565b9091928083169080841860011c8201809211611d635760008581526020902082015465ffffffffffff90811690841610156158415750925b91906157f5565b93925061584d90613b20565b9161583a565b600d548060801c9160018301926001600160801b038093168385161461589b57600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c83146158f35782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b1561590d57565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561595257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b1561598d57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b156159cc57565b60405162461bcd60e51b815260206004820152602360248201527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b604051615a2981610676565b6000815290565b818110615a3b575050565b60008155600101615a30565b91818110615a5457505050565b6107429260005260206000209182019101615a30565b8151916001600160401b03831161065657600160401b831161065657615a9583835481855584615a47565b602080910191600052806000209060005b848110615ab4575050505050565b83516001600160a01b03168382015592810192600101615aa6565b8151916001600160401b03831161065657600160401b831161065657615afa83835481855584615a47565b602080910191600052806000209060005b848110615b19575050505050565b83518382015592810192600101615b0b565b9190601f8111615b3a57505050565b610742926000526020600020906020601f840160051c83019310615b66575b601f0160051c0190615a30565b9091508190615b59565b91909182516001600160401b03811161065657615b9781615b9184546105f3565b84615b2b565b602080601f8311600114615bd3575081929394600092615bc8575b50508160011b916000199060031b1c1916179055565b015190503880615bb2565b90601f19831695615be985600052602060002090565b926000905b888210615c2657505083600195969710615c0d575b505050811b019055565b015160001960f88460031b161c19169055388080615c03565b80600185968294968601518155019501930190615bee565b815191600160401b8311610656578154838355808410615c9c575b50615c6e602080920192600052602060002090565b6000925b848410615c80575050505050565b60018382615c9083945186615b70565b01920193019290615c72565b6000838152846020822092830192015b828110615cba575050615c59565b80615cc7600192546105f3565b80615cd4575b5001615cac565b601f908181118414615cec5750508281555b38615ccd565b83615d0e92615d0085600052602060002090565b920160051c82019101615a30565b60008181526020812081835555615ce6565b600861010061074293615d34815185615a6a565b615d45602082015160018601615acf565b604081015160028501556060810151615d85906001600160a01b03165b6003860180546001600160a01b0319166001600160a01b03909216919091179055565b615d96608082015160048601615c3e565b615dbb615da660a0830151151590565b600586019060ff801983541691151516179055565b60c0810151600685015560e0810151600785015501519101615b70565b93906109db9593613f8e93615e0792875260018060a01b0316602087015260a0604087015260a086019061389e565b9084820360608601526125e9565b15615e1c57565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b15615e6857565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b15615ea757565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b908160209103126105ee57516109db81610ac3565b15615efc57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b8054600160401b81101561065657615f4f91600182018155614440565b9190916154bf5761074291615b70565b15615f6657565b60405162461bcd60e51b8152602060048201526015602482015274141c9bdc1bdcd85b081b9bdd08195e1958dd5d1959605a1b6044820152606490fd5b15615faa57565b60405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742071756f72756d60681b6044820152606490fd5b15615fec57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b1561602757565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6060810191815260209060608282015283548093526080810192600094855282852090855b8181106160c7575050506040818403910152808454928381520193835280832092905b8282106160b0575050505090565b8354855293840193600193840193909101906160a2565b82546001600160a01b03168652948401946001928301920161607f565b906160f88260005260208052604060002090565b61610e616109600583015460ff1690565b615f5f565b616122600782015460068301541115615fa3565b600181810193906000815b616166575b5050613daa7fe8585c604452fcb59bc021fce36eb8241ffc18bd81b50ce6cd5cea81ceeaa58d93946040519384938461605a565b83548110156161ec57806161a261619b6113b86161866161e69589614440565b905460039190911b1c6001600160a01b031690565b1515615fe5565b6161c36161bc6161b2838a614440565b90549060031b1c90565b1515616020565b6119276161d36161868388614440565b6161e06161b2848b614440565b906161f1565b8161612d565b616132565b91906001600160a01b03831680156148e957600254828101809111611d63576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116162775761074292935061666e565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b156162a457565b60405162461bcd60e51b8152602060048201526014602482015273151a5b595b1bd8dac81b9bdd08195e1c1a5c995960621b6044820152606490fd5b156162e757565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561632557565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b90610100600891616372815185615b70565b616383602082015160018601615acf565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556163ce60a082015160058601615c3e565b6163f36163de60c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526109db929101906107aa565b1561643357565b60405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606490fd5b1561647f57565b60405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742074726561737572792062616c616e63650000006044820152606490fd5b815181546001600160a01b0319166001600160a01b03909116178155610742916008906101009060208101516001850155604081015160028501556060810151615d85906001600160a01b0316615d62565b9081526001600160a01b03918216602082015291166040820152606081019190915260a0608082018190526109db929101906107aa565b80600052602160205260406000209061656c60ff600584015416615f5f565b616580600783015460068401541115615fa3565b60018201908154926028549361659885821115616478565b8403938411611d63576165f6613daa916165d27f0bb768aa97fa4e8a8f73bfa7bc210f1a29f29c765d44f0c29acc04a549e32e4396602855565b805485546165e9916001600160a01b031630614809565b546001600160a01b031690565b9254604080519384526001600160a01b039094166020840152928201929092529081906060820190565b6001600160a01b031660009081526020819052604090205480158015616664575b61665e576166556109db9160285490614a1a565b60025490615175565b50600090565b5060285415616641565b906107429161668461667f836150e0565b6147a8565b50506001600160a01b039081169081156166d4575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116614620565b6166e56166e0846150e0565b6147d8565b5050616699565b61074292916001600160a01b03918216919081908315616744575b16918215616731575b60005260086020528060406000205416916000526040600020541690614620565b61673d6166e0856150e0565b5050616710565b61675061667f866150e0565b5050616707565b908160209103126105ee575180151581036105ee5790565b61677881616881565b9061678282611d7e565b6005820361687d5761679f91506000526014602052604060002090565b546013546167b5906001600160a01b03166113b8565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa90811561157957600091616860575b50156167f357505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa91821561157957600092616833575b50501561682e57600790565b600290565b6168529250803d10616859575b61684a81836106e3565b810190616757565b3880616822565b503d616840565b6168779150843d86116168595761684a81836106e3565b386167e5565b5090565b61689581600052600c602052604060002090565b5460ff8160f01c1661698d5760f81c616987576168c2614011613ca983600052600c602052604060002090565b801561696e5765ffffffffffff431680911015616967576168e2826139aa565b106168ed5750600190565b6168f961180a82616994565b8015616942575b1561690b5750600390565b614011600161692761693493600052600c602052604060002090565b015465ffffffffffff1690565b61693d57600490565b600590565b5061696261180a8260005260116020526040600020600181015490541090565b616900565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa91821561157957616a3192606492616a1f926000926137f057506137d890614458565b04916002600182015491015490613b2e565b101590565b90616a42939291613930565b616a4b8161676f565b6008811015611d8857603b600160ff83161b1615616b4a5750616a90616a7b82600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1616ad0816000526014602052604060002090565b5480616ada575090565b601354616aef906001600160a01b03166113b8565b803b156105ee5760405163c4d252f560e01b815260048101929092526000908290602490829084905af1801561157957616b37575b5060008181526014602052604081205590565b8061156d616b4492610643565b38616b24565b90616b6e606492604051926331b75e4d60e01b845260048401526024830190611d8d565b603b6044820152fd5b949392616ba3608093616b95616bb19460a08a5260a08a019061389e565b9088820360208a01526125e9565b9086820360408801526138db565b93600060608201520152565b9192616bec60a094616bde616bfa949998979960c0875260c087019061389e565b9085820360208701526125e9565b9083820360408501526138db565b946000606083015260808201520152565b9290939160018060a01b036013541690813b156105ee57600093616c5a6040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601616b77565b039134905af19081156115795760009261495292616c84575b506000526014602052604060002090565b616c8d90610643565b38616c7356febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212209a5de699f7aefb288e8394e1a1967891a7fa659845a380ec582ae5c3dad15a8264736f6c63430008140033","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 0x3877 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0x7E637E EQ PUSH2 0x582 JUMPI DUP1 PUSH4 0x13CF08B EQ PUSH2 0x57D JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x578 JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x573 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x56E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x564 JUMPI DUP1 PUSH4 0x965211E EQ PUSH2 0x55F JUMPI DUP1 PUSH4 0xC0512E9 EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0xEB12596 EQ PUSH2 0x555 JUMPI DUP1 PUSH4 0x108B4E07 EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x54B JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x546 JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x53C JUMPI DUP1 PUSH4 0x194A94FC EQ PUSH2 0x537 JUMPI DUP1 PUSH4 0x1B470FAF EQ PUSH2 0x532 JUMPI DUP1 PUSH4 0x1C0F4D8D EQ PUSH2 0x52D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x528 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x523 JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x519 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0x35C4364F EQ PUSH2 0x50F JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x505 JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x4FB JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x4F6 JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x4FA76EC9 EQ PUSH2 0x4EC JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x4E7 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x4E2 JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x4DD JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x4D8 JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4BA JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x4B5 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x4AB JUMPI DUP1 PUSH4 0x7E63B733 EQ PUSH2 0x4A6 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x4A1 JUMPI DUP1 PUSH4 0x82308158 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x492 JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x48D JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x488 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x483 JUMPI DUP1 PUSH4 0x96E973FB EQ PUSH2 0x47E JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x479 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x474 JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x46F JUMPI DUP1 PUSH4 0x9BE65B40 EQ PUSH2 0x46A JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x45B JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x456 JUMPI DUP1 PUSH4 0xAB273016 EQ PUSH2 0x451 JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xB4931936 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x442 JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x43D JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC0E58A0E EQ PUSH2 0x433 JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x429 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x424 JUMPI DUP1 PUSH4 0xD1FAD4CD EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x41A JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x410 JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x406 JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x401 JUMPI DUP1 PUSH4 0xEC4A59D9 EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0xF2C26A47 EQ PUSH2 0x3E8 JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x3E3 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x3DE JUMPI PUSH4 0xFD5C4BE7 SUB PUSH2 0xE JUMPI PUSH2 0x3859 JUMP JUMPDEST PUSH2 0x3814 JUMP JUMPDEST PUSH2 0x375A JUMP JUMPDEST PUSH2 0x362A JUMP JUMPDEST PUSH2 0x3550 JUMP JUMPDEST PUSH2 0x3499 JUMP JUMPDEST PUSH2 0x3444 JUMP JUMPDEST PUSH2 0x3426 JUMP JUMPDEST PUSH2 0x33C4 JUMP JUMPDEST PUSH2 0x331D JUMP JUMPDEST PUSH2 0x32CF JUMP JUMPDEST PUSH2 0x326C JUMP JUMPDEST PUSH2 0x320E JUMP JUMPDEST PUSH2 0x31E5 JUMP JUMPDEST PUSH2 0x30B4 JUMP JUMPDEST PUSH2 0x3098 JUMP JUMPDEST PUSH2 0x2FCB JUMP JUMPDEST PUSH2 0x2F5F JUMP JUMPDEST PUSH2 0x2E93 JUMP JUMPDEST PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x2DD5 JUMP JUMPDEST PUSH2 0x2DB7 JUMP JUMPDEST PUSH2 0x2D90 JUMP JUMPDEST PUSH2 0x2D59 JUMP JUMPDEST PUSH2 0x2C2C JUMP JUMPDEST PUSH2 0x2C10 JUMP JUMPDEST PUSH2 0x2BDB JUMP JUMPDEST PUSH2 0x2B67 JUMP JUMPDEST PUSH2 0x2B44 JUMP JUMPDEST PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x2AD4 JUMP JUMPDEST PUSH2 0x29F1 JUMP JUMPDEST PUSH2 0x29D5 JUMP JUMPDEST PUSH2 0x2998 JUMP JUMPDEST PUSH2 0x28F1 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST PUSH2 0x27B6 JUMP JUMPDEST PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x261D JUMP JUMPDEST PUSH2 0x2577 JUMP JUMPDEST PUSH2 0x2502 JUMP JUMPDEST PUSH2 0x23D6 JUMP JUMPDEST PUSH2 0x234E JUMP JUMPDEST PUSH2 0x22F9 JUMP JUMPDEST PUSH2 0x2288 JUMP JUMPDEST PUSH2 0x224B JUMP JUMPDEST PUSH2 0x2200 JUMP JUMPDEST PUSH2 0x21E2 JUMP JUMPDEST PUSH2 0x2173 JUMP JUMPDEST PUSH2 0x214D JUMP JUMPDEST PUSH2 0x20C5 JUMP JUMPDEST PUSH2 0x2059 JUMP JUMPDEST PUSH2 0x2009 JUMP JUMPDEST PUSH2 0x1FA7 JUMP JUMPDEST PUSH2 0x1F5A JUMP JUMPDEST PUSH2 0x1F3C JUMP JUMPDEST PUSH2 0x1EDE JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x1DC7 JUMP JUMPDEST PUSH2 0x1D9A JUMP JUMPDEST PUSH2 0x1C7C JUMP JUMPDEST PUSH2 0x1C56 JUMP JUMPDEST PUSH2 0x1C0C JUMP JUMPDEST PUSH2 0x1BF0 JUMP JUMPDEST PUSH2 0x1BB5 JUMP JUMPDEST PUSH2 0x1B7E JUMP JUMPDEST PUSH2 0x1A29 JUMP JUMPDEST PUSH2 0x1970 JUMP JUMPDEST PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x1671 JUMP JUMPDEST PUSH2 0x15E8 JUMP JUMPDEST PUSH2 0x15CA JUMP JUMPDEST PUSH2 0x1380 JUMP JUMPDEST PUSH2 0x1221 JUMP JUMPDEST PUSH2 0x11ED JUMP JUMPDEST PUSH2 0x106C JUMP JUMPDEST PUSH2 0xE75 JUMP JUMPDEST PUSH2 0xBC5 JUMP JUMPDEST PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0xAD4 JUMP JUMPDEST PUSH2 0x9DE JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH2 0x8F7 JUMP JUMPDEST PUSH2 0x87E JUMP JUMPDEST PUSH2 0x7EA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD DUP1 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x5 DUP3 ADD SWAP2 PUSH2 0x5E2 DUP4 SLOAD SWAP2 PUSH2 0x5C1 PUSH1 0xFF DUP5 AND ISZERO PUSH2 0x5E15 JUMP JUMPDEST PUSH2 0x5D1 PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x629D JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SLOAD SWAP2 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0xFF NOT AND OR SWAP1 SSTORE PUSH2 0x654D JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x623 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x60D 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 0x602 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 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 0x656 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 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 0x656 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 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH1 0x0 DUP3 SLOAD SWAP3 PUSH2 0x718 DUP5 PUSH2 0x5F3 JUMP JUMPDEST SWAP1 DUP2 DUP5 MSTORE PUSH1 0x1 SWAP5 DUP6 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x787 JUMPI POP PUSH1 0x1 EQ PUSH2 0x744 JUMPI JUMPDEST POP POP PUSH2 0x742 SWAP3 POP SUB DUP4 PUSH2 0x6E3 JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 DUP2 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP2 DUP4 LT PUSH2 0x76F JUMPI POP POP PUSH2 0x742 SWAP4 POP DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x734 JUMP JUMPDEST DUP6 SLOAD DUP9 DUP5 ADD DUP6 ADD MSTORE SWAP5 DUP6 ADD SWAP5 DUP8 SWAP5 POP SWAP2 DUP4 ADD SWAP2 PUSH2 0x757 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x742 SWAP5 POP PUSH1 0x20 SWAP3 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x734 JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x7D6 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 0x7B5 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH2 0x859 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x817 DUP2 PUSH2 0x704 JUMP JUMPDEST SWAP1 PUSH1 0x2 DUP2 ADD SLOAD SWAP1 PUSH1 0x3 DUP2 ADD SLOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x4 DUP3 ADD SLOAD AND PUSH1 0xFF PUSH1 0x6 DUP4 ADD SLOAD AND SWAP1 PUSH1 0x8 PUSH1 0x7 DUP5 ADD SLOAD SWAP4 ADD SLOAD SWAP4 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP8 PUSH1 0xE0 DUP10 MSTORE PUSH1 0xE0 DUP10 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP7 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x5EE JUMPI PUSH1 0x20 SWAP1 PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x8DB JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x8CA JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x8BF JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x8B8 JUMP JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x10 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x93A PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x9AB JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x974 PUSH2 0x52C0 JUMP JUMPDEST AND PUSH2 0x98F PUSH2 0x981 DUP4 PUSH2 0x50E0 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x54C4 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 STOP 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 SWAP1 PUSH1 0x20 PUSH2 0x9DB SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0xB SLOAD PUSH2 0xA01 DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xA96 JUMPI POP PUSH1 0x1 EQ PUSH2 0xA3B JUMPI JUMPDEST PUSH2 0xA37 DUP6 PUSH2 0xA2B DUP2 DUP8 SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x9CA JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0xB DUP4 MSTORE PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 JUMPDEST DUP3 DUP5 LT PUSH2 0xA7E JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xA2B DUP3 PUSH2 0xA37 PUSH2 0xA1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xA63 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xA37 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xA2B SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xA1B JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0xAF1 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD CALLER ISZERO PUSH2 0xB89 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0xB70 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 SWAP2 PUSH2 0xB38 SWAP2 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 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN 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 CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xFF PUSH1 0x26 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x22 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x16 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xBF3 DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xC11 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x16 PUSH1 0x0 MSTORE PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xC52 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xC40 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xC97 DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xCB5 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x17 PUSH1 0x0 MSTORE PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xCF6 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xCE4 JUMP JUMPDEST PUSH1 0x18 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0xD1E DUP3 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0xC6A JUMPI POP PUSH1 0x1 EQ PUSH2 0xD3C JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x18 PUSH1 0x0 MSTORE PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0xD7D JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xD6B JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0xDA6 DUP4 PUSH2 0x5F3 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0xE08 JUMPI POP PUSH1 0x1 EQ PUSH2 0xDC8 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0xDF4 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0xDC2 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0xDDD JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0xDC2 JUMP JUMPDEST SWAP6 SWAP4 SWAP1 SWAP2 SWAP3 PUSH2 0x9DB SWAP9 SWAP8 SWAP6 SWAP4 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND DUP9 MSTORE PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE AND PUSH1 0x60 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x100 SWAP1 DUP2 PUSH1 0xE0 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP1 PUSH2 0xA37 PUSH1 0x8 DUP4 DUP4 SLOAD AND SWAP3 PUSH1 0x1 DUP2 ADD SLOAD SWAP5 PUSH1 0x2 DUP3 ADD SLOAD SWAP1 PUSH1 0x3 DUP4 ADD SLOAD AND PUSH1 0xFF PUSH1 0x5 DUP5 ADD SLOAD AND SWAP1 PUSH1 0x6 DUP5 ADD SLOAD SWAP3 PUSH2 0xEE9 PUSH1 0x7 DUP7 ADD SLOAD SWAP6 PUSH2 0xEE2 PUSH1 0x40 MLOAD DUP1 SWAP10 DUP2 SWAP4 ADD PUSH2 0xD95 JUMP JUMPDEST SUB DUP8 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP10 PUSH2 0xE2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x120 DUP3 ADD DUP3 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x656 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x742 DUP3 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xF50 DUP4 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0xF5E PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xF88 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0xF96 DUP2 PUSH2 0xAC3 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xF7A JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xFB8 DUP4 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0xFC6 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xFF0 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xFE2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x1026 DUP3 PUSH2 0xFFF JUMP JUMPDEST SWAP2 PUSH2 0x1034 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6E3 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x5EE 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 0x5EE JUMPI DUP2 PUSH1 0x20 PUSH2 0x9DB SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x101A JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x109D SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x10B6 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x11DA PUSH2 0x10FB PUSH32 0x8FD808CDCD18F44B7F33C61FB97B83154C1D653EF4A9A2D236B290644EDD6C83 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH2 0x1108 DUP4 MLOAD DUP6 MLOAD EQ PUSH2 0x5906 JUMP JUMPDEST PUSH2 0x1114 DUP4 MLOAD ISZERO ISZERO PUSH2 0x594B JUMP JUMPDEST PUSH2 0x111F TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x113B SWAP1 JUMPDEST SLOAD ISZERO ISZERO PUSH2 0x59C5 JUMP JUMPDEST PUSH2 0x11CC PUSH1 0x23 SLOAD SWAP7 PUSH2 0x1153 PUSH2 0x114E DUP10 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x23 SSTORE JUMP JUMPDEST PUSH2 0x115B PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x1174 PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST PUSH1 0x64 SWAP1 DIV SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x117D PUSH2 0xEF5 JUMP JUMPDEST DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE CALLER PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x0 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x11C7 DUP9 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5D20 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 CALLER DUP9 DUP7 PUSH2 0x5DD8 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x123D PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x1248 PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x1267 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C 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 SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0x12B6 DUP3 PUSH2 0xF22 JUMP JUMPDEST SWAP3 PUSH2 0x12C4 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6E3 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x5EE JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x12F2 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI DUP7 SWAP2 PUSH2 0x1313 DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0x1051 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0x12E2 JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x5EE JUMPI DUP3 PUSH2 0x134A SWAP2 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI DUP4 PUSH2 0x1362 SWAP2 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0x1379 SWAP2 PUSH1 0x4 ADD PUSH2 0x129E JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH2 0x138E CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST PUSH2 0x139C DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x3930 JUMP JUMPDEST SWAP3 PUSH2 0x13A6 DUP5 PUSH2 0x41A2 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH2 0x13C4 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 0x1579 JUMPI PUSH1 0x0 SWAP7 PUSH2 0x15AB 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 0x1426 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x6B77 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x157E JUMPI JUMPDEST POP POP PUSH2 0x144F DUP8 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x13 SLOAD PUSH2 0x1465 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0x1491 DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x6BBD JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH2 0x14B5 SWAP3 PUSH2 0x14B0 SWAP3 PUSH2 0x1560 JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x3B2E JUMP JUMPDEST PUSH2 0x5113 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0x154F JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0x153E DUP5 PUSH2 0x1520 PUSH2 0xA37 SWAP7 PUSH1 0x1 PUSH2 0x1506 DUP9 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x156D PUSH2 0x1573 SWAP3 PUSH2 0x643 JUMP JUMPDEST DUP1 PUSH2 0x8EC JUMP JUMPDEST CODESIZE PUSH2 0x14A9 JUMP JUMPDEST PUSH2 0x43A8 JUMP JUMPDEST PUSH2 0x159D SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x15A4 JUMPI JUMPDEST PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x4399 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x1439 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x158B JUMP JUMPDEST PUSH2 0x15C3 SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0x13EF JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x165C PUSH2 0x163C PUSH32 0x5C84C0144A4E16E610C6C44C3571A58AF67CE17B61280F57E6FEEB2C363EAA60 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1648 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x168E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x64 CALLDATALOAD PUSH1 0x24 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x11DA PUSH2 0x16DB PUSH32 0xF80F5CE91F7D79D29FD2BD635816739C0FAE47505F5A30A820E49ACE80884165 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH2 0x16EF PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO ISZERO PUSH2 0x5FE5 JUMP JUMPDEST PUSH2 0x16FA DUP5 ISZERO ISZERO PUSH2 0x642C JUMP JUMPDEST PUSH2 0x1708 PUSH1 0x28 SLOAD DUP6 GT ISZERO PUSH2 0x6478 JUMP JUMPDEST PUSH2 0x1713 TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x172B SWAP1 PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x17BD PUSH1 0x24 SLOAD SWAP7 PUSH2 0x1743 PUSH2 0x173E DUP10 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x24 SSTORE JUMP JUMPDEST PUSH2 0x174B PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x175D PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST SWAP1 PUSH2 0x1766 PUSH2 0xEF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE SWAP3 PUSH1 0x20 DUP5 ADD DUP10 SWAP1 MSTORE PUSH1 0x40 DUP5 ADD MSTORE CALLER PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x0 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x17B8 DUP9 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x64C4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 CALLER DUP9 DUP7 PUSH2 0x6516 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x17F4 DUP2 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 ADD SWAP3 PUSH2 0x1813 PUSH2 0x180E PUSH2 0x180A DUP7 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x5E15 JUMP JUMPDEST PUSH2 0x1822 PUSH1 0x2 DUP4 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x183E SWAP1 JUMPDEST SLOAD ISZERO ISZERO PUSH2 0x5EA0 JUMP JUMPDEST PUSH1 0x0 SWAP1 PUSH1 0x4 DUP4 ADD SWAP2 DUP3 SLOAD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x18FE JUMPI POP POP PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP2 DUP2 ADD SWAP2 DUP3 MSTORE PUSH2 0x188D SWAP3 SWAP1 SWAP2 PUSH2 0x1888 SWAP1 DUP4 SWAP1 PUSH1 0x14 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP5 MSTORE DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0x5F32 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SWAP2 PUSH2 0x189E DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0xC5FB6601AC4858DBA31868A09F1646A3BFE4638F325353BB142719B81E3645A1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x18E5 JUMPI STOP JUMPDEST PUSH2 0x18F9 PUSH2 0x21 SWAP3 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x654D JUMP JUMPDEST DUP1 PUSH2 0x1916 PUSH2 0x190F PUSH2 0x192C SWAP4 DUP8 PUSH2 0x4440 JUMP JUMPDEST POP SLOAD PUSH2 0x5F3 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1931 JUMPI JUMPDEST PUSH2 0x1927 SWAP1 PUSH2 0x5EF5 JUMP JUMPDEST PUSH2 0x3E12 JUMP JUMPDEST PUSH2 0x184A JUMP JUMPDEST POP PUSH2 0x1927 PUSH2 0x1948 PUSH2 0x1942 DUP4 DUP9 PUSH2 0x4440 JUMP JUMPDEST POP PUSH2 0x704 JUMP JUMPDEST DUP1 MLOAD CALLER SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 PUSH2 0x1966 SWAP2 SWAP1 DUP2 ADD DUP10 ADD SWAP1 DUP10 ADD PUSH2 0x5EE0 JUMP JUMPDEST AND EQ ISZERO SWAP1 POP PUSH2 0x191E JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x198D DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1999 DUP2 PUSH2 0xAC3 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 0x19E3 JUMPI JUMPDEST PUSH2 0x19D7 SWAP4 POP PUSH2 0x4809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x19FF JUMPI PUSH2 0x19FA DUP4 PUSH2 0x19D7 SWAP6 SUB CALLER DUP4 PUSH2 0x491B JUMP JUMPDEST PUSH2 0x19CD 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 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A32 CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST PUSH2 0x1A40 DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x3930 JUMP JUMPDEST SWAP3 PUSH2 0x1A4A DUP5 PUSH2 0x41F4 JUMP JUMPDEST POP PUSH2 0x1A75 PUSH2 0x1A62 DUP6 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0x1B19 JUMPI JUMPDEST SWAP5 PUSH2 0x1A9B SWAP3 SWAP2 PUSH2 0xA37 SWAP7 DUP7 PUSH2 0x6C0B JUMP JUMPDEST PUSH1 0x13 SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0x1AF8 JUMPI JUMPDEST PUSH2 0x1AE9 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 DUP1 PUSH1 0x20 DUP2 ADD PUSH2 0x11DA JUMP JUMPDEST PUSH2 0x1AF3 PUSH1 0x0 PUSH1 0xD SSTORE JUMP JUMPDEST PUSH2 0x1AB7 JUMP JUMPDEST POP PUSH2 0x1B14 PUSH2 0x180A PUSH1 0xD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST PUSH2 0x1AB2 JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x1B74 JUMPI PUSH2 0x1B55 SWAP1 ADDRESS PUSH2 0x1B4B PUSH2 0x13B8 PUSH2 0x1B3E DUP5 DUP11 PUSH2 0x3E37 JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0x1B5A JUMPI PUSH2 0x3E12 JUMP JUMPDEST PUSH2 0x1B20 JUMP JUMPDEST PUSH2 0x1927 PUSH2 0x1B67 DUP3 DUP11 PUSH2 0x3E37 JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x5853 JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0x1A8B JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x5 DUP3 ADD SWAP2 PUSH2 0x1C4A DUP4 SLOAD SWAP2 PUSH2 0x5C1 PUSH1 0xFF DUP5 AND ISZERO PUSH2 0x5E15 JUMP JUMPDEST PUSH1 0xFF NOT AND OR SWAP1 SSTORE PUSH2 0x60E4 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x10 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1C99 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x1CBC PUSH1 0x24 CALLDATALOAD PUSH2 0x4568 JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x1D0E JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x1CDA SWAP3 DUP5 PUSH2 0x57F2 JUMP JUMPDEST DUP1 PUSH2 0x1CF4 JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x1D00 DUP5 SWAP3 SWAP4 PUSH2 0x4431 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 PUSH2 0x1D18 DUP7 PUSH2 0x5195 JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x1D63 JUMPI PUSH1 0x20 SWAP6 PUSH2 0x1CDA SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1D51 JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x1CCB JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1D5D SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x3994 JUMP 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 0x1D88 JUMPI JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x1DB8 PUSH1 0x4 CALLDATALOAD PUSH2 0x676F JUMP JUMPDEST PUSH2 0x1DC5 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0x1D8D JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0x1E14 PUSH1 0x24 CALLDATALOAD PUSH2 0x1DEB DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 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 0x5EE JUMPI PUSH2 0x1E2E CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST SWAP1 PUSH2 0x1E3D DUP3 DUP3 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x3930 JUMP JUMPDEST PUSH2 0x1E46 DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x1 DUP1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x1EB1 JUMPI POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1E99 JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x1E89 SWAP4 PUSH2 0x6A36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x233D98E3 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x1ED5 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 0x1D8D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x1EFE DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x25 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0xA37 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x1FC7 DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH2 0x2027 PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2033 DUP2 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2044 DUP4 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3FC2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x2078 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x5EE JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x5EE JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x20DE PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x20EB DUP3 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x210C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2124 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP6 PUSH2 0x2144 PUSH2 0x1E89 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x3E50 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD PUSH2 0x216D DUP2 PUSH2 0xAC3 JUMP JUMPDEST CALLER PUSH2 0x45A1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x218C PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x21AD SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x5EE JUMPI PUSH2 0x21D8 PUSH2 0x2051 SWAP4 PUSH2 0x21D0 PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3FC2 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x4458 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x221D DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH2 0x223D PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5145 JUMP JUMPDEST PUSH4 0xFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0xAC3 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND DUP1 SWAP3 SUB PUSH2 0x5EE JUMPI PUSH2 0x22B5 PUSH2 0x4111 JUMP JUMPDEST PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 PUSH1 0x10 SLOAD SWAP3 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x10 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2312 PUSH2 0x1FE9 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH1 0x20 SWAP2 PUSH2 0x2341 PUSH2 0x233A PUSH2 0x2051 SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2044 DUP4 PUSH2 0x676 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x237F SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xF39 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2398 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x23B1 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x129E JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP4 PUSH2 0x23D0 PUSH2 0x1E89 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST SWAP3 PUSH2 0x39DC JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x23FE DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 ADD SWAP3 PUSH2 0x2414 PUSH2 0x180E PUSH2 0x180A DUP7 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2423 PUSH1 0x2 DUP4 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x243B SWAP1 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 SWAP1 PUSH1 0x4 DUP4 ADD SWAP2 DUP3 SLOAD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x24EC JUMPI POP POP PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP2 DUP2 ADD SWAP2 DUP3 MSTORE PUSH2 0x247B SWAP3 SWAP1 SWAP2 PUSH2 0x1888 SWAP1 DUP4 SWAP1 PUSH1 0x14 ADD PUSH2 0x187A JUMP JUMPDEST PUSH1 0x6 PUSH1 0x7 DUP3 ADD SWAP2 PUSH2 0x248C DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x77C69D1B59F862D9677AC552A49C26BA3FE18CCC64AD8DA630A5343C306DEA61 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x24D3 JUMPI STOP JUMPDEST PUSH2 0x24E7 PUSH2 0x21 SWAP3 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x60E4 JUMP JUMPDEST DUP1 PUSH2 0x1916 PUSH2 0x190F PUSH2 0x24FD SWAP4 DUP8 PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x2447 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x251F DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB 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 SWAP3 PUSH2 0x9DB SWAP7 SWAP6 SWAP3 PUSH1 0xC0 SWAP6 SWAP3 DUP6 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP2 PUSH1 0xA0 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH2 0xA37 PUSH1 0x8 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x3 DUP6 ADD SLOAD AND SWAP4 PUSH1 0xFF PUSH1 0x5 DUP3 ADD SLOAD AND PUSH1 0x6 DUP3 ADD SLOAD SWAP1 PUSH2 0x25DD PUSH1 0x7 DUP5 ADD SLOAD SWAP4 PUSH2 0x25D6 PUSH1 0x40 MLOAD DUP1 SWAP8 DUP2 SWAP4 ADD PUSH2 0xD95 JUMP JUMPDEST SUB DUP6 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x253F JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x2609 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x25FB JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x26B8 PUSH2 0x265A PUSH32 0x0 PUSH2 0x4E4F JUMP JUMPDEST PUSH2 0xA37 PUSH2 0x2686 PUSH32 0x0 PUSH2 0x4F48 JUMP JUMPDEST PUSH2 0x26C6 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2696 DUP4 PUSH2 0x676 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 0x7AA JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x7AA 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 0x25E9 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2703 PUSH1 0x4 CALLDATALOAD PUSH2 0x4568 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x275B JUMPI JUMPDEST PUSH2 0x271E SWAP4 POP PUSH2 0x5720 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2733 JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x2740 PUSH1 0x20 SWAP4 PUSH2 0x4431 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x2766 DUP2 PUSH2 0x5195 JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x271E SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x27A4 JUMPI POP SWAP2 PUSH2 0x2714 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x27B0 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x2714 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x27D2 PUSH2 0x1FE9 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x27E0 DUP4 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x180A PUSH2 0x2805 PUSH2 0x2892 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x288C 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 0x2884 DUP2 PUSH2 0x691 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x4D15 JUMP JUMPDEST DUP7 PUSH2 0x5002 JUMP JUMPDEST PUSH2 0x28AD JUMPI SWAP1 PUSH2 0x1E89 SWAP2 PUSH2 0xA37 SWAP4 PUSH2 0x28A7 PUSH2 0x388B JUMP JUMPDEST SWAP3 PUSH2 0x3F46 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 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x2914 DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xA96 JUMPI POP PUSH1 0x1 EQ PUSH2 0x293D JUMPI PUSH2 0xA37 DUP6 PUSH2 0xA2B DUP2 DUP8 SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0x2980 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xA2B DUP3 PUSH2 0xA37 PUSH2 0xA1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2965 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x29B5 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x27 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2A0E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2A65 SWAP2 PUSH2 0x2A33 PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0x1579 JUMPI PUSH2 0xA37 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x2AB6 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2ACE SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x2AA5 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2AF1 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 PUSH2 0x2B1D SWAP1 PUSH2 0x5354 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x24 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x2B1D PUSH2 0x52C0 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2B84 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x2B8C PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x13 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 0x13 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2C05 PUSH1 0x4 CALLDATALOAD PUSH2 0x2BFB DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x4809 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2C54 DUP2 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP2 ADD SWAP1 PUSH2 0x2C6A PUSH2 0x180E PUSH2 0x180A DUP5 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2C79 PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x5E61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2C91 SWAP1 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2CCB SWAP1 PUSH2 0x2CC2 DUP2 PUSH1 0x34 DUP2 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x5 DUP4 ADD PUSH2 0x5F32 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x8 DUP3 ADD SWAP2 PUSH2 0x2CDC DUP4 SLOAD PUSH2 0x3E12 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x9F1B808CCD95CFAD6377948752267D2AD18CBD81217EC7ABD183A497D47C81D1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x2D23 JUMPI STOP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH2 0x9A6 SWAP1 PUSH2 0x1E89 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x2DB2 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x6620 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2DF1 PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x2DFC PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E1C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E35 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x2E4E SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH2 0xA37 PUSH2 0x2E5A PUSH2 0x4185 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 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH1 0x4 CALLDATALOAD PUSH2 0x39AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2EB2 DUP2 ISZERO ISZERO PUSH2 0x642C JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD LT PUSH2 0x2F23 JUMPI PUSH2 0x9A6 DUP2 PUSH2 0x2EF7 PUSH32 0xBD67EC2DB294B72ED21AC12CF37AA44775B63EA7AB9345652A1D28BE069C4100 SWAP4 ADDRESS CALLER PUSH2 0x4809 JUMP JUMPDEST PUSH2 0x2F0B PUSH2 0x2F06 DUP3 PUSH1 0x28 SLOAD PUSH2 0x3B2E JUMP JUMPDEST PUSH1 0x28 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD CALLER DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x496E73756666696369656E742062616C616E6365 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2F77 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x2F9E PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x2098 JUMP JUMPDEST SWAP1 PUSH2 0x2FA7 PUSH2 0x4111 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 0x2FC5 PUSH2 0x40E1 JUMP JUMPDEST SWAP1 PUSH2 0x496E JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2FE8 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0x2FF7 PUSH2 0x1FF9 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0x307F JUMPI PUSH2 0x3073 PUSH2 0x21 SWAP5 PUSH2 0x307A 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 0x305B DUP3 PUSH2 0x6AC JUMP JUMPDEST PUSH2 0x306E PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x4BE2 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x4997 JUMP JUMPDEST PUSH2 0x45A1 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 0x5EE JUMPI PUSH1 0x20 PUSH2 0x2051 PUSH2 0x30AB CALLDATASIZE PUSH2 0x131E JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x3930 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x30E5 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x5EE JUMPI PUSH32 0x2DE0B4AD2878FFF8E0328D13D59576E6595E750E974AEC7069BD4E182D2D5AAF PUSH2 0x11DA PUSH2 0x3124 PUSH2 0xA37 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xFA1 JUMP JUMPDEST SWAP3 PUSH2 0x31D7 PUSH1 0x44 CALLDATALOAD SWAP5 PUSH2 0x3138 DUP4 MLOAD ISZERO ISZERO PUSH2 0x62E0 JUMP JUMPDEST PUSH2 0x3144 DUP2 MLOAD ISZERO ISZERO PUSH2 0x631E JUMP JUMPDEST PUSH2 0x314F TIMESTAMP DUP8 GT PUSH2 0x5986 JUMP JUMPDEST PUSH1 0x22 SLOAD SWAP6 PUSH2 0x3164 PUSH2 0x315F DUP9 PUSH2 0x3E12 JUMP JUMPDEST PUSH1 0x22 SSTORE JUMP JUMPDEST PUSH2 0x316C PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x317E PUSH2 0x116D PUSH1 0x2 SLOAD PUSH1 0x25 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST SWAP2 PUSH2 0x3187 PUSH2 0xEF5 JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x64 CALLDATALOAD PUSH1 0x60 DUP5 ADD MSTORE CALLER PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x31D2 DUP7 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x6360 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 CALLER DUP7 DUP5 PUSH2 0x6404 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x322E DUP2 PUSH2 0x65B 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 0x7AA JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH2 0x32C6 PUSH1 0x4 CALLDATALOAD PUSH2 0x328E DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH2 0x329B DUP3 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 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 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x3336 PUSH2 0x330A JUMP JUMPDEST PUSH2 0x333E PUSH2 0x4111 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0x33AB JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 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 0x10 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 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x2A65 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x33E6 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x33F4 DUP2 PUSH2 0x676 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x28 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x3460 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x34B6 DUP2 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x5EE JUMPI PUSH2 0xA37 SWAP2 PUSH2 0x3506 SWAP2 PUSH2 0x34D7 PUSH2 0x4955 JUMP JUMPDEST POP PUSH2 0x34E0 PUSH2 0x4955 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 0x3500 PUSH2 0x4955 JUMP JUMPDEST POP PUSH2 0x4440 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3514 DUP3 PUSH2 0x65B 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 0x5EE JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH2 0x356C PUSH1 0x4 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH2 0x3577 PUSH1 0x24 CALLDATALOAD PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x5EE JUMPI PUSH2 0x3596 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1051 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP8 SWAP5 SWAP10 SWAP9 SWAP6 SWAP3 PUSH2 0x3600 SWAP1 PUSH2 0x35F2 PUSH2 0x360E SWAP5 PUSH2 0x35E4 PUSH2 0x100 SWAP12 SWAP9 SWAP6 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP8 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO SWAP2 ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0xAC0 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP2 DUP2 PUSH1 0x15 SLOAD PUSH2 0x364E DUP2 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x3736 JUMPI POP PUSH1 0x1 EQ PUSH2 0x36D9 JUMPI JUMPDEST POP POP PUSH2 0x3676 SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x368E DUP3 PUSH2 0x3687 DUP2 PUSH2 0xBE3 JUMP JUMPDEST SUB DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH2 0xA37 PUSH1 0x40 MLOAD PUSH2 0x36A8 DUP2 PUSH2 0x36A1 DUP2 PUSH2 0xC87 JUMP JUMPDEST SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36B8 DUP2 PUSH2 0x36A1 DUP2 PUSH2 0xD0E JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x1A SLOAD PUSH1 0x1C SLOAD SWAP2 PUSH1 0x1D SLOAD SWAP4 PUSH1 0xFF PUSH1 0x1E SLOAD AND SWAP6 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 PUSH2 0x35BB JUMP JUMPDEST SWAP2 POP PUSH1 0x15 DUP3 MSTORE PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 JUMPDEST DUP5 DUP4 LT PUSH2 0x371B JUMPI POP PUSH2 0x3676 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE DUP1 PUSH2 0x3668 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 0x3701 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP3 POP PUSH2 0x3676 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x3668 JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH2 0xA37 SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x37DE SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x37F0 JUMPI JUMPDEST POP PUSH2 0x37D8 SWAP1 PUSH2 0x4458 JUMP JUMPDEST SWAP1 PUSH2 0x4A1A JUMP JUMPDEST DIV PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP3 MSTORE JUMP JUMPDEST PUSH2 0x37D8 SWAP2 SWAP3 POP PUSH2 0x380D SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x37CE JUMP JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x5EE JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x5EE JUMPI PUSH1 0x20 PUSH1 0x23 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3898 DUP3 PUSH2 0x676 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 0x38BE 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 0x38B0 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 0x3906 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x3920 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x7AA JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x38F6 JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x397C SWAP3 PUSH2 0x398E SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x396C PUSH2 0x3959 PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6E3 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 0xC 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 0x1D63 JUMPI AND SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x39EB DUP3 CALLER PUSH2 0x4246 JUMP JUMPDEST ISZERO PUSH2 0x3AE8 JUMPI PUSH1 0xF SLOAD SWAP5 DUP6 PUSH2 0x3A07 JUMPI JUMPDEST PUSH2 0x9DB SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x3C53 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER DUP2 AND PUSH1 0x0 NOT ADD DUP2 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x3A58 SWAP2 PUSH1 0x20 SWAP2 PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x3A31 DUP2 PUSH2 0x676 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 SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3ACA JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3AA3 JUMPI POP PUSH2 0x39FA 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 0x3AE2 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x3A95 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x3B1C PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1D8D JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP1 PUSH2 0x3B45 DUP3 PUSH2 0xF22 JUMP JUMPDEST PUSH2 0x3B52 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6E3 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x3B63 PUSH1 0x1F NOT SWAP2 PUSH2 0xF22 JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x3B74 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x3B68 JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x3BB8 SWAP1 PUSH2 0x3BC6 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 0x389E JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x25E9 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 0x3C25 JUMPI POP POP POP POP POP PUSH2 0x9DB SWAP7 SWAP8 POP SWAP1 PUSH2 0x3C0C SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x3C44 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x7AA JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x3BE8 JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x3C6B DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x3930 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x3E07 JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x3DFF JUMPI JUMPDEST PUSH2 0x3DD6 JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x3CB8 PUSH2 0x3CA9 DUP11 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST AND PUSH2 0x3DAF JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x3DAA SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x3CFA PUSH1 0x10 SLOAD SWAP4 DUP1 DUP6 AND SWAP1 NUMBER AND PUSH2 0x3B2E JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x3D88 PUSH2 0x3D16 DUP13 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x3D5F PUSH2 0x3D3B DUP7 PUSH2 0x5113 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 0x3D68 DUP4 PUSH2 0x5145 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 0x3D9C PUSH2 0x3D95 DUP10 MLOAD PUSH2 0x3B3B JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x3B2E JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x3B85 JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x3DB9 DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0x1A25 SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x3B00 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 0x3C83 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x3C7C JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x1D63 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 0x3E4B JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E21 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0x180A PUSH2 0x3F0A SWAP2 PUSH2 0x3F04 DUP11 PUSH2 0x3E86 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x3E91 CALLDATASIZE DUP9 DUP11 PUSH2 0x101A 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 0x2884 DUP2 PUSH2 0x6C7 JUMP JUMPDEST DUP11 PUSH2 0x5002 JUMP JUMPDEST PUSH2 0x3F25 JUMPI PUSH2 0x9DB SWAP6 SWAP7 SWAP2 PUSH2 0x3F1F SWAP2 CALLDATASIZE SWAP2 PUSH2 0x101A JUMP JUMPDEST SWAP3 PUSH2 0x3FC2 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 0x9DB SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x3F59 DUP6 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x3FC2 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x3F8E SWAP4 PUSH2 0x9DB 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 0x7AA JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x7AA JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x9DB SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x3FCE DUP5 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x40B3 JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH2 0x402A PUSH2 0x4022 PUSH2 0x401C PUSH2 0x4011 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x43B4 JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x42AE JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x4077 JUMPI POP PUSH2 0x4071 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x3F9C JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x4071 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x3F62 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x40D8 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1D8D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x410C JUMPI RETURNDATASIZE SWAP1 PUSH2 0x40F2 DUP3 PUSH2 0xFFF JUMP JUMPDEST SWAP2 PUSH2 0x4100 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6E3 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x416D JUMPI ADDRESS SUB PUSH2 0x412C JUMPI JUMP JUMPDEST PUSH2 0x4135 CALLDATASIZE PUSH2 0xFFF JUMP JUMPDEST PUSH2 0x4142 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6E3 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 0x4165 PUSH2 0x58AE JUMP JUMPDEST SUB PUSH2 0x415C 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 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x128C JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH2 0x41AB DUP2 PUSH2 0x676F JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x41C8 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x41EB 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 0x1D8D JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x41FD DUP2 PUSH2 0x676F JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x421A JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x423D 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 0x1D8D JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x42A6 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 0x42A6 JUMPI PUSH2 0x4285 SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x4A2D JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x4293 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 POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x42C5 SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x42F0 PUSH2 0x42E9 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 0x4378 JUMPI PUSH2 0x4316 PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x4323 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 0x433A JUMPI POP PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4351 JUMPI POP PUSH1 0x1 ADD PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x4366 JUMPI PUSH1 0x2 ADD PUSH2 0x4335 DUP3 DUP3 SLOAD PUSH2 0x3B2E 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 SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT 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 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x4419 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x9DB SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0x15A4 JUMPI PUSH2 0x1595 DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x1D63 JUMPI JUMP JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x0 NOT DUP3 ADD DUP3 DUP2 GT PUSH2 0x1D63 JUMPI DUP3 GT ISZERO PUSH2 0x3E4B JUMPI PUSH1 0x0 SWAP2 PUSH1 0x12 DUP4 MSTORE PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 DUP2 ADD SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP3 DUP2 DUP5 DUP3 AND GT ISZERO PUSH2 0x455D JUMPI POP PUSH2 0x44B7 SWAP1 PUSH2 0x5113 JUMP JUMPDEST DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x4507 JUMPI JUMPDEST POP PUSH2 0x44CE SWAP4 POP PUSH2 0x5789 JUMP JUMPDEST DUP1 PUSH2 0x44E1 JUMPI POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x44EC PUSH1 0x12 SWAP2 PUSH2 0x4431 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x44D5 JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x4512 DUP3 PUSH2 0x5195 JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x1D63 JUMPI PUSH2 0x44CE SWAP5 PUSH1 0x12 DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x454B JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x44C3 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4557 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x4545 JUMP JUMPDEST SWAP4 POP POP POP POP PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 DUP3 LT ISZERO PUSH2 0x4583 JUMPI POP PUSH2 0x9DB SWAP1 PUSH2 0x5113 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 0x742 SWAP7 SWAP5 AND SWAP5 PUSH2 0x461E 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 0x4768 JUMPI JUMPDEST PUSH2 0x4648 JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x46CD JUMPI JUMPDEST POP POP DUP3 PUSH2 0x465D JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x4641 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 0x46AA SWAP2 PUSH2 0x46A4 SWAP1 SWAP2 PUSH2 0x50E0 JUMP JUMPDEST SWAP1 PUSH2 0x4771 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 0x4656 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 0x46ED DUP5 PUSH2 0x50E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x4701 DUP6 PUSH2 0x5354 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB DUP2 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x4745 PUSH2 0x475E SWAP2 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP5 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x5664 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 0x464E JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x463C JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x4786 DUP6 PUSH2 0x5354 JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP2 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x5664 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x47BB PUSH2 0x530A JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x55AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x47EB PUSH2 0x530A JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x1D63 JUMPI PUSH2 0x47A4 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x55AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x4902 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x48E9 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 0x48BA JUMPI DUP5 PUSH2 0x742 SWAP7 SWAP8 SUB PUSH2 0x486B 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 0x66EC 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 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0xB89 JUMPI DUP2 AND ISZERO PUSH2 0xB70 JUMPI PUSH2 0xB21 PUSH2 0x4952 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 0x4962 DUP3 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x742 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x4985 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 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 DUP1 SWAP3 SUB PUSH2 0x49C3 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x1D63 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x4AB6 JUMPI JUMPDEST PUSH2 0x4A8D JUMPI PUSH2 0x4A47 DUP2 PUSH2 0x3B20 JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x4A98 JUMPI JUMPDEST PUSH2 0x4A5A SWAP1 ISZERO ISZERO PUSH2 0x49EE JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x1D63 JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x1D63 JUMPI SUB PUSH2 0x4A8D JUMPI PUSH2 0x4A7D SWAP3 PUSH2 0x4ABF 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 0x4A4F JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x4A3A JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x4ACB DUP5 PUSH2 0x3B20 JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x4B52 JUMPI JUMPDEST PUSH2 0x4ADE SWAP1 ISZERO ISZERO PUSH2 0x49EE JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1D63 JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x4AFF JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x4B20 PUSH2 0x4B1B PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x4B70 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x4B46 JUMPI SWAP1 PUSH2 0x4B37 PUSH2 0x4B3E SWAP3 PUSH2 0x4A04 JUMP JUMPDEST ADD SWAP5 PUSH2 0x3E12 JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x4AEF 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 0x4AD3 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x4BD8 JUMPI JUMPDEST ISZERO PUSH2 0x4B8C JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x4BCE JUMPI JUMPDEST ISZERO PUSH2 0x4BA5 JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x4BC4 JUMPI JUMPDEST ISZERO PUSH2 0x4BBE JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x4BAF JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x4B96 JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x4B7D JUMP JUMPDEST SWAP2 PUSH2 0x9DB SWAP4 SWAP2 PUSH2 0x4BF1 SWAP4 PUSH2 0x4BFA JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x4C88 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x4C72 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 0x1579 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x4C69 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 PUSH1 0x4 GT ISZERO PUSH2 0x1D88 JUMPI JUMP JUMPDEST PUSH2 0x4C91 DUP2 PUSH2 0x4C7E JUMP JUMPDEST DUP1 PUSH2 0x4C9A JUMPI POP POP JUMP JUMPDEST PUSH2 0x4CA3 DUP2 PUSH2 0x4C7E JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4CBD JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x4CC6 DUP2 PUSH2 0x4C7E JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x4CE7 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 0x4CF3 PUSH1 0x3 SWAP3 PUSH2 0x4C7E JUMP JUMPDEST EQ PUSH2 0x4CFB 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 PUSH1 0x42 SWAP1 PUSH2 0x4D20 PUSH2 0x4D3B 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 0x4E26 JUMPI JUMPDEST ISZERO PUSH2 0x4D96 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 0x398E DUP2 PUSH2 0x691 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x4D6D JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4E8D JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x4E7B JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x4E71 DUP4 PUSH2 0x65B 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 0x4EA0 DUP4 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4F26 JUMPI POP PUSH1 0x1 EQ PUSH2 0x4EC7 JUMPI JUMPDEST POP PUSH2 0x9DB SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x4F0B JUMPI POP PUSH2 0x9DB SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x4EBA 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 0x4EF2 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x9DB SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4F6A JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x4E7B JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x4E71 DUP4 PUSH2 0x65B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x4F7D DUP4 PUSH2 0x5F3 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4F26 JUMPI POP PUSH1 0x1 EQ PUSH2 0x4FA3 JUMPI POP PUSH2 0x9DB SWAP3 POP SUB DUP3 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x4FE7 JUMPI POP PUSH2 0x9DB SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x4EBA 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 0x4FCE JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x502A JUMPI PUSH2 0x5014 SWAP2 SWAP3 PUSH2 0x50A4 JUMP JUMPDEST POP PUSH2 0x501E DUP2 PUSH2 0x4C7E JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x4293 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x5060 DUP2 PUSH2 0x2CB4 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 0x7AA JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x506D PUSH2 0x40E1 JUMP JUMPDEST DUP3 PUSH2 0x5096 JUMPI JUMPDEST DUP3 PUSH2 0x507D JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x5092 SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x4399 JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x5073 JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x50D5 JUMPI PUSH2 0x50CE SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x4BFA JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x50F4 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 0x5126 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 PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x5156 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 DUP2 ISZERO PUSH2 0x517F 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 0x9DB JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x52AE JUMPI JUMPDEST PUSH2 0x5256 PUSH2 0x524C PUSH2 0x5242 PUSH2 0x5238 PUSH2 0x522E PUSH2 0x5224 PUSH2 0x5262 SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x525D SWAP11 LT ISZERO PUSH2 0x52A1 JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x5294 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x5287 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x527B JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x526F JUMPI JUMPDEST LT ISZERO PUSH2 0x5267 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x521D DUP2 DUP12 PUSH2 0x5175 JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP11 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP10 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP9 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP8 PUSH2 0x5175 JUMP JUMPDEST PUSH2 0x521D DUP2 DUP7 PUSH2 0x5175 JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x5175 JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x520D JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x5206 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x51FC JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x51F1 JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x51E5 JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x51D7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x51AE JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x52D2 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1D63 JUMPI PUSH1 0x12 PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x531C JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1D63 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x5366 JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x1D63 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 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x656 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH2 0x742 SWAP2 PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x53F8 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 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x656 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x3E4B JUMPI PUSH2 0x742 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x53F8 PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x656 JUMPI PUSH2 0x5497 SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x54BF JUMPI DUP2 MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x742 SWAP2 PUSH2 0x53F8 JUMP JUMPDEST PUSH2 0x5382 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x5583 JUMPI PUSH2 0x54DC PUSH2 0x54F4 SWAP2 PUSH2 0x4431 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 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 0x5571 JUMPI DUP7 SWAP3 SUB PUSH2 0x5539 JUMPI PUSH2 0x5532 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 0x556C SWAP1 PUSH2 0x5558 PUSH2 0x554A PUSH2 0xF15 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 0x5398 JUMP JUMPDEST PUSH2 0x5532 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x55A7 SWAP1 PUSH2 0x5593 PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x5398 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x5640 JUMPI PUSH2 0x55C5 PUSH2 0x55DD SWAP2 PUSH2 0x4431 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 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 0x5571 JUMPI DUP7 SWAP3 SUB PUSH2 0x561B JUMPI PUSH2 0x5532 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST POP POP PUSH2 0x556C SWAP1 PUSH2 0x562C PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x541A JUMP JUMPDEST POP PUSH2 0x55A7 SWAP1 PUSH2 0x5650 PUSH2 0x554A PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x541A JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x56FB JUMPI PUSH2 0x567B PUSH2 0x5688 SWAP2 PUSH2 0x4431 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 0x5571 JUMPI DUP8 SWAP4 SUB PUSH2 0x56C7 JUMPI POP PUSH2 0x5532 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 0x556C SWAP2 PUSH2 0x56E7 PUSH2 0x56D9 PUSH2 0xF15 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 0x547A JUMP JUMPDEST POP SWAP1 PUSH2 0x55A7 SWAP2 PUSH2 0x570C PUSH2 0x56D9 PUSH2 0xF15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x547A JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x572E JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6CB4 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x5777 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x5722 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x5783 SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x5771 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x5797 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1D63 JUMPI PUSH1 0x12 PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x6C94 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x57E0 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x578B JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x57EC SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 PUSH2 0x57DA JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x5802 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 0x1D63 JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x5841 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x57F5 JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x584D SWAP1 PUSH2 0x3B20 JUMP JUMPDEST SWAP2 PUSH2 0x583A JUMP JUMPDEST PUSH1 0xD 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 0x589B JUMPI PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0xD SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0xD SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x58F3 JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0xE 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 0xD SLOAD AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST ISZERO PUSH2 0x590D JUMPI 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 0x5952 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 ISZERO PUSH2 0x598D JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x496E76616C69642074696D656C6F636B PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x59CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A29 DUP2 PUSH2 0x676 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x5A3B JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5A30 JUMP JUMPDEST SWAP2 DUP2 DUP2 LT PUSH2 0x5A54 JUMPI POP POP POP JUMP JUMPDEST PUSH2 0x742 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x5A30 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x656 JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI PUSH2 0x5A95 DUP4 DUP4 SLOAD DUP2 DUP6 SSTORE DUP5 PUSH2 0x5A47 JUMP JUMPDEST PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5AB4 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5AA6 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x656 JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI PUSH2 0x5AFA DUP4 DUP4 SLOAD DUP2 DUP6 SSTORE DUP5 PUSH2 0x5A47 JUMP JUMPDEST PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5B19 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5B0B JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x5B3A JUMPI POP POP POP JUMP JUMPDEST PUSH2 0x742 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH2 0x5B66 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH2 0x5A30 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x5B59 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x656 JUMPI PUSH2 0x5B97 DUP2 PUSH2 0x5B91 DUP5 SLOAD PUSH2 0x5F3 JUMP JUMPDEST DUP5 PUSH2 0x5B2B JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x5BD3 JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH2 0x5BC8 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x5BB2 JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH2 0x5BE9 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH2 0x5C26 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH2 0x5C0D JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x5C03 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH2 0x5BEE JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x656 JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x5C9C JUMPI JUMPDEST POP PUSH2 0x5C6E PUSH1 0x20 DUP1 SWAP3 ADD SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x5C80 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH2 0x5C90 DUP4 SWAP5 MLOAD DUP7 PUSH2 0x5B70 JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH2 0x5C72 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 KECCAK256 SWAP3 DUP4 ADD SWAP3 ADD JUMPDEST DUP3 DUP2 LT PUSH2 0x5CBA JUMPI POP POP PUSH2 0x5C59 JUMP JUMPDEST DUP1 PUSH2 0x5CC7 PUSH1 0x1 SWAP3 SLOAD PUSH2 0x5F3 JUMP JUMPDEST DUP1 PUSH2 0x5CD4 JUMPI JUMPDEST POP ADD PUSH2 0x5CAC JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH2 0x5CEC JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH2 0x5CCD JUMP JUMPDEST DUP4 PUSH2 0x5D0E SWAP3 PUSH2 0x5D00 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH2 0x5A30 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH2 0x5CE6 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x100 PUSH2 0x742 SWAP4 PUSH2 0x5D34 DUP2 MLOAD DUP6 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x5D45 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x5ACF JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x5D85 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x3 DUP7 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x5D96 PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x4 DUP7 ADD PUSH2 0x5C3E JUMP JUMPDEST PUSH2 0x5DBB PUSH2 0x5DA6 PUSH1 0xA0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0x6 DUP6 ADD SSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD PUSH2 0x5B70 JUMP JUMPDEST SWAP4 SWAP1 PUSH2 0x9DB SWAP6 SWAP4 PUSH2 0x3F8E SWAP4 PUSH2 0x5E07 SWAP3 DUP8 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST ISZERO PUSH2 0x5E1C JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5E68 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x141C9BDC1BDCD85B08195E1C1A5C9959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5EA7 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD PUSH2 0x9DB DUP2 PUSH2 0xAC3 JUMP JUMPDEST ISZERO PUSH2 0x5EFC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x656 JUMPI PUSH2 0x5F4F SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x4440 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x54BF JUMPI PUSH2 0x742 SWAP2 PUSH2 0x5B70 JUMP JUMPDEST ISZERO PUSH2 0x5F66 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x141C9BDC1BDCD85B081B9BDD08195E1958DD5D1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5FAA JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x496E73756666696369656E742071756F72756D PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5FEC 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 0x6027 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 PUSH1 0x60 DUP2 ADD SWAP2 DUP2 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x60 DUP3 DUP3 ADD MSTORE DUP4 SLOAD DUP1 SWAP4 MSTORE PUSH1 0x80 DUP2 ADD SWAP3 PUSH1 0x0 SWAP5 DUP6 MSTORE DUP3 DUP6 KECCAK256 SWAP1 DUP6 JUMPDEST DUP2 DUP2 LT PUSH2 0x60C7 JUMPI POP POP POP PUSH1 0x40 DUP2 DUP5 SUB SWAP2 ADD MSTORE DUP1 DUP5 SLOAD SWAP3 DUP4 DUP2 MSTORE ADD SWAP4 DUP4 MSTORE DUP1 DUP4 KECCAK256 SWAP3 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x60B0 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 SLOAD DUP6 MSTORE SWAP4 DUP5 ADD SWAP4 PUSH1 0x1 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x60A2 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 MSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP3 DUP4 ADD SWAP3 ADD PUSH2 0x607F JUMP JUMPDEST SWAP1 PUSH2 0x60F8 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x610E PUSH2 0x6109 PUSH1 0x5 DUP4 ADD SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x6122 PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x6 DUP4 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 ADD SWAP4 SWAP1 PUSH1 0x0 DUP2 JUMPDEST PUSH2 0x6166 JUMPI JUMPDEST POP POP PUSH2 0x3DAA PUSH32 0xE8585C604452FCB59BC021FCE36EB8241FFC18BD81B50CE6CD5CEA81CEEAA58D SWAP4 SWAP5 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH2 0x605A JUMP JUMPDEST DUP4 SLOAD DUP2 LT ISZERO PUSH2 0x61EC JUMPI DUP1 PUSH2 0x61A2 PUSH2 0x619B PUSH2 0x13B8 PUSH2 0x6186 PUSH2 0x61E6 SWAP6 DUP10 PUSH2 0x4440 JUMP JUMPDEST SWAP1 SLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 SHL SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x5FE5 JUMP JUMPDEST PUSH2 0x61C3 PUSH2 0x61BC PUSH2 0x61B2 DUP4 DUP11 PUSH2 0x4440 JUMP JUMPDEST SWAP1 SLOAD SWAP1 PUSH1 0x3 SHL SHR SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x6020 JUMP JUMPDEST PUSH2 0x1927 PUSH2 0x61D3 PUSH2 0x6186 DUP4 DUP9 PUSH2 0x4440 JUMP JUMPDEST PUSH2 0x61E0 PUSH2 0x61B2 DUP5 DUP12 PUSH2 0x4440 JUMP JUMPDEST SWAP1 PUSH2 0x61F1 JUMP JUMPDEST DUP2 PUSH2 0x612D JUMP JUMPDEST PUSH2 0x6132 JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x48E9 JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1D63 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 0x6277 JUMPI PUSH2 0x742 SWAP3 SWAP4 POP PUSH2 0x666E 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 ISZERO PUSH2 0x62A4 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x151A5B595B1BD8DAC81B9BDD08195E1C1A5C9959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x62E7 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x22B6B83A3C9037B832B930BA34B7B7 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x6325 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x456D7074792074617267657420636861696E73 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x100 PUSH1 0x8 SWAP2 PUSH2 0x6372 DUP2 MLOAD DUP6 PUSH2 0x5B70 JUMP JUMPDEST PUSH2 0x6383 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x5ACF JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x3 DUP6 ADD SSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x4 DUP6 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x63CE PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x5 DUP7 ADD PUSH2 0x5C3E JUMP JUMPDEST PUSH2 0x63F3 PUSH2 0x63DE PUSH1 0xC0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD SSTORE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x9DB SWAP3 SWAP2 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST ISZERO PUSH2 0x6433 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416D6F756E74206D7573742062652067726561746572207468616E2030000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x647F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E73756666696369656E742074726561737572792062616C616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 MLOAD DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x742 SWAP2 PUSH1 0x8 SWAP1 PUSH2 0x100 SWAP1 PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x5D85 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5D62 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x9DB SWAP3 SWAP2 ADD SWAP1 PUSH2 0x7AA JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x656C PUSH1 0xFF PUSH1 0x5 DUP5 ADD SLOAD AND PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x6580 PUSH1 0x7 DUP4 ADD SLOAD PUSH1 0x6 DUP5 ADD SLOAD GT ISZERO PUSH2 0x5FA3 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 DUP2 SLOAD SWAP3 PUSH1 0x28 SLOAD SWAP4 PUSH2 0x6598 DUP6 DUP3 GT ISZERO PUSH2 0x6478 JUMP JUMPDEST DUP5 SUB SWAP4 DUP5 GT PUSH2 0x1D63 JUMPI PUSH2 0x65F6 PUSH2 0x3DAA SWAP2 PUSH2 0x65D2 PUSH32 0xBB768AA97FA4E8A8F73BFA7BC210F1A29F29C765D44F0C29ACC04A549E32E43 SWAP7 PUSH1 0x28 SSTORE JUMP JUMPDEST DUP1 SLOAD DUP6 SLOAD PUSH2 0x65E9 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS PUSH2 0x4809 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 SLOAD PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 DUP3 ADD SWAP1 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 DUP1 ISZERO DUP1 ISZERO PUSH2 0x6664 JUMPI JUMPDEST PUSH2 0x665E JUMPI PUSH2 0x6655 PUSH2 0x9DB SWAP2 PUSH1 0x28 SLOAD SWAP1 PUSH2 0x4A1A JUMP JUMPDEST PUSH1 0x2 SLOAD SWAP1 PUSH2 0x5175 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x28 SLOAD ISZERO PUSH2 0x6641 JUMP JUMPDEST SWAP1 PUSH2 0x742 SWAP2 PUSH2 0x6684 PUSH2 0x667F DUP4 PUSH2 0x50E0 JUMP JUMPDEST PUSH2 0x47A8 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x66D4 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 0x4620 JUMP JUMPDEST PUSH2 0x66E5 PUSH2 0x66E0 DUP5 PUSH2 0x50E0 JUMP JUMPDEST PUSH2 0x47D8 JUMP JUMPDEST POP POP PUSH2 0x6699 JUMP JUMPDEST PUSH2 0x742 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x6744 JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x6731 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 0x4620 JUMP JUMPDEST PUSH2 0x673D PUSH2 0x66E0 DUP6 PUSH2 0x50E0 JUMP JUMPDEST POP POP PUSH2 0x6710 JUMP JUMPDEST PUSH2 0x6750 PUSH2 0x667F DUP7 PUSH2 0x50E0 JUMP JUMPDEST POP POP PUSH2 0x6707 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x5EE JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x5EE JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x6778 DUP2 PUSH2 0x6881 JUMP JUMPDEST SWAP1 PUSH2 0x6782 DUP3 PUSH2 0x1D7E JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x687D JUMPI PUSH2 0x679F SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x13 SLOAD PUSH2 0x67B5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 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 0x1579 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x6860 JUMPI JUMPDEST POP ISZERO PUSH2 0x67F3 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 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x6833 JUMPI JUMPDEST POP POP ISZERO PUSH2 0x682E JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x6852 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x6859 JUMPI JUMPDEST PUSH2 0x684A DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x6757 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x6822 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x6840 JUMP JUMPDEST PUSH2 0x6877 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x6859 JUMPI PUSH2 0x684A DUP2 DUP4 PUSH2 0x6E3 JUMP JUMPDEST CODESIZE PUSH2 0x67E5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x6895 DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x698D JUMPI PUSH1 0xF8 SHR PUSH2 0x6987 JUMPI PUSH2 0x68C2 PUSH2 0x4011 PUSH2 0x3CA9 DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x696E JUMPI PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 SWAP2 LT ISZERO PUSH2 0x6967 JUMPI PUSH2 0x68E2 DUP3 PUSH2 0x39AA JUMP JUMPDEST LT PUSH2 0x68ED JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x68F9 PUSH2 0x180A DUP3 PUSH2 0x6994 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6942 JUMPI JUMPDEST ISZERO PUSH2 0x690B JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x4011 PUSH1 0x1 PUSH2 0x6927 PUSH2 0x6934 SWAP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x693D JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x6962 PUSH2 0x180A DUP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x6900 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 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0xC PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP3 MSTORE DUP1 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0x1579 JUMPI PUSH2 0x6A31 SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x6A1F SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x37F0 JUMPI POP PUSH2 0x37D8 SWAP1 PUSH2 0x4458 JUMP JUMPDEST DIV SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x3B2E JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x6A42 SWAP4 SWAP3 SWAP2 PUSH2 0x3930 JUMP JUMPDEST PUSH2 0x6A4B DUP2 PUSH2 0x676F JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1D88 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x6B4A JUMPI POP PUSH2 0x6A90 PUSH2 0x6A7B DUP3 PUSH1 0x0 MSTORE PUSH1 0xC 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 0x6AD0 DUP2 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x6ADA JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH2 0x6AEF SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13B8 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x5EE 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 0x1579 JUMPI PUSH2 0x6B37 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0x156D PUSH2 0x6B44 SWAP3 PUSH2 0x643 JUMP JUMPDEST CODESIZE PUSH2 0x6B24 JUMP JUMPDEST SWAP1 PUSH2 0x6B6E 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 0x1D8D JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x6BA3 PUSH1 0x80 SWAP4 PUSH2 0x6B95 PUSH2 0x6BB1 SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x38DB JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x6BEC PUSH1 0xA0 SWAP5 PUSH2 0x6BDE PUSH2 0x6BFA SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x389E JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x25E9 JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x38DB 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 0x13 SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x5EE JUMPI PUSH1 0x0 SWAP4 PUSH2 0x6C5A 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 0x6B77 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0x1579 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x4952 SWAP3 PUSH2 0x6C84 JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x6C8D SWAP1 PUSH2 0x643 JUMP JUMPDEST CODESIZE PUSH2 0x6C73 JUMP INVALID 0xBB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC3444C65A7BB8D6351C1CF70C95A316CC6A92839C98 PUSH7 0x82D98BC35F958F BASEFEE DUP4 0xF9 0xD2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP11 0x5D 0xE6 SWAP10 0xF7 0xAE 0xFB 0x28 DUP15 DUP4 SWAP5 0xE1 LOG1 SWAP7 PUSH25 0x91A7FA659845A380EC582AE5C3DAD15A8264736F6C63430008 EQ STOP CALLER ","sourceMap":"782:20814:46:-:0;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;:::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;:::-;;:::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;;782:20814:46;;;;17777:11;782:20814;;;-1:-1:-1;782:20814:46;17439:17;782:20814;;;-1:-1:-1;782:20814:46;17738:4;17488:17;;;782:20814;17624:83;782:20814;;;17479:56;782:20814;;;17487:18;17479:56;:::i;:::-;17545:69;17572:17;;;782:20814;17553:15;:36;;17545:69;:::i;:::-;17660:23;17632:24;;;782:20814;17660:23;;782:20814;-1:-1:-1;17632:51:46;17624:83;:::i;:::-;-1:-1:-1;;782:20814:46;;;;17777:11;:::i;782:20814::-;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;:::o;:::-;;:::i;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;-1:-1:-1;782:20814:46;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:::o;:::-;;;;;-1:-1:-1;782:20814:46;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;2562:45;782:20814;;;;-1:-1:-1;782:20814:46;2562:45;;;:::i;:::-;;;;;782:20814;2562:45;782:20814;2562:45;;782:20814;;;;;;;;2562:45;;782:20814;;;2562:45;;;782:20814;;2562:45;;;;;782:20814;2562:45;;782:20814;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4125:42:2;;;:107;;;;782:20814:46;4125:159:2;;;;782:20814:46;;;;;;;;;;4125:159:2;-1:-1:-1;;;862:40:38;;-1:-1:-1;4125:159:2;;;:107;-1:-1:-1;;;4183:49:2;;;-1:-1:-1;4125:107:2;;782:20814:46;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;1460:13:6;782:20814:46;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;3401:72:2;;:::i;:::-;2544:3:9;3674:32;;3670:132;;3961:62;;-1:-1:-1;;;;;1586:32:9;;:::i;:::-;782:20814:46;8310:38:43;3906::9;;;:::i;:::-;782:20814:46;18895:12;782:20814;8310:38:43;:::i;:::-;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;3961:62:9;;;;782:20814:46;3670:132:9;782:20814:46;;;;3729:62:9;;;;;;782:20814:46;3729:62:9;;782:20814:46;2544:3:9;782:20814:46;;;;3729:62:9;782:20814:46;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;4424:5:2;782:20814:46;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;4424:5:2;782:20814:46;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;735:10:27;9813:19:20;9809:89;;-1:-1:-1;;;;;782:20814:46;;;9911:21:20;;9907:90;;735:10:27;782:20814:46;;;;;;;;;;735:10:27;;10006:27:20;;:18;782:20814:46;;;;;;;;;;;;;;;;10006:27:20;782:20814:46;;;;;;10085:31:20;782:20814:46;735:10:27;10085:31:20;;782:20814:46;;;;;;;9907:90:20;782:20814:46;;-1:-1:-1;;;9955:31:20;;-1:-1:-1;782:20814:46;9955:31:20;;782:20814:46;;;9955:31:20;9809:89;782:20814:46;;-1:-1:-1;;;9855:32:20;;9830:1;782:20814:46;9855:32:20;;782:20814:46;;;9855:32:20;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;2935:44;782:20814;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;2765:30;782:20814;;;;;;;;2534:22;782:20814;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;2534:22;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;2534:22;782:20814;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;2534:22;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;2534:22;782:20814;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;2534:22;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;782:20814:46;;;;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;2698:61;782:20814;;;-1:-1:-1;782:20814:46;;;;;;;;2698:61;782:20814;;;;2698:61;782:20814;2698:61;;782:20814;2698:61;;;;782:20814;2698:61;782:20814;2698:61;;782:20814;;;2698:61;;;782:20814;;2698:61;;;;782:20814;2698:61;782:20814;2698:61;;;782:20814;;;;;2698:61;;;;;782:20814;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;:::o;:::-;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;8088:91;782:20814;8088:91;782:20814;;;;;;:::i;:::-;7293:70;782:20814;;;;7301:35;7293:70;:::i;:::-;7373:45;782:20814;;7381:20;;7373:45;:::i;:::-;7428:56;7448:15;7436:27;;7428:56;:::i;:::-;7512:10;-1:-1:-1;782:20814:46;;;;;;;;;;7494:73;;3095:18:20;782:20814:46;7502:25;;7494:73;:::i;:::-;782:20814;7599:34;782:20814;7599:34;;;;;:::i;:::-;;782:20814;;7599:34;7877:14;;:::i;:::-;7950:40;7951:32;2927:12:20;782:20814:46;7967:16;782:20814;7951:32;;:::i;:::-;14810:3;782:20814;;;;7950:40;782:20814;;;:::i;:::-;;;;7693:379;;;782:20814;;;7693:379;;;782:20814;;;;7512:10;7693:379;;;782:20814;;7693:379;;782:20814;-1:-1:-1;7693:379:46;;;782:20814;7693:379;;;782:20814;-1:-1:-1;7693:379:46;;;782:20814;7693:379;;;;782:20814;7652:38;;782:20814;;;;;;;;;;7652:38;782:20814;:::i;:::-;7693:379;782:20814;7512:10;;;;8088:91;;;:::i;:::-;;;;7693:379;782:20814;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;7918:10:2;782:20814:46;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;25338:4:2;25315:28;25311:91;;782:20814:46;;-1:-1:-1;;;782:20814:46;;;;;25311:91:2;782:20814:46;;-1:-1:-1;;;25366:25:2;;782:20814:46;;25366:25:2;782:20814:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;:::i;:::-;13576:57:2;;;;;;;;:::i;:::-;13644:77;;;;:::i;:::-;-1:-1:-1;3576:9:7;782:20814:46;3576:21:7;;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;;;;;782:20814:46;;;3576:21:7;782:20814:46;;;;;;;;;3576:23:7;;;;;;782:20814:46;3576:23:7;;;;;;;;;-1:-1:-1;3576:23:7;;;782:20814:46;;;;6677:4:7;782:20814:46;;;6661:40:7;782:20814:46;;;;;;;;;3692:65:7;;;;;;;;;782:20814:46;3692:65:7;;;:::i;:::-;;;;;;;;;;-1:-1:-1;3692:65:7;;;782:20814:46;3665:24:7;;;;782:20814:46;;3665:12:7;782:20814:46;;;;;;;3665:24:7;782:20814:46;3576:9:7;782:20814:46;3767:23:7;;-1:-1:-1;;;;;782:20814:46;;;3767:23:7;:67;;;;;;-1:-1:-1;782:20814:46;;3767:67:7;782:20814:46;;;;;;;;;;;;;3767:67:7;;782:20814:46;3767:67:7;;;:::i;:::-;;;;;;;;;;3852:42;3767:67;3870:23;3767:67;;;782:20814:46;3870:15:7;;:23;:::i;:::-;3852:42;:::i;:::-;782:20814:46;;;13840:15:2;782:20814:46;;13871:22:2;13936:38;;13871:22;:46;782:20814:46;13871:22:2;782:20814:46;13871:22:2;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;13871:22:2;:33;782:20814:46;;;;;;;;;;;;13871:46:2;782:20814:46;;;;;;;;;;;;;;;;;;;;;13936:38:2;;;;782:20814:46;;;;;;;;;;;;13836:216:2;782:20814:46;;-1:-1:-1;;;14012:29:2;;782:20814:46;;14012:29:2;3767:67:7;;;;;;:::i;:::-;;;:::i;:::-;;;;;;:::i;3692:65::-;;;;;;-1:-1:-1;3692:65:7;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;3576:23;;;;;;;;;;;;;;;:::i;:::-;;;;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;2927:12:20;782:20814:46;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;12909:44;782:20814;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;12909:44;;;782:20814;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;14911:82;782:20814;14911:82;782:20814;;;;;;:::i;:::-;14073:49;-1:-1:-1;;;;;782:20814:46;;14081:24;;14073:49;:::i;:::-;14132:53;14140:11;;;14132:53;:::i;:::-;14195:73;14214:20;782:20814;14203:31;;;14195:73;:::i;:::-;14278:56;14298:15;14286:27;;14278:56;:::i;:::-;14362:10;-1:-1:-1;782:20814:46;;;;;;;;;;14344:73;;3095:18:20;782:20814:46;14344:73;782:20814;;;14449:25;;;;;:::i;:::-;;782:20814;;14449:25;14700:14;;:::i;:::-;14773:40;14774:32;2927:12:20;782:20814:46;14790:16;782:20814;14774:32;;:::i;14773:40::-;782:20814;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;14525:370;782:20814;14525:370;;782:20814;;;;14525:370;;782:20814;14362:10;782:20814;14525:370;;782:20814;;14525:370;;782:20814;-1:-1:-1;782:20814:46;14525:370;;782:20814;14525:370;;;782:20814;-1:-1:-1;14525:370:46;;;782:20814;14525:370;;;;782:20814;14493:29;;782:20814;;14493:17;782:20814;;;;;;;14493:29;782:20814;:::i;:::-;;;14362:10;;;;14911:82;;;:::i;782:20814::-;;;;;;;;;;;;;;;15308:30;;782:20814;;14493:17;782:20814;;;;;;;15308:30;15357:17;;;782:20814;15348:56;15356:18;782:20814;;;;;;;;15356:18;;782:20814;15356:18;15348:56;:::i;:::-;15414:64;15440:17;;;782:20814;15422:15;:35;15414:64;:::i;:::-;15506:10;-1:-1:-1;782:20814:46;;;;;;;;;;15488:55;;3095:18:20;782:20814:46;15496:25;;15488:55;:::i;:::-;-1:-1:-1;15670:19:46;782:20814;15670:19;;782:20814;;;15646:269;15666:30;;;;;;-1:-1:-1;;782:20814:46;;15506:10;782:20814;;-1:-1:-1;;;;;;782:20814:46;15950:28;;;782:20814;;;15925:54;;782:20814;;15950:28;;782:20814;;;;15950:28;;782:20814;;15950:28;;;;;;:::i;:::-;15925:54;:::i;:::-;16215:23;15989:24;;;782:20814;15989:26;782:20814;;15989:26;:::i;:::-;782:20814;;;;;;;;;;15506:10;782:20814;;;;;;;;;;16031:73;;782:20814;;16031:73;16215:23;782:20814;-1:-1:-1;16187:51:46;16183:157;;782:20814;16183:157;16254:24;16317:11;16254:24;16274:4;782:20814;;;;;;;;;16254:24;16317:11;:::i;15698:3::-;15742:22;782:20814;15742:22;15698:3;15742:22;;;:::i;:::-;782:20814;;;:::i;:::-;15742:34;:114;;;;15698:3;15717:187;;;:::i;:::-;15698:3;:::i;:::-;15651:13;;15742:114;15808:22;15717:187;782:20814;15808:22;;;;:::i;:::-;782:20814;;:::i;:::-;;;15506:10;;-1:-1:-1;;;;;782:20814:46;15797:45;;;;;;;;;;;:::i;:::-;782:20814;15797:59;;15742:114;;;;782:20814;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;735:10:27;782:20814:46;;;;;;;;;;;;;-1:-1:-1;;10580:36:20;;10576:309;;782:20814:46;4986:5:20;;;;:::i;:::-;782:20814:46;;3657:11:20;782:20814:46;;;;;10576:309:20;10636:24;;;10632:130;;10854:5;782:20814:46;4986:5:20;782:20814:46;;735:10:27;10854:5:20;;:::i;:::-;10576:309;;10632:130;782:20814:46;;-1:-1:-1;;;10687:60:20;;735:10:27;782:20814:46;10687:60:20;;782:20814:46;;;;;;;;;;;;;;;10687:60:20;;;;;782:20814:46;;;;:::i;:::-;15373:57:2;;;;;;;;:::i;:::-;15441:154;;;;:::i;:::-;;15667:38;:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;15667:22:2;782:20814:46;;-1:-1:-1;;;;782:20814:46;-1:-1:-1;;;782:20814:46;;;;15667:38:2;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;15805:4:2;15782:28;15778:258;;782:20814:46;21571:15;;;;782:20814;21571:15;;;:::i;:::-;3033:9:7;782:20814:46;15805:4:2;;782:20814:46;-1:-1:-1;;;;;782:20814:46;16193:28:2;;:56;;;782:20814:46;16189:110:2;;782:20814:46;;;;;;16314:28:2;;782:20814:46;;;;16314:28:2;782:20814:46;16189:110:2;16265:21;1536:4:30;16265:15:2;1536:4:30;5141:109:44;16265:21:2;16189:110;;16193:56;16226:23;16225:24;16226:23;:15;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;;5653:26:44;5564:122;;16225:24:2;16193:56;;15778:258;15831:13;;;;-1:-1:-1;15866:3:2;782:20814:46;;15846:18:2;;;;;15866:3;15805:4;;15893:27;:10;;;;;:::i;:::-;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;15893:27:2;;15889:123;;15866:3;:::i;:::-;15831:13;;15889:123;15969:23;15979:12;;;;:::i;:::-;;782:20814:46;;;;;15969:23:2;;:::i;15846:18::-;-1:-1:-1;15846:18:2;;;;15778:258;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;7464:10:2;782:20814:46;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;1616:138:2;782:20814:46;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;2780:2:20;782:20814:46;;;;;;;;;-1:-1:-1;;782:20814:46;;;;11151:11;782:20814;;;-1:-1:-1;782:20814:46;;;;;-1:-1:-1;782:20814:46;11111:4;10861:17;;;782:20814;10997:83;782:20814;;;10852:56;782:20814;;;10860:18;10852:56;:::i;10997:83::-;-1:-1:-1;;782:20814:46;;;;11151:11;:::i;782:20814::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;1289:12:6;782:20814:46;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;-1:-1:-1;782:20814:46;;;4411:20:11;782:20814:46;;;;;;4459:29:11;782:20814:46;;4459:29:11;:::i;:::-;782:20814:46;;;9737:15:43;9762:18;;9801:1;9795:7;;9791:234;;782:20814:46;10049:53:43;;782:20814:46;10049:53:43;;;;;:::i;:::-;10120:8;;;:63;;;782:20814:46;;-1:-1:-1;;;;;782:20814:46;;;;;;10120:63:43;10168:7;;;;;;:::i;:::-;14439:109;;;;;782:20814:46;;;10120:63:43;;9791:234;9838:14;;;;:::i;:::-;782:20814:46;;;;;;;;14439:109:43;10049:53;14439:109;;;;782:20814:46;14439:109:43;;;;;;782:20814:46;;;;;9870:48:43;9866:149;782:20814:46;;;9938:10:43;9866:149;;9791:234;;;;;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;;;782:20814:46;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;:::o;:::-;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;19886:23;782:20814;;19886:23;:::i;:::-;782:20814;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;1159:44:5;782:20814:46;;;;;:::i;:::-;;;-1:-1:-1;782:20814:46;1159:14:5;782:20814:46;;;;-1:-1:-1;782:20814:46;1159:35:5;782:20814:46;;;;;;;;;;;;;;;;1159:44:5;782:20814:46;;;;;;;;;;;;;;;;;:::i;:::-;17878:57:2;;;;;;;;;:::i;:::-;19886:23:46;;;:::i;:::-;782:20814;;;;;;;;;;;;27519:48:2;:62;27515:172;;-1:-1:-1;;782:20814:46;;;7918:10:2;782:20814:46;;;;;;-1:-1:-1;;;;;782:20814:46;735:10:27;18116:44:2;18112:116;;782:20814:46;20316:58;;;;:::i;:::-;782:20814;;;;;;;;;;;;;18112:116:2;782:20814:46;;-1:-1:-1;;;18183:34:2;;735:10:27;782:20814:46;18183:34:2;;782:20814:46;;;10687:60:20;27515:172:2;782:20814:46;;;;;;27604:72:2;;;;;;;;;782:20814:46;;;;;;:::i;:::-;;;;;;27604:72:2;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;2898:31;782:20814;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;1476:14:5;782:20814:46;;;-1:-1:-1;782:20814:46;;;;1570:25:5;1547:21;;;782:20814:46;1570:25:5;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;22885:65:2;782:20814:46;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;735:10:27;782:20814:46;;22885:65:2;:::i;:::-;782:20814:46;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;782:20814:46;5674:10:11;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;:::i;:::-;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;5903:9:11;782:20814:46;;;;;:::i;:::-;735:10:27;5903:9:11;:::i;782:20814:46:-;;;;;;-1:-1:-1;;782:20814:46;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;20688:53:2;782:20814:46;;;;;;;;;:::i;:::-;;;;;:::i;:::-;735:10:27;;782:20814:46;;20688:53:2;:::i;782:20814:46:-;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:20814:46;8741:20:11;782:20814:46;;;8723:57:11;782:20814:46;-1:-1:-1;782:20814:46;;8723:57:11;:::i;:::-;782:20814:46;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;3095:9:20;782:20814:46;;;;;;;;;;;;3004:116:20;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;3401:72:2;;:::i;:::-;2801:44:6;782:20814:46;2816:12:6;782:20814:46;;;;;;;;;;;;;;2801:44:6;-1:-1:-1;;782:20814:46;;2816:12:6;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;22885:65:2;782:20814:46;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;8512:39;;782:20814;;;;;;;;;;8512:39;8570:17;;;782:20814;8561:56;8569:18;782:20814;;;;;;;8561:56;8627:64;8653:17;;;782:20814;8635:15;:35;8627:64;:::i;:::-;8719:10;-1:-1:-1;782:20814:46;;;;;;;;;;8701:55;;3095:18:20;782:20814:46;8701:55;-1:-1:-1;8883:19:46;782:20814;8883:19;;782:20814;;;8859:269;8879:30;;;;;;-1:-1:-1;;782:20814:46;;8719:10;782:20814;;-1:-1:-1;;;;;;782:20814:46;9163:28;;;782:20814;;;9138:54;;782:20814;;9163:28;;782:20814;;;;9163:28;782:20814;9138:54;9437:23;9202:24;;;782:20814;9202:26;782:20814;;9202:26;:::i;:::-;782:20814;;;;;;;;;;8719:10;782:20814;;;;;;;;;;9244:82;;782:20814;;9244:82;9437:23;782:20814;-1:-1:-1;9409:51:46;9405:158;;782:20814;9405:158;9476:24;9540:11;9476:24;16274:4;782:20814;;;;;;;;;9476:24;9540:11;:::i;8911:3::-;8955:22;782:20814;8955:22;8911:3;8955:22;;;:::i;8911:3::-;8864:13;;782:20814;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:20814:46;624:7:29;782:20814:46;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;;;;;-1:-1:-1;782:20814:46;2613:79;;;782:20814;;2613:79;782:20814;;;;;;2613:79;;782:20814;;2613:79;782:20814;2613:79;;;782:20814;;2613:79;;;782:20814;2613:79;782:20814;2613:79;;;782:20814;;;;;2613:79;;;;;782:20814;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;6099:41:35;:5;:41;:::i;:::-;782:20814:46;6554:47:35;:8;:47;:::i;:::-;782:20814:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;5590:13:35;;782:20814:46;;;;5625:4:35;782:20814:46;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;5270:29:11;782:20814:46;;5270:29:11;:::i;:::-;5234:17;782:20814:46;9737:15:43;-1:-1:-1;9762:18:43;9795:7;9801:1;9795:7;;9791:234;;782:20814:46;10049:53:43;;;;:::i;:::-;-1:-1:-1;10120:8:43;;;-1:-1:-1;;782:20814:46;;-1:-1:-1;782:20814:46;;;;;10120:63:43;5234:17:11;10168:7:43;782:20814:46;10168:7:43;;:::i;:::-;14439:109;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;10120:63:43;;9791:234;9838:14;;;;;:::i;:::-;782:20814:46;;;;;;;10049:53:43;14439:109;5234:17:11;14439:109:43;;782:20814:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;;;9870:48:43;9866:149;782:20814:46;;;9938:10:43;9866:149;9791:234;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;9791:234;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;21004:204:2;782:20814:46;21223:6:2;782:20814:46;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;1121:7:29;782:20814:46;;;;;;;;;;;;;21073:102:2;;782:20814:46;;;21100:73:2;;782:20814:46;1470:81:2;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21100:73:2;;;;;:::i;:::-;782:20814:46;21090:84:2;;21073:102;:::i;:::-;21004:204;;:::i;21223:6::-;21219:75;;782:20814:46;21311:41:2;782:20814:46;;;;;:::i;:::-;21311:41:2;;:::i;21219:75::-;782:20814:46;;-1:-1:-1;;;21252:31:2;;-1:-1:-1;;;;;782:20814:46;;;21252:31:2;;782:20814:46;;;10687:60:20;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;18895:12;782:20814;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:20814:46;3033:54;782:20814;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;2544:3:9;782:20814:46;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;1998:40:8;782:20814:46;;;;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:20814:46;;;;1998:40:8;;782:20814:46;;;;;;;;;;;;;;;;;;1998:40:8;;782:20814:46;867:6:8;-1:-1:-1;;;;;782:20814:46;1998:40:8;;;;;;782:20814:46;1998:40:8;-1:-1:-1;1998:40:8;;;782:20814:46;-1:-1:-1;782:20814:46;;;;;;;;;;;;;1998:40:8;;;;782:20814:46;1998:40:8;;;;;;;;;:::i;:::-;;;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;-1:-1:-1;782:20814:46;;;3868:20:11;782:20814:46;;;;;;;;-1:-1:-1;;;;;782:20814:46;3868:38:11;;;:::i;:::-;782:20814:46;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;2854:38;782:20814;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;-1:-1:-1;;;;;1586:32:9;;:::i;782:20814:46:-;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;3401:72:2;;:::i;:::-;6268:9:7;782:20814:46;6245:56:7;782:20814:46;;;;;;;;;;;;;;;;;;;;;;6245:56:7;-1:-1:-1;;;;;;782:20814:46;;6268:9:7;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;3459:5:20;782:20814:46;;;;;:::i;:::-;;;735:10:27;;3459:5:20;:::i;:::-;782:20814:46;;;3482:4:20;782:20814:46;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;3222:4:7;782:20814:46;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;12218:22;;782:20814;;12218:9;782:20814;;;;;;;12218:22;12259:17;;;782:20814;12250:56;12258:18;782:20814;;;;;;;12250:56;12316:64;12342:17;;;782:20814;12324:15;:35;12316:64;:::i;:::-;12408:10;-1:-1:-1;782:20814:46;;;;;;;;;;12390:55;;3095:18:20;782:20814:46;12390:55;782:20814;;12408:10;782:20814;;-1:-1:-1;;;;;;782:20814:46;;12480:28;;782:20814;12455:54;;12480:28;782:20814;;;;12480:28;;782:20814;;12480:28;;;;;;:::i;:::-;12455:19;;;:54;:::i;:::-;12667:23;12519:24;;;782:20814;12519:26;782:20814;;12519:26;:::i;:::-;782:20814;;;;;;;;;;12408:10;782:20814;;;;;;;;;;12560:65;;782:20814;;12560:65;12667:23;782:20814;-1:-1:-1;12639:51:46;12635:164;;782:20814;12635:164;782:20814;;-1:-1:-1;;782:20814:46;16274:4;782:20814;;;12749:39;;;;12706:24;782:20814;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;8115:10:2;782:20814:46;;;;8115:33:2;782:20814:46;-1:-1:-1;782:20814:46;8115:33:2;782:20814:46;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;1641:18:6;782:20814:46;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;13183:53;13191:11;;;13183:53;:::i;:::-;13264:10;-1:-1:-1;782:20814:46;-1:-1:-1;782:20814:46;;;;-1:-1:-1;782:20814:46;;13254:32;782:20814;;13440:46;13360:4;13367:7;13440:46;13360:4;;13264:10;13367:7;:::i;:::-;13385:31;;782:20814;13385:31;782:20814;13385:31;:::i;:::-;;782:20814;;13385:31;782:20814;;;13264:10;782:20814;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;782:20814:46;;;;-1:-1:-1;782:20814:46;;;24659:45:2;782:20814:46;;;;;;:::i;:::-;3401:72:2;;;:::i;:::-;782:20814:46;;;;;;;;;;;;;24618:31:2;782:20814:46;;;24618:31:2;;;;;:::i;:::-;24659:45;;:::i;782:20814:46:-;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;6185:15:11;;:24;6181:91;;6298:168;6535:9;782:20814:46;6501:5:11;782:20814:46;;;6352:57:11;782:20814:46;6352:57:11;;782:20814:46;2063:71:11;782:20814:46;;;;;;;;;;2063:71:11;;782:20814:46;2063:71:11;782:20814:46;2063:71:11;;782:20814:46;;2063:71:11;;782:20814:46;;6352:57:11;;;;;:::i;:::-;6325:86;782:20814:46;;;;;;;6342:68:11;;6325:86;:::i;:::-;6298:168;:::i;:::-;6501:5;;;:::i;:::-;6535:9;:::i;6181:91::-;782:20814:46;;-1:-1:-1;;;6232:29:11;;782:20814:46;6232:29:11;;782:20814:46;;;;;6232:29:11;782:20814:46;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;12037:51;;782:20814;;;;;;;;:::i;:::-;;;;;;11377:49;782:20814;;11385:21;;11377:49;:::i;:::-;11436:56;782:20814;;11444:24;;11436:56;:::i;:::-;11502;11522:15;11510:27;;11502:56;:::i;:::-;11589:17;782:20814;11589:17;;;;;:::i;:::-;;782:20814;;11589:17;11866:14;;:::i;:::-;11939:40;11940:32;2927:12:20;782:20814:46;11956:16;782:20814;11940:32;;:::i;11939:40::-;782:20814;;;:::i;:::-;;;;;11640:382;;782:20814;;;;;11640:382;;782:20814;;;;11640:382;;782:20814;11830:10;782:20814;11640:382;;782:20814;11640:382;;;782:20814;-1:-1:-1;11640:382:46;;;782:20814;11640:382;;;782:20814;-1:-1:-1;11640:382:46;;;782:20814;11616:21;;782:20814;;12218:9;782:20814;;;;;;;11616:21;782:20814;:::i;:::-;;;11830:10;;;;12037:51;;;:::i;782:20814::-;;;;;;-1:-1:-1;;782:20814:46;;;;3033:9:7;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;3657:27:20;782:20814:46;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:20814:46;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;3657:27:20;782:20814:46;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;1470:81:2;782:20814:46;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:20814:46;;;;;;:::i;:::-;3401:72:2;;:::i;:::-;782:20814:46;;;;3092:20:6;;;3088:88;;3190:47;782:20814:46;;;3206:13:6;782:20814:46;;;;;;;;;;;;;;;3190:47:6;782:20814:46;;;;;;;;3206:13:6;782:20814:46;-1:-1:-1;782:20814:46;;3088:88:6;782:20814:46;;-1:-1:-1;;;3135:30:6;;-1:-1:-1;782:20814:46;3135:30:6;;782:20814:46;;;3135:30:6;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;1998:40:8;782:20814:46;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:20814:46;;;;1998:40:8;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;3172:35;782:20814;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;3401:72:2;;:::i;:::-;3529:18:6;782:20814:46;;;;;;;;;;;;;3508:62:6;;;3529:18;782:20814:46;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11452:22:43;782:20814:46;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;782:20814:46;;;9019:20:11;782:20814:46;;;;;;;:::i;:::-;;11452:22:43;:::i;:::-;782:20814:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;25808:4:2;25785:28;25781:91;;782:20814:46;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;2534:22;782:20814;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;2534:22;782:20814;2534:22;782:20814;2534:22;782:20814;;2534:22;782:20814;;;2534:22;782:20814;;;;;;;;;;:::i;:::-;;;2534:22;782:20814;;;;;;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;;;2789:37:9;;782:20814:46;;;2789:37:9;;;782:20814:46;;;;;;;867:6:8;-1:-1:-1;;;;;782:20814:46;2789:37:9;;;;;;;782:20814:46;2789:37:9;2544:3;2789:37;:66;:37;-1:-1:-1;2789:37:9;;;782:20814:46;2829:26:9;;;;:::i;:::-;2789:66;;:::i;:::-;782:20814:46;;;;;;;;;;;;;;;2789:37:9;2829:26;2789:37;;;;;782:20814:46;2789:37:9;;;;;;;;;:::i;:::-;;;;;782:20814:46;;;;;;-1:-1:-1;;782:20814:46;;;;;;867:6:8;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;2801:47;782:20814;;;;;;;3779:142:2;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;3851:4:2;3828:28;3824:91;;3779:142::o;782:20814:46:-;;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;5530:299:2;;;782:20814:46;5530:299:2;5765:55;5530:299;782:20814:46;;5765:55:2;;;782:20814:46;;5765:55:2;;;782:20814:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;5765:55:2;;;;;;;;:::i;:::-;782:20814:46;5755:66:2;;5530:299;:::o;782:20814:46:-;;;;;;;;;;;;7571:178:2;-1:-1:-1;782:20814:46;7672:10:2;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;7571:178:2;:::o;10887:863::-;;;;;;11177:53;735:10:27;;11177:53:2;:::i;:::-;11176:54;11172:128;;1641:18:6;782:20814:46;11404:18:2;;11400:267;;10887:863;11684:59;735:10:27;;;;11684:59:2;;:::i;11400:267::-;782:20814:46;18895:12;782:20814;;-1:-1:-1;;782:20814:46;;;;;;1998:40:8;782:20814:46;;;10599:17:20;782:20814:46;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:8;;735:10:27;1998:40:8;;;782:20814:46;;;;;;;;;;;;;;;;;1998:40:8;;782:20814:46;867:6:8;-1:-1:-1;;;;;782:20814:46;1998:40:8;;;;;;;10599:17:20;1998:40:8;;;11400:267:2;11511:30;;;;11507:150;;11400:267;;;11507:150;782:20814:46;;-1:-1:-1;;;11568:74:2;;735:10:27;1998:40:8;11568:74:2;;782:20814:46;;;;;;;;;;;;;;;;10687:60:20;1998:40:8;;;;782:20814:46;1998:40:8;;;;;;;;;:::i;:::-;;;;11172:128:2;782:20814:46;;-1:-1:-1;;;11253:36:2;;735:10:27;11253:36:2;;;782:20814:46;;;11253:36:2;782:20814:46;;;;12485:32:2;782:20814:46;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;15088:1:33;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11927:1373:2;;;;;;;12182:71;782:20814:46;;;;;12223:29:2;12182:71;;;;:::i;:::-;782:20814:46;;;;;12268:31:2;;;;;;:69;;;11927:1373;12268:92;;;;11927:1373;12264:208;;782:20814:46;;;12485:22:2;;:32;:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;12485:22:2;782:20814:46;;;;;;;12485:32:2;782:20814:46;12481:149:2;;12963:257;782:20814:46;12963:257:2;782:20814:46;;12659:23:2;1289:12:6;782:20814:46;;;;;18895:12;;782:20814;12659:23:2;:::i;:::-;782:20814:46;;;;12896:51:2;12768:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;12768:22:2;782:20814:46;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;;12838:48:2;12859:27;;;:::i;:::-;782:20814:46;;-1:-1:-1;;;;782:20814:46;;;;;;-1:-1:-1;;;782:20814:46;;;;;12838:48:2;12920:27;;;:::i;:::-;782:20814:46;;-1:-1:-1;;;;782:20814:46;;;;;;-1:-1:-1;;;782:20814:46;;;;;12896:51:2;13166:19;13079:28;782:20814:46;;13079:28:2;:::i;:::-;13166:19;;;:::i;:::-;782:20814:46;;;12963:257:2;;;;;;:::i;:::-;;;;11927:1373::o;12481:149::-;19886:23:46;;;;:::i;:::-;782:20814;;-1:-1:-1;;;12545:74:2;;782:20814:46;;;12545:74:2;;;;;;:::i;12264:208::-;782:20814:46;;;;-1:-1:-1;;;12383:78:2;;;;;782:20814:46;;;;;;;;;;;;;;;;;10687:60:20;12268:92:2;12341:19;;;12268:92;;:69;782:20814:46;;;12303:34:2;;;12268:69;;782:20814:46;-1:-1:-1;;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;21443:950:2:-;;;;;;;21714:516;22245:6;21443:950;21783:414;22034:16;;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;1121:7:29;782:20814:46;;;-1:-1:-1;782:20814:46;;;;;;;;;759:395:29;;22034:16:2;782:20814:46;;;;;:::i;:::-;;;;;;22076:24:2;782:20814:46;;;;;22126:17:2;782:20814:46;;;21848:317:2;782:20814:46;21848:317:2;;782:20814:46;1616:138:2;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21848:317:2;;;;;:::i;21783:414::-;21714:516;;:::i;22245:6::-;22241:75;;22333:53;782:20814:46;;;;;;;;:::i;:::-;22333:53:2;;:::i;22241:75::-;782:20814:46;;-1:-1:-1;;;22274:31:2;;-1:-1:-1;;;;;782:20814:46;;22274:31:2;;;782:20814:46;;;10687:60:20;22702:255:2;;22885:65;22702:255;;782:20814:46;;;;;;:::i;:::-;;;;22885:65:2;:::i;782:20814:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23239:769:2:-;;;;19886:23:46;;;:::i;:::-;782:20814;;;;;;;27000:1:2;782:20814:46;;;;27519:48:2;:62;27515:172;;782:20814:46;;-1:-1:-1;782:20814:46;7464:10:2;782:20814:46;;2454:864:5;;7457:39:2;7464:32;782:20814:46;-1:-1:-1;782:20814:46;;;;;;;;;7464:32:2;782:20814:46;;;;7457:39:2;2454:864:5;;:::i;:::-;;;;;:::i;:::-;782:20814:46;;;23715:18:2;23711:226;23715:13;;;782:20814:46;23754:59:2;;782:20814:46;;;;;;;;;;;;;23754:59:2;;;:::i;:::-;;;;23239:769;:::o;23711:226::-;23849:77;782:20814:46;23849:77:2;782:20814:46;;;;;;;;;;;;;23849:77:2;;;:::i;27515:172::-;782:20814:46;;-1:-1:-1;;;27604:72:2;;;;;782:20814:46;;;;;;;;;;;;:::i;:::-;;;;;;27604:72:2;782:20814:46;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;782:20814:46;;;;:::o;:::-;;;:::o;8592:446:2:-;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;735:10:27;8651:27:2;;8647:99;;8782:4;8759:28;8755:277;;8592:446::o;8755:277::-;782:20814:46;842:8:27;782:20814:46;:::i;:::-;;;;;;;:::i;:::-;842:8:27;782:20814:46;;;;;842:8:27;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;842:8:27;782:20814:46;;;;;8825:21:2;;8970:52;8977:26;;;:::i;:::-;:41;8970:52;8977:41;;8592:446::o;8647:99::-;782:20814:46;;-1:-1:-1;;;8701:34:2;;735:10:27;8701:34:2;;;782:20814:46;;;8701:34:2;26138:338;3033:9:7;782:20814:46;-1:-1:-1;;;;;782:20814:46;26353:4:2;26330:28;26326:91;;-1:-1:-1;;;782:20814:46;26138:338:2:o;27338:384::-;19886:23:46;;;:::i;:::-;782:20814;;;;;;;;27000:1:2;782:20814:46;;;;27519:48:2;:62;27515:172;;27696:19;27338:384;:::o;27515:172::-;782:20814:46;;;;;27604:72:2;;;;;;;;;782:20814:46;;;;;;:::i;:::-;;;;;;27604:72:2;27338:384;19886:23:46;;;:::i;:::-;782:20814;;;;;;;15499:86:2;27000:1;782:20814:46;;;;27519:48:2;:62;27515:172;;27696:19;27338:384;:::o;27515:172::-;782:20814:46;;;;;27604:72:2;;;;;;;;;782:20814:46;;;;;;:::i;:::-;15499:86:2;782:20814:46;;;;27604:72:2;28848:999;;782:20814:46;;29166:2:2;29157:11;;29153:61;;-1:-1:-1;;30978:95:2;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;29490:31:2;29486:81;;29719:57;;-1:-1:-1;;782:20814:46;;;29719:57:2;:::i;:::-;29797:8;;782:20814:46;;;29797:33:2;;29790:40;;28848:999;:::o;29797:33::-;-1:-1:-1;;;;;782:20814:46;;;;;29809:21:2;;28848:999;-1:-1:-1;28848:999:2:o;29486:81::-;29541:11;;;29548:4;29541:11;:::o;2454:864:5:-;2707:26;2454:864;;;;782:20814:46;;2707:14:5;782:20814:46;;;;;;;2707:26:5;2748:21;;;;:30;;;;782:20814:46;;;;;;;;;;;;;;;;2748:30:5;782:20814:46;;;;;2748:30:5;2744:100;;2853:30;782:20814:46;2853:30:5;;:37;:30;782:20814:46;;;;;;;;;;;;;;;;2853:30:5;782:20814:46;;-1:-1:-1;;782:20814:46;16274:4;782:20814;;;;2853:37:5;782:20814:46;2905:34:5;;;782:20814:46;2955:40:5;782:20814:46;;;2955:40:5;:::i;:::-;782:20814:46;;2454:864:5;:::o;2901:382::-;2886:4;3016:30;;2886:4;;3062:21;2886:4;3062:21;:36;782:20814:46;;;3062:36:5;:::i;3012:271::-;3136:16;3119:34;3136:16;;;3169:25;:40;782:20814:46;;;3169:40:5;:::i;3115:168::-;782:20814:46;;-1:-1:-1;;;3247:25:5;;;;;2744:100;782:20814:46;;-1:-1:-1;;;2801:32:5;;-1:-1:-1;;;;;782:20814:46;;2801:32:5;;;782:20814:46;;;10687:60:20;782:20814:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;1822:223:8;782:20814:46;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:20814:46;;;1998:40:8;;;782:20814:46;;;;;;;;1998:40:8;;782:20814:46;;;;;;867:6:8;782:20814:46;1998:40:8;;;;;;;-1:-1:-1;1998:40:8;;;1991:47;1822:223;:::o;1998:40::-;;;;;;;;;;;;;;:::i;782:20814:46:-;-1:-1:-1;;782:20814:46;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;:::o;1738:616:9:-;1847:23;782:20814:46;;-1:-1:-1;;782:20814:46;;;;;;;;-1:-1:-1;782:20814:46;;;10599:17:20;782:20814:46;1847:23:9;782:20814:46;;;;;;;;;;;;;2149:22:9;;2145:71;;2318:28;;;;:::i;:::-;9737:15:43;9762:18;;9801:1;9795:7;;9791:234;;1738:616:9;10049:53:43;;;;;:::i;:::-;10120:8;;;:63;;-1:-1:-1;;;;;782:20814:46;;1738:616:9:o;10120:63:43:-;10168:7;1847:23:9;10168:7:43;;:::i;:::-;14439:109;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;10120:63:43;;9791:234;9838:14;;;;;:::i;:::-;782:20814:46;;;;;;;10049:53:43;14439:109;1847:23:9;14439:109:43;;;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;;;9870:48:43;9866:149;782:20814:46;;;9938:10:43;9866:149;;9791:234;;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;;;2145:71:9;782:20814:46;;;;;;;2187:18:9;:::o;3415:273:11:-;782:20814:46;18895:12;782:20814;3550:29:11;;;;3546:90;;3653:28;;;;:::i;3546:90::-;782:20814:46;;;;;3588:48:11;;;;;;;;;782:20814:46;;;;;3588:48:11;6730:312;-1:-1:-1;;;;;782:20814:46;;;-1:-1:-1;782:20814:46;;;5674:10:11;782:20814:46;;;;;;;;;;-1:-1:-1;;;;;;782:20814:46;;;;;;;7010:24:11;;782:20814:46;;;3137:18:22;;782:20814:46;;;;;6909:48:11;;-1:-1:-1;6909:48:11;-1:-1:-1;;;;;782:20814:46;3095:9:20;782:20814:46;;;;;;;;;;;;3004:116:20;3137:18:22;7010:24:11;7761:789;-1:-1:-1;;;;;782:20814:46;;;;7761:789:11;;782:20814:46;;;;7862:10:11;;;;;: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;;;;;782:20814:46;;;;;8010:20:11;782:20814:46;;;;;8475:44:11;;8309:143;;8408:26;;;;:::i;:::-;8309:143;;:::i;:::-;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;8475:44:11;8230:304;;;;;7902:315;-1:-1:-1;;;;;782:20814:46;;;;;8010:20:11;782:20814:46;;;;;8089:26:11;;;:::i;:::-;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;;;:::i;:::-;782:20814:46;;;;;;;;;;8310:38:43;8156:46:11;18895:12:46;8156:46:11;18895:12:46;782:20814;18895:12;782:20814;8310:38:43;;:::i;:::-;782:20814:46;;;;;;;;;;;;;;;;;;;;;;8156:46:11;;;;7902:315;;;;7862:24;7876:10;;;;7862:24;;9069:273;;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;9069:273;9312:14;:::i;:::-;782:20814:46;;;;;;;;;8310:38:43;18895:12:46;782:20814;18895:12;782:20814;8310:38:43;;:::i;:::-;9282:53:11;;9069:273::o;:::-;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;;:::i;:::-;782:20814:46;;;;;;;;;8310:38:43;18895:12:46;782:20814;18895:12;782:20814;8310:38:43;:::i;9069:273:11:-;-1:-1:-1;;;;;782:20814:46;;;9312:14:11;;:::i;:::-;782:20814:46;;;;;;;;;;8310:38:43;18895:12:46;782:20814;18895:12;782:20814;8310:38:43;:::i;5393:300:20:-;-1:-1:-1;;;;;782:20814:46;;;;5393:300:20;;;;5476:18;;5472:86;;782:20814:46;;5571:16:20;;5567:86;;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;6340:19:20;;;;6336:115;;782:20814:46;2756:5:22;782:20814:46;;;6571:15:20;;782:20814:46;;;;;;-1:-1:-1;782:20814:46;-1:-1:-1;782:20814:46;;;-1:-1:-1;782:20814:46;;;6571:15:20;782:20814:46;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;7083:25:20;;782:20814:46;7083:25:20;2756:5:22;:::i;6336:115:20:-;782:20814:46;;-1:-1:-1;;;6386:50:20;;-1:-1:-1;;;;;782:20814:46;;6386:50:20;;;782:20814:46;;;;;;;;;;;;;;;10687:60:20;5567:86;782:20814:46;;-1:-1:-1;;;5610:32:20;;5492:1;5610:32;;;782:20814:46;;;5610:32:20;5472:86;782:20814:46;;-1:-1:-1;;;5517:30:20;;5492:1;5517:30;;;782:20814:46;;;5517:30:20;9701:432;;-1:-1:-1;;;;;782:20814:46;;;9813:19:20;9809:89;;782:20814:46;;9911:21:20;9907:90;;10006:18;:27;:18;782:20814:46;;;;;;;;;;;;;;;;10006:27:20;782:20814:46;9701:432:20:o;782:20814:46:-;;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;;;;;;:::o;5221:224:26:-;;;;5337:8;;-1:-1:-1;782:20814:46;;5690:21:26;:17;;5815:158;;;;;;5686:354;782:20814:46;;-1:-1:-1;;;6010:19:26;;;;;1265:222:29;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;1121:7:29;782:20814:46;;;;;;;;;;;;;1396:16:29;;;1392:89;;1265:222;;:::o;1392:89::-;782:20814:46;;-1:-1:-1;;;1435:35:29;;-1:-1:-1;;;;;782:20814:46;;;;1435:35:29;;;782:20814:46;;;;;;;;;;10687:60:20;782:20814:46;;;;;;;;;15293:1:33;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;12994:2:33;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;14807:889:33:-;;;782:20814:46;;14977:25:33;;:40;;;;14807:889;14973:72;;15080:9;;;:::i;:::-;15074:15;;15073:88;;;14807:889;15272:22;34863:71:41;;;15272:22:33;:::i;:::-;15267:2;782:20814:46;;15267:2:33;782:20814:46;;;;;;;;;;;15359:29:33;15267:27;;15527:50;;;:::i;:::-;15591:31;;-1:-1:-1;;;;;782:20814:46;;;;15591:31:33:o;15355:335::-;15653:26;;;-1:-1:-1;15653:26:33;-1:-1:-1;15653:26:33;:::o;15073:88::-;-1:-1:-1;30978:95:2;;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;15094:67:33;15073:88;;14977:40;15006:11;;;;14977:40;;12276:1051;;;;12563:9;;;:::i;:::-;12557:15;;12556:82;;;12276:1051;12736:22;34863:71:41;;;12736:22:33;:::i;:::-;12769:18;-1:-1:-1;782:20814:46;;;;;;;;12802:26:33;;;12830:7;;;;;;13299:21;;;12571:1;13299:21;12276:1051;:::o;12839:3::-;30978:95:2;;;;782:20814:46;12870:55:33;12883:41;30978:95:2;;;;;;782:20814:46;;;;;;12883:41:33;12870:55;:::i;:::-;782:20814:46;12943:8:33;12949:2;12943:8;;12939:31;;12984:12;;12839:3;12984:12;;:::i;:::-;782:20814:46;12839:3:33;;:::i;:::-;12802:26;;;;;12939:31;-1:-1:-1;;;;;;;;;12953:17:33:o;12556:82::-;-1:-1:-1;30978:95:2;;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;12577:61:33;12556:82;;15702:524;782:20814:46;;15995:2:33;15987:10;;:24;;;15702:524;15983:203;;;-1:-1:-1;;782:20814:46;;;15702:524:33;:::o;15983:203::-;16055:2;16047:10;;:25;;;15983:203;16043:143;;;-1:-1:-1;;782:20814:46;;;;15702:524:33:o;16043:143::-;16116:2;16108:10;;:24;;;16043:143;16104:82;;;-1:-1:-1;;782:20814:46;;;;:::o;16104:82:33:-;16164:22;782:20814:46;16164:22:33;:::o;16108:24::-;16122:10;16130:2;16122:10;;16108:24;;16047:25;16061:11;16069:3;16061:11;;16047:25;;15987:24;16001:10;16009:2;16001:10;;15987:24;;6887:260:34;;7105:8;6887:260;;7051:25;6887:260;7051:25;:::i;:::-;7105:8;;;;;:::i;5203:1551::-;;;6283:66;6270:79;;6266:164;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6541:24:34;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;6579:20:34;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;782:20814:46:-;;-1:-1:-1;782:20814:46;;;:::o;7280:532:34:-;782:20814:46;;;:::i;:::-;7366:29:34;;;7411:7;;:::o;7362:444::-;782:20814:46;;;:::i;:::-;7471:29:34;7462:38;;7471:29;;782:20814:46;;-1:-1:-1;;;7523:23:34;;;;;7458:348;782:20814:46;;;:::i;:::-;7576:35:34;7567:44;;7576:35;;782:20814:46;;-1:-1:-1;;;7634:46:34;;;;;782:20814:46;;;;;10687:60:20;7563:243:34;782:20814:46;;7710:30:34;782:20814:46;;:::i;:::-;7701:39:34;7697:109;;7563:243;7280:532::o;7697:109::-;782:20814:46;;-1:-1:-1;;;7763:32:34;;;;;782:20814:46;;;;;;10687:60:20;4917:176:35;3445:249:36;4917:176:35;5053:20;;:::i;:::-;3445:249:36;;;;-1:-1:-1;;;3445:249:36;;;;;;;;;;;4917:176:35;:::o;3845:262::-;3929:4;3938:11;-1:-1:-1;;;;;782:20814:46;3921:28:35;;:63;;3845:262;3917:184;;;4007:22;4000:29;:::o;3917:184::-;782:20814:46;;4204:80:35;;;782:20814:46;2079:95:35;782:20814:46;;4226:11:35;782:20814:46;2079:95:35;;782:20814:46;4239:14:35;2079:95;;;782:20814:46;4255:13:35;2079:95;;;782:20814:46;3929:4:35;782:20814:46;2079:95:35;;782:20814:46;;4204:80:35;;;;;:::i;3921:63::-;3970:14;;3953:13;:31;3921:63;;3358:267:31;1390:66;3481:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;782:20814:46;;;;;;:::i;:::-;2324:106:31;;2311:2;782:20814:46;;2324:106:31;3543:22;:::o;2675:69::-;782:20814:46;;-1:-1:-1;;;2713:20:31;;;;;3477:142;-1:-1:-1;782:20814:46;;6126:13:35;782:20814:46;;-1:-1:-1;782:20814:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1390:66:31;;;;;;;:::i;782:20814:46:-;6126:13:35;-1:-1:-1;782:20814:46;;;-1:-1:-1;;782:20814:46;;;;;;;-1:-1:-1;1390:66:31;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:31;782:20814:46;;;;;;;;;;;;6126:13:35;782:20814:46;;;;;;;3358:267:31;1390:66;3481:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;782:20814:46;;;;;;:::i;3477:142:31:-;-1:-1:-1;782:20814:46;;6584:16:35;782:20814:46;;-1:-1:-1;782:20814:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1390:66:31;;;;;;;:::i;782:20814:46:-;6584:16:35;-1:-1:-1;782:20814:46;;;-1:-1:-1;;782:20814:46;;;;;;;-1:-1:-1;1390:66:31;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041:429:37;;;1167:18;;;;1254:33;;;;:::i;:::-;782:20814:46;;;;:::i;:::-;1308:33:37;:56;;;;1301:63;;;:::o;1163:301::-;1189:1;782:20814:46;;;;;2105:60:37;;782:20814:46;2105:60:37;;;;;;;;;;;;;;782:20814:46;;;;;;;;;;;:::i;2105:60:37:-;2074:101;;;;;;;:::i;:::-;2193:42;;;1163:301;2193:134;;;1395:58;;;:::o;2193:134::-;2251:29;782:20814:46;;;2105:60:37;782:20814:46;;;2251:29:37;;;;;;:::i;:::-;:76;1395:58;:::o;2193:42::-;782:20814:46;;2105:60:37;782:20814:46;;2216:19:37;;2193:42;;;2129:778:34;782:20814:46;;;2129:778:34;2319:2;2299:22;;2319:2;;2751:25;2535:196;;;;;;;;;;;;;;;-1:-1:-1;2535:196:34;2751:25;;:::i;:::-;2744:32;;;;;:::o;2295:606::-;2807:83;;2823:1;2807:83;2827:35;2807:83;;:::o;4174:218:41:-;-1:-1:-1;;;;;782:20814:46;4254:25:41;;;4250:105;;782:20814:46;4174:218:41;:::o;4250:105::-;782:20814:46;;;;4302:42:41;;;;;;782:20814:46;4302:42:41;;;782:20814:46;;;;;4302:42:41;14296:213;782:20814:46;14374:24:41;;;;14370:103;;782:20814:46;14296:213:41;:::o;14370:103::-;782:20814:46;;;;4302:42:41;;;;14421:41;;14452:2;14421:41;;;782:20814:46;;;;;14421:41:41;15296:213;782:20814:46;15374:24:41;;;;15370:103;;782:20814:46;15296:213:41;:::o;15370:103::-;782:20814:46;;;;4302:42:41;;;;15421:41;;15452:2;15421:41;;;782:20814:46;;;;;15421:41:41;782:20814:46;;;;;;;:::o;:::-;;;;;;;;;;;;18080:5181:40;18246:1;18241:6;;;18237:53;;18246:1;19217:14;-1:-1:-1;;;19278:16:40;;;19274:92;;18080:5181;22827:18;22717;22607;22498;22387;22278;23216:28;19383:15;19898:6;19383:15;-1:-1:-1;;;23237:6:40;19383:15;;;19379:90;;18080:5181;19493:7;19486:15;;;19482:90;;18080:5181;19596:7;19589:15;;;19585:89;;18080:5181;19698:6;19691:14;;;19687:87;;18080:5181;19798:6;19791:14;;;19787:87;;18080:5181;19891:14;;19887:61;;18080:5181;20374:1;782:20814:46;18246:1:40;782:20814:46;22284:6:40;;;;:::i;:::-;782:20814:46;;;;;22278:18:40;22393:6;;;;:::i;22387:18::-;22504:6;;;;:::i;22498:18::-;22613:6;;;;:::i;22607:18::-;22723:6;;;;:::i;22717:18::-;22833:6;;;;:::i;22827:18::-;23237:6;;;:::i;:::-;23232:11;;;782:20814:46;23216:28:40;782:20814:46;;18080:5181:40;:::o;19887:61::-;18246:1;782:20814:46;19887:61:40;;19787:87;782:20814:46;;;;;19787:87:40;;;19687;782:20814:46;;;;;19687:87:40;;;19585:89;782:20814:46;;;;;19585:89:40;;;19482:90;782:20814:46;;;;;19482:90:40;;;19379;782:20814:46;;;;;19379:90:40;;;19274:92;-1:-1:-1;;;;782:20814:46;-1:-1:-1;19285:8:40;782:20814:46;;;19274:92:40;;10310:206:43;1586:23:9;782:20814:46;10405:17:43;;10446:8;;;:63;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;;782:20814:46;;;;;1586:23:9;14439:109:43;;;;782:20814:46;;;10310:206:43;:::o;:::-;7419:17:11;782:20814:46;10405:17:43;;10446:8;;;:63;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;;782:20814:46;;;;;7419:17:11;14439:109:43;;;;782:20814:46;;;10310:206:43;:::o;:::-;782:20814:46;;10405:17:43;;10446:8;;;:63;;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;782:20814:46;;;;;;;;14439:109:43;;;;;;;782:20814:46;;;10310:206:43;:::o;782:20814:46:-;;;;;;;;;;;;;1586:23:9;782:20814:46;;-1:-1:-1;;;782:20814:46;;;;;;;;;1586:23:9;782:20814:46;;;;;;;;1586:23:9;-1:-1:-1;782:20814:46;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:20814:46;;;;;;7419:17:11;782:20814:46;;-1:-1:-1;;;782:20814:46;;;;;;;;;7419:17:11;782:20814:46;;;;;;;;7419:17:11;-1:-1:-1;782:20814:46;-1:-1:-1;;;;;;;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;782:20814:46;;;;;;;;;;;;;;;:::i;11657:922:43:-;1586:23:9;782:20814:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;1586:23:9;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;14289:265;;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:20814:46;;;;;;;;;;;;;;;;;12285:19:43;782:20814:46;;12423:25:43;;:::o;12247:163::-;782:20814:46;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;:::-;12247:163;;12099:89;782:20814:46;;-1:-1:-1;;;12143:30:43;;;;;11860:713;782:20814:46;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;12479:::-;11870:1;12545:17;;:::o;11657:922::-;7419:17:11;782:20814:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;7419:17:11;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;14289:265;;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:20814:46;;;;;;;;;;;;;;;;;12247:163:43;782:20814:46;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;12353:41:43:-;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;11860:713::-;782:20814:46;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;11657:922::-;782:20814:46;;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;11916:28;14439:109;;;;;;14289:265;;11916:28;782:20814:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;;782:20814:46;;;;;;;;;;;;;;;;;12247:163:43;782:20814:46;;;12343:52:43;782:20814:46;12353:41:43;782:20814:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:20814:46;;12353:41:43;;;782:20814:46;12343:52:43;:::i;11860:713::-;782:20814:46;;12479:52:43;782:20814:46;12489:41:43;782:20814:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:20814:46;;12489:41:43;;;782:20814:46;12343:52:43;:::i;12929:433::-;;13112:10;;;;;;13344:11;;12929:433;:::o;13105:230::-;3721:5:40;;;;;3731;;;;782:20814:46;;;;;;;;;5234:17:11;-1:-1:-1;14439:109:43;782:20814:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;;;-1:-1:-1;13189:136:43;782:20814:46;;;13248:10:43;13189:136;;13105:230;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;12929:433;;13112:10;;;;;;13344:11;;12929:433;:::o;13105:230::-;3721:5:40;;;;;3731;;;;782:20814:46;;;;;;;;;1847:23:9;-1:-1:-1;14439:109:43;782:20814:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:20814:46;;;;;-1:-1:-1;13189:136:43;782:20814:46;;;13248:10:43;13189:136;;13105:230;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;12929:433;;;13112:10;;;;;;13344:11;;;12929:433;:::o;13105:230::-;3721:5:40;;;;;;3731;;;;782:20814:46;;;;;;;;;-1:-1:-1;14439:109:43;;;;;;;;782:20814:46;;;;;;;;-1:-1:-1;782:20814:46;;;13248:10:43;13189:136;;13105:230;;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;1637:317:44;15944:15:2;782:20814:46;;;;;1801:1:44;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;1789:29:44;1785:68;;-1:-1:-1;1536:4:30;1867:11:44;1536:4:30;;;-1:-1:-1;1536:4:30;782:20814:46;15944:15:2;1536:4:30;;-1:-1:-1;;;;;1536:4:30;;782:20814:46;1536:4:30;;;;;15944:15:2;1536:4:30;1637:317:44:o;1785:68::-;1829:135:30;-1:-1:-1;1829:135:30;1536:4;1829:135;;;;;3149:373:44;8977:15:2;782:20814:46;;-1:-1:-1;;;;;782:20814:46;;;;;;3313:24:44;;3309:64;;1536:4:30;-1:-1:-1;1536:4:30;3395:11:44;1536:4:30;;3395:11:44;1536:4:30;-1:-1:-1;1536:4:30;1315;-1:-1:-1;1315:4:30;;;;782:20814:46;;-1:-1:-1;;;;;1536:4:30;8977:15:2;1315:4:30;;;8977:15:2;1315:4:30;3149:373:44:o;3309:64::-;1829:135:30;-1:-1:-1;1829:135:30;1315:4;1829:135;;;;;782:20814:46;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;782:20814:46;;;:::o;:::-;;;;;;;;:::o;:::-;-1:-1:-1;1315:4:30;;782:20814:46;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;782:20814:46;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;782:20814:46;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;10599:17:20;;;782:20814:46;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;10599:17:20;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;9763:691;;9883:39;;782:20814;;;;;;;;;;9883:39;9932:51;782:20814;9940:17;;;782:20814;;;;;;9932:51;:::i;:::-;9993:83;10001:24;;;782:20814;10029:23;;;782:20814;-1:-1:-1;10001:51:46;9993:83;:::i;:::-;10237:16;;;;;;-1:-1:-1;10237:16:46;;;;10087:262;782:20814;;10364:83;;782:20814;;;;10364:83;;;;;:::i;10137:3::-;782:20814;;10107:28;;;;;10164:20;10156:59;10164:34;782:20814;10164:20;10137:3;10164:20;;;:::i;:::-;782:20814;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;10164:34;;;10156:59;:::i;:::-;10229:47;782:20814;10237:19;;;;:::i;:::-;782:20814;;;;;;;;;10237:23;;10229:47;:::i;:::-;10318:19;782:20814;10296:20;;;;:::i;782:20814::-;;10318:19;;;;:::i;782:20814::-;10318:19;;:::i;10137:3::-;10092:13;;;10107:28;;;7458:208:20;;;-1:-1:-1;;;;;782:20814:46;;7528:21:20;;7524:91;;6233:21;782:20814:46;;;;;;;;;6233:21:20;782:20814:46;-1:-1:-1;;;;;782:20814:46;;-1:-1:-1;782:20814:46;;;;;;;;;;;;;;;;;;;;;7083:25:20;;782:20814:46;7083:25:20;6233:21;782:20814:46;;-1:-1:-1;;;;;2616:12:22;;2612:94;;2756:5;;;;;:::i;2612:94::-;782:20814:46;;-1:-1:-1;;;2655:36:22;;;;;782:20814:46;;;-1:-1:-1;;;;;782:20814:46;;;;;;10687:60:20;782:20814:46;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;782:20814:46;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16521:603::-;782:20814;-1:-1:-1;782:20814:46;16631:17;782:20814;;;-1:-1:-1;782:20814:46;16679:17;16671:51;782:20814;16679:17;;;782:20814;;16671:51;:::i;:::-;16732:83;16740:24;;;782:20814;16768:23;;;782:20814;-1:-1:-1;16740:51:46;16732:83;:::i;:::-;16833:15;;;782:20814;;;;16852:20;782:20814;16833:39;16825:81;16833:39;;;;16825:81;:::i;:::-;782:20814;;;;;;;;17043:74;16917:39;;17043:74;16917:39;13385:31;782:20814;;16917:39;782:20814;;;;17011:15;;-1:-1:-1;;;;;782:20814:46;16984:4;17011:15;:::i;:::-;782:20814;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;-1:-1:-1;;;;;782:20814:46;;;;;;;;;;;;;;;;;;;;;;18084:449;-1:-1:-1;;;;;782:20814:46;3095:9:20;782:20814:46;;;;;;;;;;;18229:16;;:45;;;;18084:449;18225:84;;18449:34;18448:52;782:20814;18463:20;782:20814;18449:34;;:::i;:::-;2927:12:20;782:20814:46;18448:52;;:::i;18225:84::-;18290:8;3095:9:20;18290:8:46;:::o;18229:45::-;782:20814;18249:20;782:20814;18249:25;18229:45;;7276:399:11;;7661:6;7276:399;7413:58;7444:26;;;:::i;:::-;7413:58;:::i;:::-;-1:-1:-1;;;;;;;782:20814:46;;;;7495:16:11;;7491:110;;7276:399;5674:10;782:20814:46;;;;;;;;;;;;;;;;;7661:6:11;:::i;7491:110::-;7527:63;7563:26;;;:::i;:::-;7527:63;:::i;:::-;7491:110;;;;7276:399;7661:6;;7276:399;-1:-1:-1;;;;;782:20814:46;;;;;;;7379:18:11;;7375:107;;7276:399;782:20814:46;7495:16:11;;;7491:110;;7276:399;7395:1;782:20814:46;5674:10:11;782:20814:46;;;;7395:1:11;782:20814:46;;;;7395:1:11;782:20814:46;;7395:1:11;782:20814:46;;;7661:6:11;;:::i;7491:110::-;7527:63;7563:26;;;:::i;7527:63::-;7491:110;;;;7375:107;7413:58;7444:26;;;:::i;7413:58::-;7375:107;;;;782:20814:46;;;;;;;;;;;;;;;;;;:::o;2123:740:7:-;2250:23;;;:::i;:::-;782:20814:46;;;;:::i;:::-;2304:20:7;2288:36;;2284:86;;2398:24;;;782:20814:46;;3665:12:7;782:20814:46;;;;;;;2398:24:7;1315:4:30;2436:9:7;782:20814:46;2436:28:7;;-1:-1:-1;;;;;782:20814:46;;;2436:28:7;782:20814:46;;-1:-1:-1;;;2436:37:7;;;;;782:20814:46;;;2436:37:7;;782:20814:46;;2436:37:7;782:20814:46;;;;2436:37:7;;;;;;;-1:-1:-1;2436:37:7;;;2123:740;-1:-1:-1;2432:425:7;;;2489:27;;;2304:20;2489:27;:::o;2432:425::-;782:20814:46;;-1:-1:-1;;;2537:34:7;;2436:37;2537:34;;782:20814:46;;;;;;;;;;;;2537:34:7;;;;;;;-1:-1:-1;2537:34:7;;;2432:425;-1:-1:-1;;2533:324:7;;;2679:22;2672:29;:::o;2533:324::-;2824:22;2817:29;:::o;2537:34::-;;;;;;-1:-1:-1;2537:34:7;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;2436:37;;;;;;;;;;;;;;:::i;:::-;;;;2284:86;2340:19;;:::o;5886:1248:2:-;6100:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;6100:22:2;782:20814:46;;;;;;6235:76:2;;782:20814:46;;6321:76:2;;7457:39;7464:32;:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;7457:39:2;6469:13;;6465:90;;782:20814:46;18895:12;782:20814;6614:28:2;;;;6610:87;;6726:28;;;:::i;:::-;6769;;;6813:27;6820:20;6813:27;:::o;6765:363::-;6861:27;6862:26;;;:::i;6861:27::-;:58;;;;6765:363;6857:271;;;6935:29;6942:22;6935:29;:::o;6857:271::-;8115:33;;:22;8108:40;8115:22;782:20814:46;;13871:10:2;782:20814:46;;;;;;;8115:22:2;:33;782:20814:46;;;;;8108:40:2;8115:33;;7036:23;7029:30;:::o;6981:147::-;7097:20;7090:27;:::o;6861:58::-;6893:26;6892:27;6893:26;;-1:-1:-1;782:20814:46;2214:14:5;782:20814:46;;;-1:-1:-1;782:20814:46;2258:21:5;;;782:20814:46;;;-1:-1:-1;2078:236:5;;6892:27:2;6861:58;;6610:87;6658:28;;-1:-1:-1;6658:28:2;:::o;6465:90::-;782:20814:46;;-1:-1:-1;;;6505:39:2;;;;;782:20814:46;;;;;10687:60:20;6321:76:2;6357:29;6364:22;6357:29;:::o;6235:76::-;6271:29;;6278:22;6271:29;:::o;1668:276:5:-;-1:-1:-1;782:20814:46;1804:14:5;782:20814:46;;;-1:-1:-1;782:20814:46;7464:10:2;782:20814:46;;;;-1:-1:-1;782:20814:46;;;;;;;;;;;2789:37:9;;;;;;782:20814:46;;;;;;;;;;867:6:8;782:20814:46;2789:37:9;;;;;;;1888:49:5;2789:37:9;2544:3;2789:37;:66;:37;-1:-1:-1;2789:37:9;;;2829:26;;;;:::i;2789:66::-;782:20814:46;1888:21:5;1912:25;782:20814:46;1888:21:5;;782:20814:46;1912:25:5;;782:20814:46;1888:49:5;;:::i;:::-;-1:-1:-1;1848:89:5;1668:276;:::o;4908:554:7:-;;18812:57:2;4908:554:7;;;18812:57:2;:::i;:::-;19886:23:46;;;:::i;:::-;782:20814;;;;;;18938:208:2;27000:1;782:20814:46;;;;27519:48:2;:62;27515:172;;19167:22;:38;:22;;782:20814:46;;13871:10:2;782:20814:46;;;;;;;19167:22:2;2002:56;;-1:-1:-1;;;;;2002:56:2;-1:-1:-1;;;2002:56:2;;;;19167:38;782:20814:46;;;;;19220:28:2;;782:20814:46;;19220:28:2;5230:24:7;;782:20814:46;;3665:12:7;782:20814:46;;;;;;;5230:24:7;1315:4:30;5268:15:7;5264:164;;5438:17;4908:554;:::o;5264:164::-;5321:9;782:20814:46;5321:16:7;;-1:-1:-1;;;;;782:20814:46;;;5321:16:7;:28;;;;;782:20814:46;;-1:-1:-1;;;5321:28:7;;782:20814:46;5321:28:7;;782:20814:46;;;;-1:-1:-1;;782:20814:46;;;;;;-1:-1:-1;;5321:28:7;;;;;;;;5264:164;-1:-1:-1;;782:20814:46;;;3665:12:7;782:20814:46;;;;;1315:4:30;4908:554:7;:::o;5321:28::-;;;;;;:::i;:::-;;;;27515:172:2;782:20814:46;;;;;;27604:72:2;;;;;;;;;782:20814:46;;;;;;:::i;:::-;18938:208:2;782:20814:46;;;;27604:72:2;782:20814:46;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;782:20814:46;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;782:20814:46;;;;;;;;;;:::o;4067:432:7:-;;;;;782:20814:46;;;;;4318:9:7;782:20814:46;;4318:103:7;;;;;;-1:-1:-1;782:20814:46;4318:103:7;782:20814:46;;;;;;;;;;;;4318:103:7;;782:20814:46;;6677:4:7;782:20814:46;;;6661:40:7;4318:103;;;;;:::i;:::-;;4348:9;;4318:103;;;;;;;;-1:-1:-1;4318:103:7;4468:24;4318:103;;;4067:432;4468:24;782:20814:46;;3665:12:7;782:20814:46;;;;;;;4318:103:7;;;;:::i;:::-;;;"},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","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","checkpoints(address,uint32)":"f1127ed8","clock()":"91ddadf4","createProposal(bytes,uint256[],uint256,uint256)":"d1fad4cd","createTokenDistributionProposal(address[],uint256[],uint256,string)":"108b4e07","createTreasuryProposal(address,uint256,uint256,string)":"1b470faf","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","depositToTreasury(uint256)":"c0e58a0e","dleInfo()":"f2c26a47","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","executeTokenDistributionProposal(uint256)":"35c4364f","executeTreasuryProposal(uint256)":"007e637e","getAvailableWithdrawal(address)":"b4931936","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","initialTokensDistributed()":"0965211e","installModule(string,address)":"194a94fc","lastWithdrawalBlock(address)":"96e973fb","name()":"06fdde03","nonces(address)":"7ecebe00","numCheckpoints(address)":"6fcfff45","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalCounter()":"0c0512e9","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","proposalVotes(uint256)":"544ffc9c","proposals(uint256)":"013cf08b","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","quorumDenominator()":"97c3d334","quorumNumerator()":"a7713a70","quorumNumerator(uint256)":"60c4247f","quorumPercentage()":"4fa76ec9","relay(address,uint256,bytes)":"c28bc2fa","setProposalThreshold(uint256)":"ece40cc1","setVotingDelay(uint48)":"79051887","setVotingPeriod(uint32)":"e540d01d","signProposal(uint256)":"ab273016","signTokenDistributionProposal(uint256)":"7e63b733","signTreasuryProposal(uint256)":"1c0f4d8d","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","timelock()":"d33219b4","token()":"fc0c546a","tokenDistributionProposalCounter()":"fd5c4be7","tokenDistributionProposals(uint256)":"82308158","totalSupply()":"18160ddd","totalTreasuryBalance()":"ec4a59d9","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","treasuryProposalCounter()":"9be65b40","treasuryProposals(uint256)":"0eb12596","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\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"votingDelay\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"votingPeriod\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"proposalThreshold\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"initialPartners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"initialAmounts\",\"type\":\"uint256[]\"}],\"internalType\":\"struct DLE.DLEConfig\",\"name\":\"config\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"timelockAddress\",\"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\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"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\":\"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\"},{\"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\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"timelockAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"governorAddress\",\"type\":\"address\"}],\"name\":\"DLEInitialized\",\"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\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"InitialTokensDistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"moduleName\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"moduleAddress\",\"type\":\"address\"}],\"name\":\"ModuleInstalled\",\"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\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"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\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"}],\"name\":\"ProposalSigned\",\"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\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"TokenDistributionProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"TokenDistributionProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"}],\"name\":\"TokenDistributionProposalSigned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"depositor\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TokensDepositedToTreasury\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"TreasuryProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TreasuryProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"}],\"name\":\"TreasuryProposalSigned\",\"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\":\"pure\",\"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\":\"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\":\"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\":[{\"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\":[{\"internalType\":\"bytes\",\"name\":\"_operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256[]\",\"name\":\"_targetChains\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256\",\"name\":\"_timelock\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_governanceChain\",\"type\":\"uint256\"}],\"name\":\"createProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"_partners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"_amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256\",\"name\":\"_timelock\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"}],\"name\":\"createTokenDistributionProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_timelock\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"}],\"name\":\"createTreasuryProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"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\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositToTreasury\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"dleInfo\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"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\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"executeTokenDistributionProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"executeTreasuryProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_address\",\"type\":\"address\"}],\"name\":\"getAvailableWithdrawal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":\"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\":\"initialTokensDistributed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_moduleName\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"_moduleAddress\",\"type\":\"address\"}],\"name\":\"installModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"lastWithdrawalBlock\",\"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\":[{\"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\":[],\"name\":\"proposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposals\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"timelock\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"governanceChain\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"quorumRequired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"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\":[],\"name\":\"quorumPercentage\",\"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\":\"signProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"signTokenDistributionProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"signTreasuryProposal\",\"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\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":[],\"name\":\"tokenDistributionProposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"tokenDistributionProposals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"timelock\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"quorumRequired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalTreasuryBalance\",\"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\":[],\"name\":\"treasuryProposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"treasuryProposals\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"timelock\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"quorumRequired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"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\":\"\\u041e\\u0441\\u043d\\u043e\\u0432\\u043d\\u043e\\u0439 \\u043a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 DLE \\u0441 \\u043e\\u0442\\u0434\\u0435\\u043b\\u044c\\u043d\\u044b\\u043c \\u043c\\u043e\\u0434\\u0443\\u043b\\u0435\\u043c TimelockController.\",\"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.\"}],\"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.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"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.\"}],\"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.\"}],\"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.\"},\"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.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"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\":{\"COUNTING_MODE()\":{\"details\":\"See {IGovernor-COUNTING_MODE}.\"},\"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}.\"},\"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}.\"},\"checkpoints(address,uint32)\":{\"details\":\"Get the `pos`-th checkpoint for `account`.\"},\"createTokenDistributionProposal(address[],uint256[],uint256,string)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u0435 \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432\",\"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\",\"_description\":\"\\u041e\\u043f\\u0438\\u0441\\u0430\\u043d\\u0438\\u0435 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_partners\":\"\\u041c\\u0430\\u0441\\u0441\\u0438\\u0432 \\u0430\\u0434\\u0440\\u0435\\u0441\\u043e\\u0432 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u043e\\u0432\",\"_timelock\":\"\\u0412\\u0440\\u0435\\u043c\\u044f \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f (timestamp)\"}},\"createTreasuryProposal(address,uint256,uint256,string)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0432\\u044b\\u0432\\u043e\\u0434 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u0438\\u0437 \\u043a\\u0430\\u0437\\u043d\\u044b\",\"params\":{\"_amount\":\"\\u041a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432 \\u0434\\u043b\\u044f \\u0432\\u044b\\u0432\\u043e\\u0434\\u0430\",\"_description\":\"\\u041e\\u043f\\u0438\\u0441\\u0430\\u043d\\u0438\\u0435 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_recipient\":\"\\u0410\\u0434\\u0440\\u0435\\u0441 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0430\\u0442\\u0435\\u043b\\u044f\",\"_timelock\":\"\\u0412\\u0440\\u0435\\u043c\\u044f \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f (timestamp)\"}},\"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.\"},\"depositToTreasury(uint256)\":{\"details\":\"\\u0412\\u043d\\u0435\\u0441\\u0442\\u0438 \\u0442\\u043e\\u043a\\u0435\\u043d\\u044b \\u0432 \\u043a\\u0430\\u0437\\u043d\\u0443 DLE\",\"params\":{\"_amount\":\"\\u041a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432 \\u0434\\u043b\\u044f \\u0432\\u043d\\u0435\\u0441\\u0435\\u043d\\u0438\\u044f\"}},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"executeTokenDistributionProposal(uint256)\":{\"details\":\"\\u0412\\u044b\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u0435 \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432 \\u043f\\u043e\\u0441\\u043b\\u0435 \\u0438\\u0441\\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u044f \\u0442\\u0430\\u0439\\u043c\\u043b\\u043e\\u043a\\u0430\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"executeTreasuryProposal(uint256)\":{\"details\":\"\\u0412\\u044b\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0432\\u044b\\u0432\\u043e\\u0434 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u043f\\u043e\\u0441\\u043b\\u0435 \\u0438\\u0441\\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u044f \\u0442\\u0430\\u0439\\u043c\\u043b\\u043e\\u043a\\u0430\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"getAvailableWithdrawal(address)\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e \\u0434\\u043b\\u044f \\u0432\\u044b\\u0432\\u043e\\u0434\\u0430 \\u0441\\u0443\\u043c\\u043c\\u0443 \\u0434\\u043b\\u044f \\u0430\\u0434\\u0440\\u0435\\u0441\\u0430 (\\u043f\\u0440\\u043e\\u043f\\u043e\\u0440\\u0446\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e \\u0434\\u043e\\u043b\\u0435)\",\"params\":{\"_address\":\"\\u0410\\u0434\\u0440\\u0435\\u0441 \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0432\\u0435\\u0440\\u043a\\u0438\"},\"returns\":{\"_0\":\"\\u0414\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u0430\\u044f \\u0441\\u0443\\u043c\\u043c\\u0430 \\u0434\\u043b\\u044f \\u0432\\u044b\\u0432\\u043e\\u0434\\u0430\"}},\"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.\"},\"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.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"numCheckpoints(address)\":{\"details\":\"Get number of checkpoints for `account`.\"},\"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}.\"},\"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.\"},\"signTokenDistributionProposal(uint256)\":{\"details\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u0435 \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"signTreasuryProposal(uint256)\":{\"details\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0430 \\u0432\\u044b\\u0432\\u043e\\u0434 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u0438\\u0437 \\u043a\\u0430\\u0437\\u043d\\u044b\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"timelock()\":{\"details\":\"Public accessor to check the address of the timelock\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"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`.\"},\"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\":\"DLE (Digital Legal Entity)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DLE.sol\":\"DLE\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@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\":\"0xe5d4ce636fd706494b1f488fc562995e9486a3d14203ad311be6c6f724955bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3d90512ee129236608a01e2d1541c9740a0f4d16863f214191e443342e540901\",\"dweb:/ipfs/QmStf5H59Lu2WNKPxmifFU6kJrWcMEvb2yKbFjsXkCvP43\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0x5b5cdb361ed018c0162942d673c17e187c1a52ded2ce4f41e8a3f3f5d1656e00\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd78b11b946d9001725a38844f1d6163906965ec321e1b09bd7e476baedc5d12\",\"dweb:/ipfs/QmPgTnTYDbgXgwHXbkxofSH51QDFfycwx1tn8Qj5hGGk5u\"]},\"@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/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@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/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@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/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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/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\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@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\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@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\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@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/DLE.sol\":{\"keccak256\":\"0xcad1f24ad9b4afa7a06f074871149e12e3d00aee103caf13eead1a979d15b5c5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5e79efb52327b3b9967997cffbc64f5bbfda623481d7d81a02d7cd415d78a7f2\",\"dweb:/ipfs/QmaJvNmfEQd6vCf44V8tibH7vBwvJvNR1TPxaTFZ94tHVd\"]}},\"version\":1}"}}}}} \ No newline at end of file diff --git a/backend/artifacts/build-info/e497981aa6f6963ae97f832d3d617a54.json b/backend/artifacts/build-info/e497981aa6f6963ae97f832d3d617a54.json new file mode 100644 index 0000000..9b124c6 --- /dev/null +++ b/backend/artifacts/build-info/e497981aa6f6963ae97f832d3d617a54.json @@ -0,0 +1 @@ +{"id":"e497981aa6f6963ae97f832d3d617a54","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@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/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.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 * All two of these values are immutable: they can only be set once during\n * 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/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/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/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/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n * consider using {ReentrancyGuardTransient} instead.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant NOT_ENTERED = 1;\n uint256 private constant ENTERED = 2;\n\n uint256 private _status;\n\n /**\n * @dev Unauthorized reentrant call.\n */\n error ReentrancyGuardReentrantCall();\n\n constructor() {\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be NOT_ENTERED\n if (_status == ENTERED) {\n revert ReentrancyGuardReentrantCall();\n }\n\n // Any calls to nonReentrant after this point will fail\n _status = ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == ENTERED;\n }\n}\n"},"contracts/DLE.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/utils/ReentrancyGuard.sol\";\n\n/**\n * @title DLE (Digital Legal Entity)\n * @dev Основной контракт DLE с модульной архитектурой и мульти-чейн поддержкой\n */\ncontract DLE is ERC20, ReentrancyGuard {\n struct DLEInfo {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 creationTimestamp;\n bool isActive;\n }\n\n struct DLEConfig {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 quorumPercentage;\n address[] initialPartners;\n uint256[] initialAmounts;\n uint256[] supportedChainIds; // Поддерживаемые цепочки\n }\n\n struct Proposal {\n uint256 id;\n string description;\n uint256 forVotes;\n uint256 againstVotes;\n bool executed;\n uint256 deadline;\n address initiator;\n bytes operation; // Операция для исполнения\n mapping(address => bool) hasVoted;\n mapping(uint256 => bool) chainVoteSynced; // Синхронизация голосов между цепочками\n }\n\n struct MultiSigOperation {\n bytes32 operationHash;\n uint256 forSignatures;\n uint256 againstSignatures;\n bool executed;\n uint256 deadline;\n address initiator;\n mapping(address => bool) hasSigned;\n mapping(uint256 => bool) chainSignSynced; // Синхронизация подписей между цепочками\n }\n\n // Основные настройки\n DLEInfo public dleInfo;\n uint256 public quorumPercentage;\n uint256 public proposalCounter;\n uint256 public multiSigCounter;\n uint256 public currentChainId;\n\n // Модули\n mapping(bytes32 => address) public modules;\n mapping(bytes32 => bool) public activeModules;\n\n // Предложения и мультиподписи\n mapping(uint256 => Proposal) public proposals;\n mapping(uint256 => MultiSigOperation) public multiSigOperations;\n\n // Мульти-чейн\n mapping(uint256 => bool) public supportedChains;\n mapping(uint256 => bool) public executedProposals; // Синхронизация исполненных предложений\n mapping(uint256 => bool) public executedMultiSig; // Синхронизация исполненных мультиподписей\n\n // События\n event DLEInitialized(\n string name,\n string symbol,\n string location,\n string coordinates,\n uint256 jurisdiction,\n uint256 oktmo,\n string[] okvedCodes,\n uint256 kpp,\n address tokenAddress,\n uint256[] supportedChainIds\n );\n event InitialTokensDistributed(address[] partners, uint256[] amounts);\n event ProposalCreated(uint256 proposalId, address initiator, string description);\n event ProposalVoted(uint256 proposalId, address voter, bool support, uint256 votingPower);\n event ProposalExecuted(uint256 proposalId, bytes operation);\n event MultiSigOperationCreated(uint256 operationId, address initiator, bytes32 operationHash);\n event MultiSigSigned(uint256 operationId, address signer, bool support, uint256 signaturePower);\n event MultiSigExecuted(uint256 operationId, bytes32 operationHash);\n event ModuleAdded(bytes32 moduleId, address moduleAddress);\n event ModuleRemoved(bytes32 moduleId);\n event CrossChainExecutionSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId);\n event CrossChainVoteSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId);\n event CrossChainMultiSigSync(uint256 operationId, uint256 fromChainId, uint256 toChainId);\n\n constructor(\n DLEConfig memory config,\n uint256 _currentChainId\n ) ERC20(config.name, config.symbol) {\n dleInfo = DLEInfo({\n name: config.name,\n symbol: config.symbol,\n location: config.location,\n coordinates: config.coordinates,\n jurisdiction: config.jurisdiction,\n oktmo: config.oktmo,\n okvedCodes: config.okvedCodes,\n kpp: config.kpp,\n creationTimestamp: block.timestamp,\n isActive: true\n });\n \n quorumPercentage = config.quorumPercentage;\n currentChainId = _currentChainId;\n\n // Настраиваем поддерживаемые цепочки\n for (uint256 i = 0; i < config.supportedChainIds.length; i++) {\n supportedChains[config.supportedChainIds[i]] = true;\n }\n\n // Распределяем начальные токены партнерам\n require(config.initialPartners.length == config.initialAmounts.length, \"Arrays length mismatch\");\n require(config.initialPartners.length > 0, \"No initial partners\");\n \n for (uint256 i = 0; i < config.initialPartners.length; i++) {\n require(config.initialPartners[i] != address(0), \"Zero address\");\n require(config.initialAmounts[i] > 0, \"Zero amount\");\n _mint(config.initialPartners[i], config.initialAmounts[i]);\n }\n \n emit InitialTokensDistributed(config.initialPartners, config.initialAmounts);\n emit DLEInitialized(\n config.name,\n config.symbol,\n config.location,\n config.coordinates,\n config.jurisdiction,\n config.oktmo,\n config.okvedCodes,\n config.kpp,\n address(this),\n config.supportedChainIds\n );\n }\n\n /**\n * @dev Создать предложение с выбором цепочки для кворума\n * @param _description Описание предложения\n * @param _duration Длительность голосования в секундах\n * @param _operation Операция для исполнения\n * @param _governanceChainId ID цепочки для сбора голосов\n */\n function createProposal(\n string memory _description, \n uint256 _duration,\n bytes memory _operation,\n uint256 _governanceChainId\n ) external returns (uint256) {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create proposal\");\n require(_duration > 0, \"Duration must be positive\");\n require(supportedChains[_governanceChainId], \"Chain not supported\");\n require(checkChainConnection(_governanceChainId), \"Chain not available\");\n\n uint256 proposalId = proposalCounter++;\n Proposal storage proposal = proposals[proposalId];\n \n proposal.id = proposalId;\n proposal.description = _description;\n proposal.forVotes = 0;\n proposal.againstVotes = 0;\n proposal.executed = false;\n proposal.deadline = block.timestamp + _duration;\n proposal.initiator = msg.sender;\n proposal.operation = _operation;\n\n emit ProposalCreated(proposalId, msg.sender, _description);\n return proposalId;\n }\n\n /**\n * @dev Голосовать за предложение\n * @param _proposalId ID предложения\n * @param _support Поддержка предложения\n */\n function vote(uint256 _proposalId, bool _support) external nonReentrant {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(block.timestamp < proposal.deadline, \"Voting ended\");\n require(!proposal.executed, \"Proposal already executed\");\n require(!proposal.hasVoted[msg.sender], \"Already voted\");\n require(balanceOf(msg.sender) > 0, \"No tokens to vote\");\n\n uint256 votingPower = balanceOf(msg.sender);\n proposal.hasVoted[msg.sender] = true;\n\n if (_support) {\n proposal.forVotes += votingPower;\n } else {\n proposal.againstVotes += votingPower;\n }\n\n emit ProposalVoted(_proposalId, msg.sender, _support, votingPower);\n }\n\n /**\n * @dev Синхронизировать голос из другой цепочки\n * @param _proposalId ID предложения\n * @param _fromChainId ID цепочки откуда синхронизируем\n * @param _forVotes Голоса за\n * @param _againstVotes Голоса против\n * @param _proof Доказательство синхронизации\n */\n function syncVoteFromChain(\n uint256 _proposalId,\n uint256 _fromChainId,\n uint256 _forVotes,\n uint256 _againstVotes,\n bytes memory _proof\n ) external {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!proposal.chainVoteSynced[_fromChainId], \"Already synced\");\n\n // Здесь должна быть проверка proof (для простоты пропускаем)\n // В реальной реализации нужно проверять доказательство\n\n proposal.forVotes += _forVotes;\n proposal.againstVotes += _againstVotes;\n proposal.chainVoteSynced[_fromChainId] = true;\n\n emit CrossChainVoteSync(_proposalId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить результат предложения\n * @param _proposalId ID предложения\n * @return passed Прошло ли предложение\n * @return quorumReached Достигнут ли кворум\n */\n function checkProposalResult(uint256 _proposalId) public view returns (bool passed, bool quorumReached) {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n\n uint256 totalVotes = proposal.forVotes + proposal.againstVotes;\n uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100;\n \n quorumReached = totalVotes >= quorumRequired;\n passed = quorumReached && proposal.forVotes > proposal.againstVotes;\n \n return (passed, quorumReached);\n }\n\n /**\n * @dev Исполнить предложение\n * @param _proposalId ID предложения\n */\n function executeProposal(uint256 _proposalId) external {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp >= proposal.deadline, \"Voting not ended\");\n\n (bool passed, bool quorumReached) = checkProposalResult(_proposalId);\n require(passed && quorumReached, \"Proposal not passed\");\n\n proposal.executed = true;\n \n // Исполняем операцию\n _executeOperation(proposal.operation);\n \n emit ProposalExecuted(_proposalId, proposal.operation);\n }\n\n /**\n * @dev Создать мультиподпись операцию\n * @param _operationHash Хеш операции\n * @param _duration Длительность сбора подписей\n */\n function createMultiSigOperation(\n bytes32 _operationHash,\n uint256 _duration\n ) external returns (uint256) {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create operation\");\n require(_duration > 0, \"Duration must be positive\");\n\n uint256 operationId = multiSigCounter++;\n MultiSigOperation storage operation = multiSigOperations[operationId];\n \n operation.operationHash = _operationHash;\n operation.forSignatures = 0;\n operation.againstSignatures = 0;\n operation.executed = false;\n operation.deadline = block.timestamp + _duration;\n operation.initiator = msg.sender;\n\n emit MultiSigOperationCreated(operationId, msg.sender, _operationHash);\n return operationId;\n }\n\n /**\n * @dev Подписать мультиподпись операцию\n * @param _operationId ID операции\n * @param _support Поддержка операции\n */\n function signMultiSigOperation(uint256 _operationId, bool _support) external nonReentrant {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(block.timestamp < operation.deadline, \"Signing ended\");\n require(!operation.executed, \"Operation already executed\");\n require(!operation.hasSigned[msg.sender], \"Already signed\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n\n uint256 signaturePower = balanceOf(msg.sender);\n operation.hasSigned[msg.sender] = true;\n\n if (_support) {\n operation.forSignatures += signaturePower;\n } else {\n operation.againstSignatures += signaturePower;\n }\n\n emit MultiSigSigned(_operationId, msg.sender, _support, signaturePower);\n }\n\n /**\n * @dev Синхронизировать мультиподпись из другой цепочки\n * @param _operationId ID операции\n * @param _fromChainId ID цепочки откуда синхронизируем\n * @param _forSignatures Подписи за\n * @param _againstSignatures Подписи против\n * @param _proof Доказательство синхронизации\n */\n function syncMultiSigFromChain(\n uint256 _operationId,\n uint256 _fromChainId,\n uint256 _forSignatures,\n uint256 _againstSignatures,\n bytes memory _proof\n ) external {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!operation.chainSignSynced[_fromChainId], \"Already synced\");\n\n // Здесь должна быть проверка proof\n // В реальной реализации нужно проверять доказательство\n\n operation.forSignatures += _forSignatures;\n operation.againstSignatures += _againstSignatures;\n operation.chainSignSynced[_fromChainId] = true;\n\n emit CrossChainMultiSigSync(_operationId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить результат мультиподписи\n * @param _operationId ID операции\n * @return passed Прошла ли операция\n * @return quorumReached Достигнут ли кворум\n */\n function checkMultiSigResult(uint256 _operationId) public view returns (bool passed, bool quorumReached) {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n\n uint256 totalSignatures = operation.forSignatures + operation.againstSignatures;\n uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100;\n \n quorumReached = totalSignatures >= quorumRequired;\n passed = quorumReached && operation.forSignatures > operation.againstSignatures;\n \n return (passed, quorumReached);\n }\n\n /**\n * @dev Исполнить мультиподпись операцию\n * @param _operationId ID операции\n */\n function executeMultiSigOperation(uint256 _operationId) external {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(!operation.executed, \"Operation already executed\");\n require(block.timestamp >= operation.deadline, \"Signing not ended\");\n\n (bool passed, bool quorumReached) = checkMultiSigResult(_operationId);\n require(passed && quorumReached, \"Operation not passed\");\n\n operation.executed = true;\n \n emit MultiSigExecuted(_operationId, operation.operationHash);\n }\n\n /**\n * @dev Синхронизировать исполнение из другой цепочки\n * @param _proposalId ID предложения\n * @param _fromChainId ID цепочки откуда синхронизируем\n * @param _proof Доказательство исполнения\n */\n function syncExecutionFromChain(\n uint256 _proposalId,\n uint256 _fromChainId,\n bytes memory _proof\n ) external {\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!executedProposals[_proposalId], \"Already executed\");\n\n // Здесь должна быть проверка proof\n // В реальной реализации нужно проверять доказательство\n\n executedProposals[_proposalId] = true;\n \n // Получаем операцию из предложения\n Proposal storage proposal = proposals[_proposalId];\n if (proposal.id == _proposalId) {\n _executeOperation(proposal.operation);\n }\n\n emit CrossChainExecutionSync(_proposalId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить подключение к цепочке\n * @param _chainId ID цепочки\n * @return isAvailable Доступна ли цепочка\n */\n function checkChainConnection(uint256 _chainId) public view returns (bool isAvailable) {\n // В реальной реализации здесь должна быть проверка подключения\n // Для примера возвращаем true для поддерживаемых цепочек\n return supportedChains[_chainId];\n }\n\n /**\n * @dev Проверить все подключения перед синхронизацией\n * @param _proposalId ID предложения\n * @return allChainsReady Готовы ли все цепочки\n */\n function checkSyncReadiness(uint256 _proposalId) public view returns (bool allChainsReady) {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n \n // Проверяем все поддерживаемые цепочки\n for (uint256 i = 0; i < getSupportedChainCount(); i++) {\n uint256 chainId = getSupportedChainId(i);\n if (!checkChainConnection(chainId)) {\n return false;\n }\n }\n \n return true;\n }\n\n /**\n * @dev Синхронизация только при 100% готовности\n * @param _proposalId ID предложения\n */\n function syncToAllChains(uint256 _proposalId) external {\n require(checkSyncReadiness(_proposalId), \"Not all chains ready\");\n \n // Выполняем синхронизацию во все цепочки\n for (uint256 i = 0; i < getSupportedChainCount(); i++) {\n uint256 chainId = getSupportedChainId(i);\n syncToChain(_proposalId, chainId);\n }\n \n emit SyncCompleted(_proposalId);\n }\n\n /**\n * @dev Синхронизация в конкретную цепочку\n * @param _proposalId ID предложения\n * @param _chainId ID цепочки\n */\n function syncToChain(uint256 _proposalId, uint256 _chainId) internal {\n // В реальной реализации здесь будет вызов cross-chain bridge\n // Для примера просто эмитим событие\n emit CrossChainExecutionSync(_proposalId, currentChainId, _chainId);\n }\n\n /**\n * @dev Получить количество поддерживаемых цепочек\n */\n function getSupportedChainCount() public view returns (uint256) {\n uint256 count = 0;\n // В реальной реализации нужно хранить массив поддерживаемых цепочек\n // Для примера возвращаем 4 (Ethereum, Polygon, BSC, Arbitrum)\n return 4;\n }\n\n /**\n * @dev Получить ID поддерживаемой цепочки по индексу\n * @param _index Индекс цепочки\n */\n function getSupportedChainId(uint256 _index) public pure returns (uint256) {\n if (_index == 0) return 1; // Ethereum\n if (_index == 1) return 137; // Polygon\n if (_index == 2) return 56; // BSC\n if (_index == 3) return 42161; // Arbitrum\n revert(\"Invalid chain index\");\n }\n\n /**\n * @dev Исполнить операцию\n * @param _operation Операция для исполнения\n */\n function _executeOperation(bytes memory _operation) internal {\n // Декодируем операцию\n (bytes4 selector, bytes memory data) = abi.decode(_operation, (bytes4, bytes));\n \n if (selector == bytes4(keccak256(\"transfer(address,uint256)\"))) {\n // Операция передачи токенов\n (address to, uint256 amount) = abi.decode(data, (address, uint256));\n _transfer(msg.sender, to, amount);\n } else if (selector == bytes4(keccak256(\"mint(address,uint256)\"))) {\n // Операция минтинга токенов\n (address to, uint256 amount) = abi.decode(data, (address, uint256));\n _mint(to, amount);\n } else if (selector == bytes4(keccak256(\"burn(address,uint256)\"))) {\n // Операция сжигания токенов\n (address from, uint256 amount) = abi.decode(data, (address, uint256));\n _burn(from, amount);\n } else {\n // Неизвестная операция\n revert(\"Unknown operation\");\n }\n }\n\n /**\n * @dev Добавить модуль\n * @param _moduleId ID модуля\n * @param _moduleAddress Адрес модуля\n */\n function addModule(bytes32 _moduleId, address _moduleAddress) external {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to add module\");\n require(_moduleAddress != address(0), \"Zero address\");\n require(!activeModules[_moduleId], \"Module already exists\");\n\n modules[_moduleId] = _moduleAddress;\n activeModules[_moduleId] = true;\n\n emit ModuleAdded(_moduleId, _moduleAddress);\n }\n\n /**\n * @dev Удалить модуль\n * @param _moduleId ID модуля\n */\n function removeModule(bytes32 _moduleId) external {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to remove module\");\n require(activeModules[_moduleId], \"Module does not exist\");\n\n delete modules[_moduleId];\n activeModules[_moduleId] = false;\n\n emit ModuleRemoved(_moduleId);\n }\n\n /**\n * @dev Получить информацию о DLE\n */\n function getDLEInfo() external view returns (DLEInfo memory) {\n return dleInfo;\n }\n\n /**\n * @dev Проверить, активен ли модуль\n * @param _moduleId ID модуля\n */\n function isModuleActive(bytes32 _moduleId) external view returns (bool) {\n return activeModules[_moduleId];\n }\n\n /**\n * @dev Получить адрес модуля\n * @param _moduleId ID модуля\n */\n function getModuleAddress(bytes32 _moduleId) external view returns (address) {\n return modules[_moduleId];\n }\n\n /**\n * @dev Проверить, поддерживается ли цепочка\n * @param _chainId ID цепочки\n */\n function isChainSupported(uint256 _chainId) external view returns (bool) {\n return supportedChains[_chainId];\n }\n\n /**\n * @dev Получить текущий ID цепочки\n */\n function getCurrentChainId() external view returns (uint256) {\n return currentChainId;\n }\n\n // События для новых функций\n event SyncCompleted(uint256 proposalId);\n} "}},"settings":{"optimizer":{"enabled":true,"runs":200},"viaIR":true,"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n --> contracts/DLE.sol:232:9:\n |\n232 | bytes memory _proof\n | ^^^^^^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":9049,"file":"contracts/DLE.sol","start":9030},"type":"Warning"},{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n --> contracts/DLE.sol:353:9:\n |\n353 | bytes memory _proof\n | ^^^^^^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":14209,"file":"contracts/DLE.sol","start":14190},"type":"Warning"},{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n --> contracts/DLE.sol:416:9:\n |\n416 | bytes memory _proof\n | ^^^^^^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":17124,"file":"contracts/DLE.sol","start":17105},"type":"Warning"},{"component":"general","errorCode":"2072","formattedMessage":"Warning: Unused local variable.\n --> contracts/DLE.sol:497:9:\n |\n497 | uint256 count = 0;\n | ^^^^^^^^^^^^^\n\n","message":"Unused local variable.","severity":"warning","sourceLocation":{"end":20571,"file":"contracts/DLE.sol","start":20558},"type":"Warning"},{"component":"general","errorCode":"2018","formattedMessage":"Warning: Function state mutability can be restricted to pure\n --> contracts/DLE.sol:496:5:\n |\n496 | function getSupportedChainCount() public view returns (uint256) {\n | ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"Function state mutability can be restricted to pure","severity":"warning","sourceLocation":{"end":20826,"file":"contracts/DLE.sol","start":20484},"type":"Warning"}],"sources":{"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[136],"IERC20Errors":[41],"IERC721Errors":[89]},"id":137,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"138:141:0","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":41,"linearizedBaseContracts":[41],"name":"IERC20Errors","nameLocation":"290:12:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"309:309:0","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":11,"name":"ERC20InsufficientBalance","nameLocation":"629:24:0","nodeType":"ErrorDefinition","parameters":{"id":10,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"mutability":"mutable","name":"sender","nameLocation":"662:6:0","nodeType":"VariableDeclaration","scope":11,"src":"654:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7,"mutability":"mutable","name":"balance","nameLocation":"678:7:0","nodeType":"VariableDeclaration","scope":11,"src":"670:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9,"mutability":"mutable","name":"needed","nameLocation":"695:6:0","nodeType":"VariableDeclaration","scope":11,"src":"687:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:0"},"src":"623:80:0"},{"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"709:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":16,"name":"ERC20InvalidSender","nameLocation":"872:18:0","nodeType":"ErrorDefinition","parameters":{"id":15,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14,"mutability":"mutable","name":"sender","nameLocation":"899:6:0","nodeType":"VariableDeclaration","scope":16,"src":"891:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:0"},"src":"866:41:0"},{"documentation":{"id":17,"nodeType":"StructuredDocumentation","src":"913:159:0","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":21,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:0","nodeType":"ErrorDefinition","parameters":{"id":20,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:0","nodeType":"VariableDeclaration","scope":21,"src":"1104:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:0"},"src":"1077:45:0"},{"documentation":{"id":22,"nodeType":"StructuredDocumentation","src":"1128:345:0","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":30,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:0","nodeType":"ErrorDefinition","parameters":{"id":29,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24,"mutability":"mutable","name":"spender","nameLocation":"1519:7:0","nodeType":"VariableDeclaration","scope":30,"src":"1511:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:0","nodeType":"VariableDeclaration","scope":30,"src":"1528:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28,"mutability":"mutable","name":"needed","nameLocation":"1555:6:0","nodeType":"VariableDeclaration","scope":30,"src":"1547:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:0"},"src":"1478:85:0"},{"documentation":{"id":31,"nodeType":"StructuredDocumentation","src":"1569:174:0","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":35,"name":"ERC20InvalidApprover","nameLocation":"1754:20:0","nodeType":"ErrorDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33,"mutability":"mutable","name":"approver","nameLocation":"1783:8:0","nodeType":"VariableDeclaration","scope":35,"src":"1775:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:0"},"src":"1748:45:0"},{"documentation":{"id":36,"nodeType":"StructuredDocumentation","src":"1799:195:0","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":40,"name":"ERC20InvalidSpender","nameLocation":"2005:19:0","nodeType":"ErrorDefinition","parameters":{"id":39,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38,"mutability":"mutable","name":"spender","nameLocation":"2033:7:0","nodeType":"VariableDeclaration","scope":40,"src":"2025:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:0"},"src":"1999:43:0"}],"scope":137,"src":"280:1764:0","usedErrors":[11,16,21,30,35,40],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"2046:143:0","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":89,"linearizedBaseContracts":[89],"name":"IERC721Errors","nameLocation":"2200:13:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":43,"nodeType":"StructuredDocumentation","src":"2220:219:0","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":47,"name":"ERC721InvalidOwner","nameLocation":"2450:18:0","nodeType":"ErrorDefinition","parameters":{"id":46,"nodeType":"ParameterList","parameters":[{"constant":false,"id":45,"mutability":"mutable","name":"owner","nameLocation":"2477:5:0","nodeType":"VariableDeclaration","scope":47,"src":"2469:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":44,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:0"},"src":"2444:40:0"},{"documentation":{"id":48,"nodeType":"StructuredDocumentation","src":"2490:132:0","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":52,"name":"ERC721NonexistentToken","nameLocation":"2633:22:0","nodeType":"ErrorDefinition","parameters":{"id":51,"nodeType":"ParameterList","parameters":[{"constant":false,"id":50,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:0","nodeType":"VariableDeclaration","scope":52,"src":"2656:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":49,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:0"},"src":"2627:46:0"},{"documentation":{"id":53,"nodeType":"StructuredDocumentation","src":"2679:289:0","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":61,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:0","nodeType":"ErrorDefinition","parameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":55,"mutability":"mutable","name":"sender","nameLocation":"3008:6:0","nodeType":"VariableDeclaration","scope":61,"src":"3000:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":54,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":57,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:0","nodeType":"VariableDeclaration","scope":61,"src":"3016:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":56,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":59,"mutability":"mutable","name":"owner","nameLocation":"3041:5:0","nodeType":"VariableDeclaration","scope":61,"src":"3033:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":58,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:0"},"src":"2973:75:0"},{"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"3054:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":66,"name":"ERC721InvalidSender","nameLocation":"3217:19:0","nodeType":"ErrorDefinition","parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"sender","nameLocation":"3245:6:0","nodeType":"VariableDeclaration","scope":66,"src":"3237:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:0"},"src":"3211:42:0"},{"documentation":{"id":67,"nodeType":"StructuredDocumentation","src":"3259:159:0","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":71,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:0","nodeType":"ErrorDefinition","parameters":{"id":70,"nodeType":"ParameterList","parameters":[{"constant":false,"id":69,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:0","nodeType":"VariableDeclaration","scope":71,"src":"3451:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":68,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:0"},"src":"3423:46:0"},{"documentation":{"id":72,"nodeType":"StructuredDocumentation","src":"3475:247:0","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":78,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:0","nodeType":"ErrorDefinition","parameters":{"id":77,"nodeType":"ParameterList","parameters":[{"constant":false,"id":74,"mutability":"mutable","name":"operator","nameLocation":"3768:8:0","nodeType":"VariableDeclaration","scope":78,"src":"3760:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":73,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":76,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:0","nodeType":"VariableDeclaration","scope":78,"src":"3778:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":75,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:0"},"src":"3727:68:0"},{"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"3801:174:0","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":83,"name":"ERC721InvalidApprover","nameLocation":"3986:21:0","nodeType":"ErrorDefinition","parameters":{"id":82,"nodeType":"ParameterList","parameters":[{"constant":false,"id":81,"mutability":"mutable","name":"approver","nameLocation":"4016:8:0","nodeType":"VariableDeclaration","scope":83,"src":"4008:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":80,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:0"},"src":"3980:46:0"},{"documentation":{"id":84,"nodeType":"StructuredDocumentation","src":"4032:197:0","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":88,"name":"ERC721InvalidOperator","nameLocation":"4240:21:0","nodeType":"ErrorDefinition","parameters":{"id":87,"nodeType":"ParameterList","parameters":[{"constant":false,"id":86,"mutability":"mutable","name":"operator","nameLocation":"4270:8:0","nodeType":"VariableDeclaration","scope":88,"src":"4262:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":85,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:0"},"src":"4234:46:0"}],"scope":137,"src":"2190:2092:0","usedErrors":[47,52,61,66,71,78,83,88],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":90,"nodeType":"StructuredDocumentation","src":"4284:145:0","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":136,"linearizedBaseContracts":[136],"name":"IERC1155Errors","nameLocation":"4440:14:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":91,"nodeType":"StructuredDocumentation","src":"4461:361:0","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":101,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:0","nodeType":"ErrorDefinition","parameters":{"id":100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":93,"mutability":"mutable","name":"sender","nameLocation":"4868:6:0","nodeType":"VariableDeclaration","scope":101,"src":"4860:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":92,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":95,"mutability":"mutable","name":"balance","nameLocation":"4884:7:0","nodeType":"VariableDeclaration","scope":101,"src":"4876:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":94,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":97,"mutability":"mutable","name":"needed","nameLocation":"4901:6:0","nodeType":"VariableDeclaration","scope":101,"src":"4893:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":96,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":99,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:0","nodeType":"VariableDeclaration","scope":101,"src":"4909:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":98,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:0"},"src":"4827:99:0"},{"documentation":{"id":102,"nodeType":"StructuredDocumentation","src":"4932:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":106,"name":"ERC1155InvalidSender","nameLocation":"5095:20:0","nodeType":"ErrorDefinition","parameters":{"id":105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":104,"mutability":"mutable","name":"sender","nameLocation":"5124:6:0","nodeType":"VariableDeclaration","scope":106,"src":"5116:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":103,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:0"},"src":"5089:43:0"},{"documentation":{"id":107,"nodeType":"StructuredDocumentation","src":"5138:159:0","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":111,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:0","nodeType":"ErrorDefinition","parameters":{"id":110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":109,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:0","nodeType":"VariableDeclaration","scope":111,"src":"5331:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":108,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:0"},"src":"5302:47:0"},{"documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"5355:256:0","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":118,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:0","nodeType":"ErrorDefinition","parameters":{"id":117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":114,"mutability":"mutable","name":"operator","nameLocation":"5659:8:0","nodeType":"VariableDeclaration","scope":118,"src":"5651:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":113,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":116,"mutability":"mutable","name":"owner","nameLocation":"5677:5:0","nodeType":"VariableDeclaration","scope":118,"src":"5669:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":115,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:0"},"src":"5616:68:0"},{"documentation":{"id":119,"nodeType":"StructuredDocumentation","src":"5690:174:0","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":123,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:0","nodeType":"ErrorDefinition","parameters":{"id":122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":121,"mutability":"mutable","name":"approver","nameLocation":"5906:8:0","nodeType":"VariableDeclaration","scope":123,"src":"5898:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":120,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:0"},"src":"5869:47:0"},{"documentation":{"id":124,"nodeType":"StructuredDocumentation","src":"5922:197:0","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":128,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:0","nodeType":"ErrorDefinition","parameters":{"id":127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":126,"mutability":"mutable","name":"operator","nameLocation":"6161:8:0","nodeType":"VariableDeclaration","scope":128,"src":"6153:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":125,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:0"},"src":"6124:47:0"},{"documentation":{"id":129,"nodeType":"StructuredDocumentation","src":"6177:280:0","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":135,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:0","nodeType":"ErrorDefinition","parameters":{"id":134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":131,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:0","nodeType":"VariableDeclaration","scope":135,"src":"6494:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":130,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":133,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:0","nodeType":"VariableDeclaration","scope":135,"src":"6513:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":132,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:0"},"src":"6462:73:0"}],"scope":137,"src":"4430:2107:0","usedErrors":[101,106,111,118,123,128,135],"usedEvents":[]}],"src":"112:6426:0"},"id":0},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[785],"ERC20":[651],"IERC20":[729],"IERC20Errors":[41],"IERC20Metadata":[755]},"id":652,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":138,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:1"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":730,"src":"131:36:1","symbolAliases":[{"foreign":{"id":139,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"139:6:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":142,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":756,"src":"168:63:1","symbolAliases":[{"foreign":{"id":141,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"176:14:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":144,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":786,"src":"232:48:1","symbolAliases":[{"foreign":{"id":143,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"240:7:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":146,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":137,"src":"281:65:1","symbolAliases":[{"foreign":{"id":145,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"289:12:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":148,"name":"Context","nameLocations":["1133:7:1"],"nodeType":"IdentifierPath","referencedDeclaration":785,"src":"1133:7:1"},"id":149,"nodeType":"InheritanceSpecifier","src":"1133:7:1"},{"baseName":{"id":150,"name":"IERC20","nameLocations":["1142:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":729,"src":"1142:6:1"},"id":151,"nodeType":"InheritanceSpecifier","src":"1142:6:1"},{"baseName":{"id":152,"name":"IERC20Metadata","nameLocations":["1150:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":755,"src":"1150:14:1"},"id":153,"nodeType":"InheritanceSpecifier","src":"1150:14:1"},{"baseName":{"id":154,"name":"IERC20Errors","nameLocations":["1166:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":41,"src":"1166:12:1"},"id":155,"nodeType":"InheritanceSpecifier","src":"1166:12:1"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":147,"nodeType":"StructuredDocumentation","src":"348:757:1","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":651,"linearizedBaseContracts":[651,41,755,729,785],"name":"ERC20","nameLocation":"1124:5:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":159,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:1","nodeType":"VariableDeclaration","scope":651,"src":"1185:53:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":158,"keyName":"account","keyNameLocation":"1201:7:1","keyType":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":157,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":165,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:1","nodeType":"VariableDeclaration","scope":651,"src":"1245:83:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":164,"keyName":"account","keyNameLocation":"1261:7:1","keyType":{"id":160,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:1","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":163,"keyName":"spender","keyNameLocation":"1288:7:1","keyType":{"id":161,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":162,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":167,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:1","nodeType":"VariableDeclaration","scope":651,"src":"1335:28:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":166,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":169,"mutability":"mutable","name":"_name","nameLocation":"1385:5:1","nodeType":"VariableDeclaration","scope":651,"src":"1370:20:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":168,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":171,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:1","nodeType":"VariableDeclaration","scope":651,"src":"1396:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":170,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":187,"nodeType":"Block","src":"1657:57:1","statements":[{"expression":{"id":181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":179,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"1667:5:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":180,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1675:5:1","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":182,"nodeType":"ExpressionStatement","src":"1667:13:1"},{"expression":{"id":185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":183,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"1690:7:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":184,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1700:7:1","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":186,"nodeType":"ExpressionStatement","src":"1690:17:1"}]},"documentation":{"id":172,"nodeType":"StructuredDocumentation","src":"1425:171:1","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":188,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":174,"mutability":"mutable","name":"name_","nameLocation":"1627:5:1","nodeType":"VariableDeclaration","scope":188,"src":"1613:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":173,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":176,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:1","nodeType":"VariableDeclaration","scope":188,"src":"1634:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":175,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:1"},"returnParameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"1657:0:1"},"scope":651,"src":"1601:113:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[742],"body":{"id":196,"nodeType":"Block","src":"1839:29:1","statements":[{"expression":{"id":194,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"1856:5:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":193,"id":195,"nodeType":"Return","src":"1849:12:1"}]},"documentation":{"id":189,"nodeType":"StructuredDocumentation","src":"1720:54:1","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":197,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:1","nodeType":"FunctionDefinition","parameters":{"id":190,"nodeType":"ParameterList","parameters":[],"src":"1792:2:1"},"returnParameters":{"id":193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":197,"src":"1824:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":191,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:1"},"scope":651,"src":"1779:89:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[748],"body":{"id":205,"nodeType":"Block","src":"2043:31:1","statements":[{"expression":{"id":203,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"2060:7:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":202,"id":204,"nodeType":"Return","src":"2053:14:1"}]},"documentation":{"id":198,"nodeType":"StructuredDocumentation","src":"1874:102:1","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":206,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:1","nodeType":"FunctionDefinition","parameters":{"id":199,"nodeType":"ParameterList","parameters":[],"src":"1996:2:1"},"returnParameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":206,"src":"2028:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":200,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:1"},"scope":651,"src":"1981:93:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[754],"body":{"id":214,"nodeType":"Block","src":"2763:26:1","statements":[{"expression":{"hexValue":"3138","id":212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:1","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":211,"id":213,"nodeType":"Return","src":"2773:9:1"}]},"documentation":{"id":207,"nodeType":"StructuredDocumentation","src":"2080:622:1","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":215,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:1","nodeType":"FunctionDefinition","parameters":{"id":208,"nodeType":"ParameterList","parameters":[],"src":"2724:2:1"},"returnParameters":{"id":211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":215,"src":"2756:5:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":209,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:1"},"scope":651,"src":"2707:82:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[678],"body":{"id":223,"nodeType":"Block","src":"2910:36:1","statements":[{"expression":{"id":221,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"2927:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":220,"id":222,"nodeType":"Return","src":"2920:19:1"}]},"documentation":{"id":216,"nodeType":"StructuredDocumentation","src":"2795:49:1","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":224,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[],"src":"2869:2:1"},"returnParameters":{"id":220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":224,"src":"2901:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":218,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:1"},"scope":651,"src":"2849:97:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[686],"body":{"id":236,"nodeType":"Block","src":"3078:42:1","statements":[{"expression":{"baseExpression":{"id":232,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"3095:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":234,"indexExpression":{"id":233,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":227,"src":"3105:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":231,"id":235,"nodeType":"Return","src":"3088:25:1"}]},"documentation":{"id":225,"nodeType":"StructuredDocumentation","src":"2952:47:1","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":237,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:1","nodeType":"FunctionDefinition","parameters":{"id":228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":227,"mutability":"mutable","name":"account","nameLocation":"3031:7:1","nodeType":"VariableDeclaration","scope":237,"src":"3023:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":226,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:1"},"returnParameters":{"id":231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":237,"src":"3069:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":229,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:1"},"scope":651,"src":"3004:116:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[696],"body":{"id":260,"nodeType":"Block","src":"3390:103:1","statements":[{"assignments":[248],"declarations":[{"constant":false,"id":248,"mutability":"mutable","name":"owner","nameLocation":"3408:5:1","nodeType":"VariableDeclaration","scope":260,"src":"3400:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":247,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":251,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":249,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"3416:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:1"},{"expression":{"arguments":[{"id":253,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":248,"src":"3448:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":254,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"3455:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":242,"src":"3459:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":252,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"3438:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":257,"nodeType":"ExpressionStatement","src":"3438:27:1"},{"expression":{"hexValue":"74727565","id":258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":246,"id":259,"nodeType":"Return","src":"3475:11:1"}]},"documentation":{"id":238,"nodeType":"StructuredDocumentation","src":"3126:184:1","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":261,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:1","nodeType":"FunctionDefinition","parameters":{"id":243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":240,"mutability":"mutable","name":"to","nameLocation":"3341:2:1","nodeType":"VariableDeclaration","scope":261,"src":"3333:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":239,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":242,"mutability":"mutable","name":"value","nameLocation":"3353:5:1","nodeType":"VariableDeclaration","scope":261,"src":"3345:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":241,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:1"},"returnParameters":{"id":246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":261,"src":"3384:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":244,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:1"},"scope":651,"src":"3315:178:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[706],"body":{"id":277,"nodeType":"Block","src":"3640:51:1","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":271,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":165,"src":"3657:11:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":273,"indexExpression":{"id":272,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":264,"src":"3669:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":275,"indexExpression":{"id":274,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"3676:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":270,"id":276,"nodeType":"Return","src":"3650:34:1"}]},"documentation":{"id":262,"nodeType":"StructuredDocumentation","src":"3499:47:1","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":278,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:1","nodeType":"FunctionDefinition","parameters":{"id":267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"owner","nameLocation":"3578:5:1","nodeType":"VariableDeclaration","scope":278,"src":"3570:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":263,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":266,"mutability":"mutable","name":"spender","nameLocation":"3593:7:1","nodeType":"VariableDeclaration","scope":278,"src":"3585:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":265,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:1"},"returnParameters":{"id":270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":278,"src":"3631:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:1"},"scope":651,"src":"3551:140:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[716],"body":{"id":301,"nodeType":"Block","src":"4077:107:1","statements":[{"assignments":[289],"declarations":[{"constant":false,"id":289,"mutability":"mutable","name":"owner","nameLocation":"4095:5:1","nodeType":"VariableDeclaration","scope":301,"src":"4087:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":288,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":292,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":290,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"4103:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:1"},{"expression":{"arguments":[{"id":294,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":289,"src":"4134:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":295,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":281,"src":"4141:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":296,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":283,"src":"4150:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":293,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":542,"src":"4125:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":298,"nodeType":"ExpressionStatement","src":"4125:31:1"},{"expression":{"hexValue":"74727565","id":299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":287,"id":300,"nodeType":"Return","src":"4166:11:1"}]},"documentation":{"id":279,"nodeType":"StructuredDocumentation","src":"3697:296:1","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":302,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:1","nodeType":"FunctionDefinition","parameters":{"id":284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":281,"mutability":"mutable","name":"spender","nameLocation":"4023:7:1","nodeType":"VariableDeclaration","scope":302,"src":"4015:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":280,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":283,"mutability":"mutable","name":"value","nameLocation":"4040:5:1","nodeType":"VariableDeclaration","scope":302,"src":"4032:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":282,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:1"},"returnParameters":{"id":287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":286,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":302,"src":"4071:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":285,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:1"},"scope":651,"src":"3998:186:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[728],"body":{"id":333,"nodeType":"Block","src":"4869:151:1","statements":[{"assignments":[315],"declarations":[{"constant":false,"id":315,"mutability":"mutable","name":"spender","nameLocation":"4887:7:1","nodeType":"VariableDeclaration","scope":333,"src":"4879:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":314,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":318,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":316,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"4897:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:1"},{"expression":{"arguments":[{"id":320,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4935:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":321,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":315,"src":"4941:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":309,"src":"4950:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":319,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":650,"src":"4919:15:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4919:37:1"},{"expression":{"arguments":[{"id":326,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4976:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":327,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":307,"src":"4982:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":309,"src":"4986:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":325,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"4966:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":330,"nodeType":"ExpressionStatement","src":"4966:26:1"},{"expression":{"hexValue":"74727565","id":331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":313,"id":332,"nodeType":"Return","src":"5002:11:1"}]},"documentation":{"id":303,"nodeType":"StructuredDocumentation","src":"4190:581:1","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":334,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:1","nodeType":"FunctionDefinition","parameters":{"id":310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":305,"mutability":"mutable","name":"from","nameLocation":"4806:4:1","nodeType":"VariableDeclaration","scope":334,"src":"4798:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":304,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":307,"mutability":"mutable","name":"to","nameLocation":"4820:2:1","nodeType":"VariableDeclaration","scope":334,"src":"4812:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":306,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":309,"mutability":"mutable","name":"value","nameLocation":"4832:5:1","nodeType":"VariableDeclaration","scope":334,"src":"4824:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":308,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:1"},"returnParameters":{"id":313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":334,"src":"4863:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":311,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:1"},"scope":651,"src":"4776:244:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":380,"nodeType":"Block","src":"5462:231:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":344,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"5476:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:1","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":346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":345,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:1","typeDescriptions":{}}},"id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":358,"nodeType":"IfStatement","src":"5472:86:1","trueBody":{"id":357,"nodeType":"Block","src":"5496:62:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:1","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":352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":351,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:1","typeDescriptions":{}}},"id":354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":350,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"5517:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":356,"nodeType":"RevertStatement","src":"5510:37:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":359,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"5571:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:1","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":361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":360,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:1","typeDescriptions":{}}},"id":363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":373,"nodeType":"IfStatement","src":"5567:86:1","trueBody":{"id":372,"nodeType":"Block","src":"5589:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:1","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":367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":366,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:1","typeDescriptions":{}}},"id":369,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":365,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"5610:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":371,"nodeType":"RevertStatement","src":"5603:39:1"}]}},{"expression":{"arguments":[{"id":375,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"5670:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":376,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"5676:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":377,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":341,"src":"5680:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":374,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"5662:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":379,"nodeType":"ExpressionStatement","src":"5662:24:1"}]},"documentation":{"id":335,"nodeType":"StructuredDocumentation","src":"5026:362:1","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":381,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:1","nodeType":"FunctionDefinition","parameters":{"id":342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":337,"mutability":"mutable","name":"from","nameLocation":"5420:4:1","nodeType":"VariableDeclaration","scope":381,"src":"5412:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":336,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":339,"mutability":"mutable","name":"to","nameLocation":"5434:2:1","nodeType":"VariableDeclaration","scope":381,"src":"5426:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":338,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":341,"mutability":"mutable","name":"value","nameLocation":"5446:5:1","nodeType":"VariableDeclaration","scope":381,"src":"5438:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":340,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:1"},"returnParameters":{"id":343,"nodeType":"ParameterList","parameters":[],"src":"5462:0:1"},"scope":651,"src":"5393:300:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"6083:1032:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":391,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6097:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:1","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":393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":392,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:1","typeDescriptions":{}}},"id":395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":428,"nodeType":"Block","src":"6271:362:1","statements":[{"assignments":[403],"declarations":[{"constant":false,"id":403,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:1","nodeType":"VariableDeclaration","scope":428,"src":"6285:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":402,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":407,"initialValue":{"baseExpression":{"id":404,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"6307:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":406,"indexExpression":{"id":405,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6317:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":408,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6340:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":409,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6354:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":418,"nodeType":"IfStatement","src":"6336:115:1","trueBody":{"id":417,"nodeType":"Block","src":"6361:90:1","statements":[{"errorCall":{"arguments":[{"id":412,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6411:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":413,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6417:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6430:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":411,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"6386:24:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":416,"nodeType":"RevertStatement","src":"6379:57:1"}]}},{"id":427,"nodeType":"UncheckedBlock","src":"6464:159:1","statements":[{"expression":{"id":425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":419,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"6571:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":421,"indexExpression":{"id":420,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6581:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":422,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6589:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6603:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":426,"nodeType":"ExpressionStatement","src":"6571:37:1"}]}]},"id":429,"nodeType":"IfStatement","src":"6093:540:1","trueBody":{"id":401,"nodeType":"Block","src":"6117:148:1","statements":[{"expression":{"id":399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":397,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"6233:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":398,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6249:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":400,"nodeType":"ExpressionStatement","src":"6233:21:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":430,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"6647:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:1","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":432,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":431,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:1","typeDescriptions":{}}},"id":434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":449,"nodeType":"Block","src":"6862:206:1","statements":[{"id":448,"nodeType":"UncheckedBlock","src":"6876:182:1","statements":[{"expression":{"id":446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":442,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"7021:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":444,"indexExpression":{"id":443,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"7031:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":445,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"7038:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":447,"nodeType":"ExpressionStatement","src":"7021:22:1"}]}]},"id":450,"nodeType":"IfStatement","src":"6643:425:1","trueBody":{"id":441,"nodeType":"Block","src":"6665:191:1","statements":[{"id":440,"nodeType":"UncheckedBlock","src":"6679:167:1","statements":[{"expression":{"id":438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":436,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"6810:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6826:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":439,"nodeType":"ExpressionStatement","src":"6810:21:1"}]}]}},{"eventCall":{"arguments":[{"id":452,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"7092:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":453,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"7098:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"7102:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"7083:8:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":456,"nodeType":"EmitStatement","src":"7078:30:1"}]},"documentation":{"id":382,"nodeType":"StructuredDocumentation","src":"5699:304:1","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":458,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:1","nodeType":"FunctionDefinition","parameters":{"id":389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":384,"mutability":"mutable","name":"from","nameLocation":"6033:4:1","nodeType":"VariableDeclaration","scope":458,"src":"6025:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":383,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":386,"mutability":"mutable","name":"to","nameLocation":"6047:2:1","nodeType":"VariableDeclaration","scope":458,"src":"6039:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":385,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":388,"mutability":"mutable","name":"value","nameLocation":"6059:5:1","nodeType":"VariableDeclaration","scope":458,"src":"6051:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":387,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:1"},"returnParameters":{"id":390,"nodeType":"ParameterList","parameters":[],"src":"6083:0:1"},"scope":651,"src":"6008:1107:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":490,"nodeType":"Block","src":"7514:152:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":466,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"7528:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:1","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":468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":467,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:1","typeDescriptions":{}}},"id":470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":480,"nodeType":"IfStatement","src":"7524:91:1","trueBody":{"id":479,"nodeType":"Block","src":"7551:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:1","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":474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":473,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:1","typeDescriptions":{}}},"id":476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":472,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"7572:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":478,"nodeType":"RevertStatement","src":"7565:39:1"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:1","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":483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":482,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:1","typeDescriptions":{}}},"id":485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":486,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"7644:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":487,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":463,"src":"7653:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":481,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"7624:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":489,"nodeType":"ExpressionStatement","src":"7624:35:1"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"7121:332:1","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":491,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:1","nodeType":"FunctionDefinition","parameters":{"id":464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"account","nameLocation":"7481:7:1","nodeType":"VariableDeclaration","scope":491,"src":"7473:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":460,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":463,"mutability":"mutable","name":"value","nameLocation":"7498:5:1","nodeType":"VariableDeclaration","scope":491,"src":"7490:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":462,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:1"},"returnParameters":{"id":465,"nodeType":"ParameterList","parameters":[],"src":"7514:0:1"},"scope":651,"src":"7458:208:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":523,"nodeType":"Block","src":"8040:150:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":499,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":494,"src":"8054:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:1","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":501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":500,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:1","typeDescriptions":{}}},"id":503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":513,"nodeType":"IfStatement","src":"8050:89:1","trueBody":{"id":512,"nodeType":"Block","src":"8077:62:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:1","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":507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":506,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:1","typeDescriptions":{}}},"id":509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":505,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"8098:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":511,"nodeType":"RevertStatement","src":"8091:37:1"}]}},{"expression":{"arguments":[{"id":515,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":494,"src":"8156:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:1","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":517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":516,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:1","typeDescriptions":{}}},"id":519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":496,"src":"8177:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":514,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"8148:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":522,"nodeType":"ExpressionStatement","src":"8148:35:1"}]},"documentation":{"id":492,"nodeType":"StructuredDocumentation","src":"7672:307:1","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":524,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:1","nodeType":"FunctionDefinition","parameters":{"id":497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":494,"mutability":"mutable","name":"account","nameLocation":"8007:7:1","nodeType":"VariableDeclaration","scope":524,"src":"7999:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":493,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":496,"mutability":"mutable","name":"value","nameLocation":"8024:5:1","nodeType":"VariableDeclaration","scope":524,"src":"8016:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":495,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:1"},"returnParameters":{"id":498,"nodeType":"ParameterList","parameters":[],"src":"8040:0:1"},"scope":651,"src":"7984:206:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":541,"nodeType":"Block","src":"8800:54:1","statements":[{"expression":{"arguments":[{"id":535,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"8819:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":536,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":529,"src":"8826:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"8835:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:1","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":534,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":602,"src":"8810:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":540,"nodeType":"ExpressionStatement","src":"8810:37:1"}]},"documentation":{"id":525,"nodeType":"StructuredDocumentation","src":"8196:525:1","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":542,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:1","nodeType":"FunctionDefinition","parameters":{"id":532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":527,"mutability":"mutable","name":"owner","nameLocation":"8752:5:1","nodeType":"VariableDeclaration","scope":542,"src":"8744:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":526,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":529,"mutability":"mutable","name":"spender","nameLocation":"8767:7:1","nodeType":"VariableDeclaration","scope":542,"src":"8759:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":528,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":531,"mutability":"mutable","name":"value","nameLocation":"8784:5:1","nodeType":"VariableDeclaration","scope":542,"src":"8776:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":530,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:1"},"returnParameters":{"id":533,"nodeType":"ParameterList","parameters":[],"src":"8800:0:1"},"scope":651,"src":"8726:128:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":601,"nodeType":"Block","src":"9799:334:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":554,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"9813:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:1","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":556,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":555,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:1","typeDescriptions":{}}},"id":558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":568,"nodeType":"IfStatement","src":"9809:89:1","trueBody":{"id":567,"nodeType":"Block","src":"9834:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:1","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":562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":561,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:1","typeDescriptions":{}}},"id":564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":560,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"9855:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":566,"nodeType":"RevertStatement","src":"9848:39:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":569,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"9911:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:1","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":571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":570,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:1","typeDescriptions":{}}},"id":573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":583,"nodeType":"IfStatement","src":"9907:90:1","trueBody":{"id":582,"nodeType":"Block","src":"9934:63:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:1","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":577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":576,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:1","typeDescriptions":{}}},"id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":575,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"9955:19:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":581,"nodeType":"RevertStatement","src":"9948:38:1"}]}},{"expression":{"id":590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":584,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":165,"src":"10006:11:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":587,"indexExpression":{"id":585,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"10018:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":588,"indexExpression":{"id":586,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"10025:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":549,"src":"10036:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":591,"nodeType":"ExpressionStatement","src":"10006:35:1"},{"condition":{"id":592,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":551,"src":"10055:9:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":600,"nodeType":"IfStatement","src":"10051:76:1","trueBody":{"id":599,"nodeType":"Block","src":"10066:61:1","statements":[{"eventCall":{"arguments":[{"id":594,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"10094:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":595,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"10101:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":596,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":549,"src":"10110:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":593,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"10085:8:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":598,"nodeType":"EmitStatement","src":"10080:36:1"}]}}]},"documentation":{"id":543,"nodeType":"StructuredDocumentation","src":"8860:836:1","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":602,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:1","nodeType":"FunctionDefinition","parameters":{"id":552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"owner","nameLocation":"9727:5:1","nodeType":"VariableDeclaration","scope":602,"src":"9719:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":544,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":547,"mutability":"mutable","name":"spender","nameLocation":"9742:7:1","nodeType":"VariableDeclaration","scope":602,"src":"9734:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":546,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":549,"mutability":"mutable","name":"value","nameLocation":"9759:5:1","nodeType":"VariableDeclaration","scope":602,"src":"9751:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":548,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":551,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:1","nodeType":"VariableDeclaration","scope":602,"src":"9766:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":550,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:1"},"returnParameters":{"id":553,"nodeType":"ParameterList","parameters":[],"src":"9799:0:1"},"scope":651,"src":"9701:432:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":649,"nodeType":"Block","src":"10504:387:1","statements":[{"assignments":[613],"declarations":[{"constant":false,"id":613,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:1","nodeType":"VariableDeclaration","scope":649,"src":"10514:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":612,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":618,"initialValue":{"arguments":[{"id":615,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":605,"src":"10551:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":616,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10558:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":614,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":278,"src":"10541:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":619,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10580:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":621,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:1","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":620,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:1","memberName":"max","nodeType":"MemberAccess","src":"10599:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":648,"nodeType":"IfStatement","src":"10576:309:1","trueBody":{"id":647,"nodeType":"Block","src":"10618:267:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":626,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10636:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":627,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10655:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":636,"nodeType":"IfStatement","src":"10632:130:1","trueBody":{"id":635,"nodeType":"Block","src":"10662:100:1","statements":[{"errorCall":{"arguments":[{"id":630,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10714:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":631,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10723:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10741:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":629,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30,"src":"10687:26:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":634,"nodeType":"RevertStatement","src":"10680:67:1"}]}},{"id":646,"nodeType":"UncheckedBlock","src":"10775:100:1","statements":[{"expression":{"arguments":[{"id":638,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":605,"src":"10812:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":639,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10819:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":640,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10828:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10847:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:1","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":637,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":602,"src":"10803:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":645,"nodeType":"ExpressionStatement","src":"10803:57:1"}]}]}}]},"documentation":{"id":603,"nodeType":"StructuredDocumentation","src":"10139:271:1","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":650,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:1","nodeType":"FunctionDefinition","parameters":{"id":610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":605,"mutability":"mutable","name":"owner","nameLocation":"10448:5:1","nodeType":"VariableDeclaration","scope":650,"src":"10440:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":604,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":607,"mutability":"mutable","name":"spender","nameLocation":"10463:7:1","nodeType":"VariableDeclaration","scope":650,"src":"10455:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":606,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":609,"mutability":"mutable","name":"value","nameLocation":"10480:5:1","nodeType":"VariableDeclaration","scope":650,"src":"10472:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":608,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:1"},"returnParameters":{"id":611,"nodeType":"ParameterList","parameters":[],"src":"10504:0:1"},"scope":651,"src":"10415:476:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":652,"src":"1106:9787:1","usedErrors":[11,16,21,30,35,40],"usedEvents":[663,672]}],"src":"105:10789:1"},"id":1},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[729]},"id":730,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":653,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:2"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":654,"nodeType":"StructuredDocumentation","src":"132:71:2","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":729,"linearizedBaseContracts":[729],"name":"IERC20","nameLocation":"214:6:2","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":655,"nodeType":"StructuredDocumentation","src":"227:158:2","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":663,"name":"Transfer","nameLocation":"396:8:2","nodeType":"EventDefinition","parameters":{"id":662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":657,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:2","nodeType":"VariableDeclaration","scope":663,"src":"405:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":656,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":659,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:2","nodeType":"VariableDeclaration","scope":663,"src":"427:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":658,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":661,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:2","nodeType":"VariableDeclaration","scope":663,"src":"447:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":660,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:2"},"src":"390:72:2"},{"anonymous":false,"documentation":{"id":664,"nodeType":"StructuredDocumentation","src":"468:148:2","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":672,"name":"Approval","nameLocation":"627:8:2","nodeType":"EventDefinition","parameters":{"id":671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":666,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:2","nodeType":"VariableDeclaration","scope":672,"src":"636:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":665,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":668,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:2","nodeType":"VariableDeclaration","scope":672,"src":"659:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":667,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":670,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:2","nodeType":"VariableDeclaration","scope":672,"src":"684:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":669,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:2"},"src":"621:78:2"},{"documentation":{"id":673,"nodeType":"StructuredDocumentation","src":"705:65:2","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":678,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:2","nodeType":"FunctionDefinition","parameters":{"id":674,"nodeType":"ParameterList","parameters":[],"src":"795:2:2"},"returnParameters":{"id":677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":676,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":678,"src":"821:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":675,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:2"},"scope":729,"src":"775:55:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":679,"nodeType":"StructuredDocumentation","src":"836:71:2","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":686,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:2","nodeType":"FunctionDefinition","parameters":{"id":682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":681,"mutability":"mutable","name":"account","nameLocation":"939:7:2","nodeType":"VariableDeclaration","scope":686,"src":"931:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":680,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:2"},"returnParameters":{"id":685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":684,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":686,"src":"971:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":683,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:2"},"scope":729,"src":"912:68:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":687,"nodeType":"StructuredDocumentation","src":"986:213:2","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":696,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:2","nodeType":"FunctionDefinition","parameters":{"id":692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":689,"mutability":"mutable","name":"to","nameLocation":"1230:2:2","nodeType":"VariableDeclaration","scope":696,"src":"1222:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":688,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":691,"mutability":"mutable","name":"value","nameLocation":"1242:5:2","nodeType":"VariableDeclaration","scope":696,"src":"1234:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":690,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:2"},"returnParameters":{"id":695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":696,"src":"1267:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":693,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:2"},"scope":729,"src":"1204:69:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":697,"nodeType":"StructuredDocumentation","src":"1279:264:2","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":706,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:2","nodeType":"FunctionDefinition","parameters":{"id":702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":699,"mutability":"mutable","name":"owner","nameLocation":"1575:5:2","nodeType":"VariableDeclaration","scope":706,"src":"1567:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":698,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":701,"mutability":"mutable","name":"spender","nameLocation":"1590:7:2","nodeType":"VariableDeclaration","scope":706,"src":"1582:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":700,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:2"},"returnParameters":{"id":705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":704,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":706,"src":"1622:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":703,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:2"},"scope":729,"src":"1548:83:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":707,"nodeType":"StructuredDocumentation","src":"1637:667:2","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":716,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:2","nodeType":"FunctionDefinition","parameters":{"id":712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":709,"mutability":"mutable","name":"spender","nameLocation":"2334:7:2","nodeType":"VariableDeclaration","scope":716,"src":"2326:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":708,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":711,"mutability":"mutable","name":"value","nameLocation":"2351:5:2","nodeType":"VariableDeclaration","scope":716,"src":"2343:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":710,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:2"},"returnParameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":716,"src":"2376:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":713,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:2"},"scope":729,"src":"2309:73:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":717,"nodeType":"StructuredDocumentation","src":"2388:297:2","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":728,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:2","nodeType":"FunctionDefinition","parameters":{"id":724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":719,"mutability":"mutable","name":"from","nameLocation":"2720:4:2","nodeType":"VariableDeclaration","scope":728,"src":"2712:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":718,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":721,"mutability":"mutable","name":"to","nameLocation":"2734:2:2","nodeType":"VariableDeclaration","scope":728,"src":"2726:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":720,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":723,"mutability":"mutable","name":"value","nameLocation":"2746:5:2","nodeType":"VariableDeclaration","scope":728,"src":"2738:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":722,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:2"},"returnParameters":{"id":727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":726,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":728,"src":"2771:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":725,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:2"},"scope":729,"src":"2690:87:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":730,"src":"204:2575:2","usedErrors":[],"usedEvents":[663,672]}],"src":"106:2674:2"},"id":2},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[729],"IERC20Metadata":[755]},"id":756,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":731,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:3"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":733,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":756,"sourceUnit":730,"src":"151:37:3","symbolAliases":[{"foreign":{"id":732,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"159:6:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":735,"name":"IERC20","nameLocations":["306:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":729,"src":"306:6:3"},"id":736,"nodeType":"InheritanceSpecifier","src":"306:6:3"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":734,"nodeType":"StructuredDocumentation","src":"190:87:3","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":755,"linearizedBaseContracts":[755,729],"name":"IERC20Metadata","nameLocation":"288:14:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"319:54:3","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":742,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:3","nodeType":"FunctionDefinition","parameters":{"id":738,"nodeType":"ParameterList","parameters":[],"src":"391:2:3"},"returnParameters":{"id":741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":740,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":742,"src":"417:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":739,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:3"},"scope":755,"src":"378:54:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":743,"nodeType":"StructuredDocumentation","src":"438:56:3","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":748,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:3","nodeType":"FunctionDefinition","parameters":{"id":744,"nodeType":"ParameterList","parameters":[],"src":"514:2:3"},"returnParameters":{"id":747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":748,"src":"540:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":745,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:3"},"scope":755,"src":"499:56:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":749,"nodeType":"StructuredDocumentation","src":"561:65:3","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":754,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:3","nodeType":"FunctionDefinition","parameters":{"id":750,"nodeType":"ParameterList","parameters":[],"src":"648:2:3"},"returnParameters":{"id":753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":754,"src":"674:5:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":751,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:3"},"scope":755,"src":"631:50:3","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":756,"src":"278:405:3","usedErrors":[],"usedEvents":[663,672]}],"src":"125:559:3"},"id":3},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[785]},"id":786,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":757,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:4"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":758,"nodeType":"StructuredDocumentation","src":"127:496:4","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":785,"linearizedBaseContracts":[785],"name":"Context","nameLocation":"642:7:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":766,"nodeType":"Block","src":"718:34:4","statements":[{"expression":{"expression":{"id":763,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:4","memberName":"sender","nodeType":"MemberAccess","src":"735:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":762,"id":765,"nodeType":"Return","src":"728:17:4"}]},"id":767,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:4","nodeType":"FunctionDefinition","parameters":{"id":759,"nodeType":"ParameterList","parameters":[],"src":"675:2:4"},"returnParameters":{"id":762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":761,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":767,"src":"709:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":760,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:4"},"scope":785,"src":"656:96:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":775,"nodeType":"Block","src":"825:32:4","statements":[{"expression":{"expression":{"id":772,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:4","memberName":"data","nodeType":"MemberAccess","src":"842:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":771,"id":774,"nodeType":"Return","src":"835:15:4"}]},"id":776,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:4","nodeType":"FunctionDefinition","parameters":{"id":768,"nodeType":"ParameterList","parameters":[],"src":"775:2:4"},"returnParameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":776,"src":"809:14:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":769,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:4"},"scope":785,"src":"758:99:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":783,"nodeType":"Block","src":"935:25:4","statements":[{"expression":{"hexValue":"30","id":781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":780,"id":782,"nodeType":"Return","src":"945:8:4"}]},"id":784,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:4","nodeType":"FunctionDefinition","parameters":{"id":777,"nodeType":"ParameterList","parameters":[],"src":"892:2:4"},"returnParameters":{"id":780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":784,"src":"926:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":778,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:4"},"scope":785,"src":"863:97:4","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":786,"src":"624:338:4","usedErrors":[],"usedEvents":[]}],"src":"101:862:4"},"id":4},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[854]},"id":855,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":787,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:5"},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":788,"nodeType":"StructuredDocumentation","src":"135:894:5","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n consider using {ReentrancyGuardTransient} instead.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."},"fullyImplemented":true,"id":854,"linearizedBaseContracts":[854],"name":"ReentrancyGuard","nameLocation":"1048:15:5","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":791,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"1843:11:5","nodeType":"VariableDeclaration","scope":854,"src":"1818:40:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":789,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1857:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":794,"mutability":"constant","name":"ENTERED","nameLocation":"1889:7:5","nodeType":"VariableDeclaration","scope":854,"src":"1864:36:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":792,"name":"uint256","nodeType":"ElementaryTypeName","src":"1864:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1899:1:5","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":796,"mutability":"mutable","name":"_status","nameLocation":"1923:7:5","nodeType":"VariableDeclaration","scope":854,"src":"1907:23:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"1907:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"documentation":{"id":797,"nodeType":"StructuredDocumentation","src":"1937:52:5","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":799,"name":"ReentrancyGuardReentrantCall","nameLocation":"2000:28:5","nodeType":"ErrorDefinition","parameters":{"id":798,"nodeType":"ParameterList","parameters":[],"src":"2028:2:5"},"src":"1994:37:5"},{"body":{"id":806,"nodeType":"Block","src":"2051:38:5","statements":[{"expression":{"id":804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":802,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2061:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":803,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"2071:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2061:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":805,"nodeType":"ExpressionStatement","src":"2061:21:5"}]},"id":807,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":800,"nodeType":"ParameterList","parameters":[],"src":"2048:2:5"},"returnParameters":{"id":801,"nodeType":"ParameterList","parameters":[],"src":"2051:0:5"},"scope":854,"src":"2037:52:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":817,"nodeType":"Block","src":"2490:79:5","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":810,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"2500:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":812,"nodeType":"ExpressionStatement","src":"2500:21:5"},{"id":813,"nodeType":"PlaceholderStatement","src":"2531:1:5"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":814,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":842,"src":"2542:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2542:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":816,"nodeType":"ExpressionStatement","src":"2542:20:5"}]},"documentation":{"id":808,"nodeType":"StructuredDocumentation","src":"2095:366:5","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":818,"name":"nonReentrant","nameLocation":"2475:12:5","nodeType":"ModifierDefinition","parameters":{"id":809,"nodeType":"ParameterList","parameters":[],"src":"2487:2:5"},"src":"2466:103:5","virtual":false,"visibility":"internal"},{"body":{"id":833,"nodeType":"Block","src":"2614:268:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":821,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2702:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":822,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"2713:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2702:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":828,"nodeType":"IfStatement","src":"2698:86:5","trueBody":{"id":827,"nodeType":"Block","src":"2722:62:5","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":824,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":799,"src":"2743:28:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2743:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":826,"nodeType":"RevertStatement","src":"2736:37:5"}]}},{"expression":{"id":831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":829,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2858:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":830,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"2868:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2858:17:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":832,"nodeType":"ExpressionStatement","src":"2858:17:5"}]},"id":834,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"2584:19:5","nodeType":"FunctionDefinition","parameters":{"id":819,"nodeType":"ParameterList","parameters":[],"src":"2603:2:5"},"returnParameters":{"id":820,"nodeType":"ParameterList","parameters":[],"src":"2614:0:5"},"scope":854,"src":"2575:307:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":841,"nodeType":"Block","src":"2926:170:5","statements":[{"expression":{"id":839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":837,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"3068:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":838,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"3078:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3068:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":840,"nodeType":"ExpressionStatement","src":"3068:21:5"}]},"id":842,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"2897:18:5","nodeType":"FunctionDefinition","parameters":{"id":835,"nodeType":"ParameterList","parameters":[],"src":"2915:2:5"},"returnParameters":{"id":836,"nodeType":"ParameterList","parameters":[],"src":"2926:0:5"},"scope":854,"src":"2888:208:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":852,"nodeType":"Block","src":"3339:42:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":848,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"3356:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":849,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"3367:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3356:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":847,"id":851,"nodeType":"Return","src":"3349:25:5"}]},"documentation":{"id":843,"nodeType":"StructuredDocumentation","src":"3102:168:5","text":" @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n `nonReentrant` function in the call stack."},"id":853,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"3284:23:5","nodeType":"FunctionDefinition","parameters":{"id":844,"nodeType":"ParameterList","parameters":[],"src":"3307:2:5"},"returnParameters":{"id":847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":846,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":853,"src":"3333:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":845,"name":"bool","nodeType":"ElementaryTypeName","src":"3333:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3332:6:5"},"scope":854,"src":"3275:106:5","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":855,"src":"1030:2353:5","usedErrors":[799],"usedEvents":[]}],"src":"109:3275:5"},"id":5},"contracts/DLE.sol":{"ast":{"absolutePath":"contracts/DLE.sol","exportedSymbols":{"Context":[785],"DLE":[2617],"ERC20":[651],"IERC20":[729],"IERC20Errors":[41],"IERC20Metadata":[755],"ReentrancyGuard":[854]},"id":2618,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":856,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":857,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2618,"sourceUnit":652,"src":"58:55:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","file":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","id":858,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2618,"sourceUnit":855,"src":"114:59:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":860,"name":"ERC20","nameLocations":["375:5:6"],"nodeType":"IdentifierPath","referencedDeclaration":651,"src":"375:5:6"},"id":861,"nodeType":"InheritanceSpecifier","src":"375:5:6"},{"baseName":{"id":862,"name":"ReentrancyGuard","nameLocations":["382:15:6"],"nodeType":"IdentifierPath","referencedDeclaration":854,"src":"382:15:6"},"id":863,"nodeType":"InheritanceSpecifier","src":"382:15:6"}],"canonicalName":"DLE","contractDependencies":[],"contractKind":"contract","documentation":{"id":859,"nodeType":"StructuredDocumentation","src":"175:183:6","text":" @title DLE (Digital Legal Entity)\n @dev Основной контракт DLE с модульной архитектурой и мульти-чейн поддержкой"},"fullyImplemented":true,"id":2617,"linearizedBaseContracts":[2617,854,651,41,755,729,785],"name":"DLE","nameLocation":"368:3:6","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DLE.DLEInfo","id":885,"members":[{"constant":false,"id":865,"mutability":"mutable","name":"name","nameLocation":"436:4:6","nodeType":"VariableDeclaration","scope":885,"src":"429:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":864,"name":"string","nodeType":"ElementaryTypeName","src":"429:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":867,"mutability":"mutable","name":"symbol","nameLocation":"457:6:6","nodeType":"VariableDeclaration","scope":885,"src":"450:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":866,"name":"string","nodeType":"ElementaryTypeName","src":"450:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":869,"mutability":"mutable","name":"location","nameLocation":"480:8:6","nodeType":"VariableDeclaration","scope":885,"src":"473:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":868,"name":"string","nodeType":"ElementaryTypeName","src":"473:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":871,"mutability":"mutable","name":"coordinates","nameLocation":"505:11:6","nodeType":"VariableDeclaration","scope":885,"src":"498:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":870,"name":"string","nodeType":"ElementaryTypeName","src":"498:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"jurisdiction","nameLocation":"534:12:6","nodeType":"VariableDeclaration","scope":885,"src":"526:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":872,"name":"uint256","nodeType":"ElementaryTypeName","src":"526:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":875,"mutability":"mutable","name":"oktmo","nameLocation":"564:5:6","nodeType":"VariableDeclaration","scope":885,"src":"556:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":874,"name":"uint256","nodeType":"ElementaryTypeName","src":"556:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":878,"mutability":"mutable","name":"okvedCodes","nameLocation":"588:10:6","nodeType":"VariableDeclaration","scope":885,"src":"579:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":876,"name":"string","nodeType":"ElementaryTypeName","src":"579:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":877,"nodeType":"ArrayTypeName","src":"579:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":880,"mutability":"mutable","name":"kpp","nameLocation":"616:3:6","nodeType":"VariableDeclaration","scope":885,"src":"608:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":879,"name":"uint256","nodeType":"ElementaryTypeName","src":"608:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":882,"mutability":"mutable","name":"creationTimestamp","nameLocation":"637:17:6","nodeType":"VariableDeclaration","scope":885,"src":"629:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":881,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":884,"mutability":"mutable","name":"isActive","nameLocation":"669:8:6","nodeType":"VariableDeclaration","scope":885,"src":"664:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":883,"name":"bool","nodeType":"ElementaryTypeName","src":"664:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"DLEInfo","nameLocation":"411:7:6","nodeType":"StructDefinition","scope":2617,"src":"404:280:6","visibility":"public"},{"canonicalName":"DLE.DLEConfig","id":914,"members":[{"constant":false,"id":887,"mutability":"mutable","name":"name","nameLocation":"724:4:6","nodeType":"VariableDeclaration","scope":914,"src":"717:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":886,"name":"string","nodeType":"ElementaryTypeName","src":"717:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":889,"mutability":"mutable","name":"symbol","nameLocation":"745:6:6","nodeType":"VariableDeclaration","scope":914,"src":"738:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":888,"name":"string","nodeType":"ElementaryTypeName","src":"738:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":891,"mutability":"mutable","name":"location","nameLocation":"768:8:6","nodeType":"VariableDeclaration","scope":914,"src":"761:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":890,"name":"string","nodeType":"ElementaryTypeName","src":"761:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":893,"mutability":"mutable","name":"coordinates","nameLocation":"793:11:6","nodeType":"VariableDeclaration","scope":914,"src":"786:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":892,"name":"string","nodeType":"ElementaryTypeName","src":"786:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":895,"mutability":"mutable","name":"jurisdiction","nameLocation":"822:12:6","nodeType":"VariableDeclaration","scope":914,"src":"814:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":894,"name":"uint256","nodeType":"ElementaryTypeName","src":"814:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":897,"mutability":"mutable","name":"oktmo","nameLocation":"852:5:6","nodeType":"VariableDeclaration","scope":914,"src":"844:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":896,"name":"uint256","nodeType":"ElementaryTypeName","src":"844:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":900,"mutability":"mutable","name":"okvedCodes","nameLocation":"876:10:6","nodeType":"VariableDeclaration","scope":914,"src":"867:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":898,"name":"string","nodeType":"ElementaryTypeName","src":"867:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":899,"nodeType":"ArrayTypeName","src":"867:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":902,"mutability":"mutable","name":"kpp","nameLocation":"904:3:6","nodeType":"VariableDeclaration","scope":914,"src":"896:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":901,"name":"uint256","nodeType":"ElementaryTypeName","src":"896:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":904,"mutability":"mutable","name":"quorumPercentage","nameLocation":"925:16:6","nodeType":"VariableDeclaration","scope":914,"src":"917:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":907,"mutability":"mutable","name":"initialPartners","nameLocation":"961:15:6","nodeType":"VariableDeclaration","scope":914,"src":"951:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":905,"name":"address","nodeType":"ElementaryTypeName","src":"951:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":906,"nodeType":"ArrayTypeName","src":"951:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":910,"mutability":"mutable","name":"initialAmounts","nameLocation":"996:14:6","nodeType":"VariableDeclaration","scope":914,"src":"986:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":908,"name":"uint256","nodeType":"ElementaryTypeName","src":"986:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":909,"nodeType":"ArrayTypeName","src":"986:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":913,"mutability":"mutable","name":"supportedChainIds","nameLocation":"1030:17:6","nodeType":"VariableDeclaration","scope":914,"src":"1020:27:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":911,"name":"uint256","nodeType":"ElementaryTypeName","src":"1020:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":912,"nodeType":"ArrayTypeName","src":"1020:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"name":"DLEConfig","nameLocation":"697:9:6","nodeType":"StructDefinition","scope":2617,"src":"690:411:6","visibility":"public"},{"canonicalName":"DLE.Proposal","id":939,"members":[{"constant":false,"id":916,"mutability":"mutable","name":"id","nameLocation":"1141:2:6","nodeType":"VariableDeclaration","scope":939,"src":"1133:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":915,"name":"uint256","nodeType":"ElementaryTypeName","src":"1133:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":918,"mutability":"mutable","name":"description","nameLocation":"1160:11:6","nodeType":"VariableDeclaration","scope":939,"src":"1153:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":917,"name":"string","nodeType":"ElementaryTypeName","src":"1153:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":920,"mutability":"mutable","name":"forVotes","nameLocation":"1189:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1181:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":919,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":922,"mutability":"mutable","name":"againstVotes","nameLocation":"1215:12:6","nodeType":"VariableDeclaration","scope":939,"src":"1207:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":921,"name":"uint256","nodeType":"ElementaryTypeName","src":"1207:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":924,"mutability":"mutable","name":"executed","nameLocation":"1242:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1237:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":923,"name":"bool","nodeType":"ElementaryTypeName","src":"1237:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":926,"mutability":"mutable","name":"deadline","nameLocation":"1268:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1260:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":925,"name":"uint256","nodeType":"ElementaryTypeName","src":"1260:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":928,"mutability":"mutable","name":"initiator","nameLocation":"1294:9:6","nodeType":"VariableDeclaration","scope":939,"src":"1286:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":927,"name":"address","nodeType":"ElementaryTypeName","src":"1286:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":930,"mutability":"mutable","name":"operation","nameLocation":"1319:9:6","nodeType":"VariableDeclaration","scope":939,"src":"1313:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":929,"name":"bytes","nodeType":"ElementaryTypeName","src":"1313:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"hasVoted","nameLocation":"1411:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1386:33:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":933,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":931,"name":"address","nodeType":"ElementaryTypeName","src":"1394:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1386:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":932,"name":"bool","nodeType":"ElementaryTypeName","src":"1405:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":938,"mutability":"mutable","name":"chainVoteSynced","nameLocation":"1454:15:6","nodeType":"VariableDeclaration","scope":939,"src":"1429:40:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":937,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":935,"name":"uint256","nodeType":"ElementaryTypeName","src":"1437:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1429:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":936,"name":"bool","nodeType":"ElementaryTypeName","src":"1448:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"Proposal","nameLocation":"1114:8:6","nodeType":"StructDefinition","scope":2617,"src":"1107:444:6","visibility":"public"},{"canonicalName":"DLE.MultiSigOperation","id":960,"members":[{"constant":false,"id":941,"mutability":"mutable","name":"operationHash","nameLocation":"1600:13:6","nodeType":"VariableDeclaration","scope":960,"src":"1592:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1592:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":943,"mutability":"mutable","name":"forSignatures","nameLocation":"1631:13:6","nodeType":"VariableDeclaration","scope":960,"src":"1623:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":942,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":945,"mutability":"mutable","name":"againstSignatures","nameLocation":"1662:17:6","nodeType":"VariableDeclaration","scope":960,"src":"1654:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":944,"name":"uint256","nodeType":"ElementaryTypeName","src":"1654:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":947,"mutability":"mutable","name":"executed","nameLocation":"1694:8:6","nodeType":"VariableDeclaration","scope":960,"src":"1689:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":946,"name":"bool","nodeType":"ElementaryTypeName","src":"1689:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":949,"mutability":"mutable","name":"deadline","nameLocation":"1720:8:6","nodeType":"VariableDeclaration","scope":960,"src":"1712:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":948,"name":"uint256","nodeType":"ElementaryTypeName","src":"1712:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":951,"mutability":"mutable","name":"initiator","nameLocation":"1746:9:6","nodeType":"VariableDeclaration","scope":960,"src":"1738:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":950,"name":"address","nodeType":"ElementaryTypeName","src":"1738:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":955,"mutability":"mutable","name":"hasSigned","nameLocation":"1790:9:6","nodeType":"VariableDeclaration","scope":960,"src":"1765:34:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":954,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":952,"name":"address","nodeType":"ElementaryTypeName","src":"1773:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1765:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":953,"name":"bool","nodeType":"ElementaryTypeName","src":"1784:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":959,"mutability":"mutable","name":"chainSignSynced","nameLocation":"1834:15:6","nodeType":"VariableDeclaration","scope":960,"src":"1809:40:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":958,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"1817:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1809:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":957,"name":"bool","nodeType":"ElementaryTypeName","src":"1828:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"MultiSigOperation","nameLocation":"1564:17:6","nodeType":"StructDefinition","scope":2617,"src":"1557:376:6","visibility":"public"},{"constant":false,"functionSelector":"f2c26a47","id":963,"mutability":"mutable","name":"dleInfo","nameLocation":"1997:7:6","nodeType":"VariableDeclaration","scope":2617,"src":"1982:22:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo"},"typeName":{"id":962,"nodeType":"UserDefinedTypeName","pathNode":{"id":961,"name":"DLEInfo","nameLocations":["1982:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":885,"src":"1982:7:6"},"referencedDeclaration":885,"src":"1982:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"public"},{"constant":false,"functionSelector":"4fa76ec9","id":965,"mutability":"mutable","name":"quorumPercentage","nameLocation":"2025:16:6","nodeType":"VariableDeclaration","scope":2617,"src":"2010:31:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":964,"name":"uint256","nodeType":"ElementaryTypeName","src":"2010:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0c0512e9","id":967,"mutability":"mutable","name":"proposalCounter","nameLocation":"2062:15:6","nodeType":"VariableDeclaration","scope":2617,"src":"2047:30:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":966,"name":"uint256","nodeType":"ElementaryTypeName","src":"2047:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8c7b04c9","id":969,"mutability":"mutable","name":"multiSigCounter","nameLocation":"2098:15:6","nodeType":"VariableDeclaration","scope":2617,"src":"2083:30:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":968,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6cbadbfa","id":971,"mutability":"mutable","name":"currentChainId","nameLocation":"2134:14:6","nodeType":"VariableDeclaration","scope":2617,"src":"2119:29:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":970,"name":"uint256","nodeType":"ElementaryTypeName","src":"2119:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"b0b6cc1a","id":975,"mutability":"mutable","name":"modules","nameLocation":"2210:7:6","nodeType":"VariableDeclaration","scope":2617,"src":"2175:42:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"},"typeName":{"id":974,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":972,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2175:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":973,"name":"address","nodeType":"ElementaryTypeName","src":"2194:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"public"},{"constant":false,"functionSelector":"b3fe8bcb","id":979,"mutability":"mutable","name":"activeModules","nameLocation":"2255:13:6","nodeType":"VariableDeclaration","scope":2617,"src":"2223:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"},"typeName":{"id":978,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":976,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2231:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2223:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":977,"name":"bool","nodeType":"ElementaryTypeName","src":"2242:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"013cf08b","id":984,"mutability":"mutable","name":"proposals","nameLocation":"2371:9:6","nodeType":"VariableDeclaration","scope":2617,"src":"2335:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"typeName":{"id":983,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":980,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2335:28:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":982,"nodeType":"UserDefinedTypeName","pathNode":{"id":981,"name":"Proposal","nameLocations":["2354:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"2354:8:6"},"referencedDeclaration":939,"src":"2354:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"c51cab3a","id":989,"mutability":"mutable","name":"multiSigOperations","nameLocation":"2431:18:6","nodeType":"VariableDeclaration","scope":2617,"src":"2386:63:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation)"},"typeName":{"id":988,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":985,"name":"uint256","nodeType":"ElementaryTypeName","src":"2394:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2386:37:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":987,"nodeType":"UserDefinedTypeName","pathNode":{"id":986,"name":"MultiSigOperation","nameLocations":["2405:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"2405:17:6"},"referencedDeclaration":960,"src":"2405:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}}},"visibility":"public"},{"constant":false,"functionSelector":"548d496f","id":993,"mutability":"mutable","name":"supportedChains","nameLocation":"2517:15:6","nodeType":"VariableDeclaration","scope":2617,"src":"2485:47:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":992,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":990,"name":"uint256","nodeType":"ElementaryTypeName","src":"2493:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2485:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":991,"name":"bool","nodeType":"ElementaryTypeName","src":"2504:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"3b60288a","id":997,"mutability":"mutable","name":"executedProposals","nameLocation":"2570:17:6","nodeType":"VariableDeclaration","scope":2617,"src":"2538:49:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":996,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":994,"name":"uint256","nodeType":"ElementaryTypeName","src":"2546:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2538:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":995,"name":"bool","nodeType":"ElementaryTypeName","src":"2557:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"af89d2c4","id":1001,"mutability":"mutable","name":"executedMultiSig","nameLocation":"2701:16:6","nodeType":"VariableDeclaration","scope":2617,"src":"2669:48:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":1000,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":998,"name":"uint256","nodeType":"ElementaryTypeName","src":"2677:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2669:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":999,"name":"bool","nodeType":"ElementaryTypeName","src":"2688:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"anonymous":false,"eventSelector":"11b248463a1620b36a975da8f250009f56fb5dd0e9d5027a90a834d0ee84d6f6","id":1025,"name":"DLEInitialized","nameLocation":"2834:14:6","nodeType":"EventDefinition","parameters":{"id":1024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1003,"indexed":false,"mutability":"mutable","name":"name","nameLocation":"2865:4:6","nodeType":"VariableDeclaration","scope":1025,"src":"2858:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1002,"name":"string","nodeType":"ElementaryTypeName","src":"2858:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1005,"indexed":false,"mutability":"mutable","name":"symbol","nameLocation":"2886:6:6","nodeType":"VariableDeclaration","scope":1025,"src":"2879:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1004,"name":"string","nodeType":"ElementaryTypeName","src":"2879:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1007,"indexed":false,"mutability":"mutable","name":"location","nameLocation":"2909:8:6","nodeType":"VariableDeclaration","scope":1025,"src":"2902:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1006,"name":"string","nodeType":"ElementaryTypeName","src":"2902:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1009,"indexed":false,"mutability":"mutable","name":"coordinates","nameLocation":"2934:11:6","nodeType":"VariableDeclaration","scope":1025,"src":"2927:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1008,"name":"string","nodeType":"ElementaryTypeName","src":"2927:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1011,"indexed":false,"mutability":"mutable","name":"jurisdiction","nameLocation":"2963:12:6","nodeType":"VariableDeclaration","scope":1025,"src":"2955:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1010,"name":"uint256","nodeType":"ElementaryTypeName","src":"2955:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1013,"indexed":false,"mutability":"mutable","name":"oktmo","nameLocation":"2993:5:6","nodeType":"VariableDeclaration","scope":1025,"src":"2985:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1012,"name":"uint256","nodeType":"ElementaryTypeName","src":"2985:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1016,"indexed":false,"mutability":"mutable","name":"okvedCodes","nameLocation":"3017:10:6","nodeType":"VariableDeclaration","scope":1025,"src":"3008:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":1014,"name":"string","nodeType":"ElementaryTypeName","src":"3008:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":1015,"nodeType":"ArrayTypeName","src":"3008:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":1018,"indexed":false,"mutability":"mutable","name":"kpp","nameLocation":"3045:3:6","nodeType":"VariableDeclaration","scope":1025,"src":"3037:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1017,"name":"uint256","nodeType":"ElementaryTypeName","src":"3037:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1020,"indexed":false,"mutability":"mutable","name":"tokenAddress","nameLocation":"3066:12:6","nodeType":"VariableDeclaration","scope":1025,"src":"3058:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"3058:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1023,"indexed":false,"mutability":"mutable","name":"supportedChainIds","nameLocation":"3098:17:6","nodeType":"VariableDeclaration","scope":1025,"src":"3088:27:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1021,"name":"uint256","nodeType":"ElementaryTypeName","src":"3088:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1022,"nodeType":"ArrayTypeName","src":"3088:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2848:273:6"},"src":"2828:294:6"},{"anonymous":false,"eventSelector":"f9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a5","id":1033,"name":"InitialTokensDistributed","nameLocation":"3133:24:6","nodeType":"EventDefinition","parameters":{"id":1032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1028,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"3168:8:6","nodeType":"VariableDeclaration","scope":1033,"src":"3158:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1026,"name":"address","nodeType":"ElementaryTypeName","src":"3158:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1027,"nodeType":"ArrayTypeName","src":"3158:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1031,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"3188:7:6","nodeType":"VariableDeclaration","scope":1033,"src":"3178:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1029,"name":"uint256","nodeType":"ElementaryTypeName","src":"3178:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1030,"nodeType":"ArrayTypeName","src":"3178:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"3157:39:6"},"src":"3127:70:6"},{"anonymous":false,"eventSelector":"7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63","id":1041,"name":"ProposalCreated","nameLocation":"3208:15:6","nodeType":"EventDefinition","parameters":{"id":1040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1035,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3232:10:6","nodeType":"VariableDeclaration","scope":1041,"src":"3224:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1034,"name":"uint256","nodeType":"ElementaryTypeName","src":"3224:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1037,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"3252:9:6","nodeType":"VariableDeclaration","scope":1041,"src":"3244:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1036,"name":"address","nodeType":"ElementaryTypeName","src":"3244:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1039,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3270:11:6","nodeType":"VariableDeclaration","scope":1041,"src":"3263:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1038,"name":"string","nodeType":"ElementaryTypeName","src":"3263:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3223:59:6"},"src":"3202:81:6"},{"anonymous":false,"eventSelector":"78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a9","id":1051,"name":"ProposalVoted","nameLocation":"3294:13:6","nodeType":"EventDefinition","parameters":{"id":1050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1043,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3316:10:6","nodeType":"VariableDeclaration","scope":1051,"src":"3308:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1042,"name":"uint256","nodeType":"ElementaryTypeName","src":"3308:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1045,"indexed":false,"mutability":"mutable","name":"voter","nameLocation":"3336:5:6","nodeType":"VariableDeclaration","scope":1051,"src":"3328:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1044,"name":"address","nodeType":"ElementaryTypeName","src":"3328:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1047,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"3348:7:6","nodeType":"VariableDeclaration","scope":1051,"src":"3343:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1046,"name":"bool","nodeType":"ElementaryTypeName","src":"3343:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1049,"indexed":false,"mutability":"mutable","name":"votingPower","nameLocation":"3365:11:6","nodeType":"VariableDeclaration","scope":1051,"src":"3357:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1048,"name":"uint256","nodeType":"ElementaryTypeName","src":"3357:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3307:70:6"},"src":"3288:90:6"},{"anonymous":false,"eventSelector":"badbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2","id":1057,"name":"ProposalExecuted","nameLocation":"3389:16:6","nodeType":"EventDefinition","parameters":{"id":1056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1053,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3414:10:6","nodeType":"VariableDeclaration","scope":1057,"src":"3406:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1052,"name":"uint256","nodeType":"ElementaryTypeName","src":"3406:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1055,"indexed":false,"mutability":"mutable","name":"operation","nameLocation":"3432:9:6","nodeType":"VariableDeclaration","scope":1057,"src":"3426:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1054,"name":"bytes","nodeType":"ElementaryTypeName","src":"3426:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3405:37:6"},"src":"3383:60:6"},{"anonymous":false,"eventSelector":"8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f0","id":1065,"name":"MultiSigOperationCreated","nameLocation":"3454:24:6","nodeType":"EventDefinition","parameters":{"id":1064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1059,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3487:11:6","nodeType":"VariableDeclaration","scope":1065,"src":"3479:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1058,"name":"uint256","nodeType":"ElementaryTypeName","src":"3479:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1061,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"3508:9:6","nodeType":"VariableDeclaration","scope":1065,"src":"3500:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1060,"name":"address","nodeType":"ElementaryTypeName","src":"3500:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1063,"indexed":false,"mutability":"mutable","name":"operationHash","nameLocation":"3527:13:6","nodeType":"VariableDeclaration","scope":1065,"src":"3519:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1062,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3519:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3478:63:6"},"src":"3448:94:6"},{"anonymous":false,"eventSelector":"78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc","id":1075,"name":"MultiSigSigned","nameLocation":"3553:14:6","nodeType":"EventDefinition","parameters":{"id":1074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1067,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3576:11:6","nodeType":"VariableDeclaration","scope":1075,"src":"3568:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1066,"name":"uint256","nodeType":"ElementaryTypeName","src":"3568:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1069,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"3597:6:6","nodeType":"VariableDeclaration","scope":1075,"src":"3589:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1068,"name":"address","nodeType":"ElementaryTypeName","src":"3589:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1071,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"3610:7:6","nodeType":"VariableDeclaration","scope":1075,"src":"3605:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1070,"name":"bool","nodeType":"ElementaryTypeName","src":"3605:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1073,"indexed":false,"mutability":"mutable","name":"signaturePower","nameLocation":"3627:14:6","nodeType":"VariableDeclaration","scope":1075,"src":"3619:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1072,"name":"uint256","nodeType":"ElementaryTypeName","src":"3619:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3567:75:6"},"src":"3547:96:6"},{"anonymous":false,"eventSelector":"64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5","id":1081,"name":"MultiSigExecuted","nameLocation":"3654:16:6","nodeType":"EventDefinition","parameters":{"id":1080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1077,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3679:11:6","nodeType":"VariableDeclaration","scope":1081,"src":"3671:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1076,"name":"uint256","nodeType":"ElementaryTypeName","src":"3671:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1079,"indexed":false,"mutability":"mutable","name":"operationHash","nameLocation":"3700:13:6","nodeType":"VariableDeclaration","scope":1081,"src":"3692:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1078,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3692:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3670:44:6"},"src":"3648:67:6"},{"anonymous":false,"eventSelector":"f14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d72722719","id":1087,"name":"ModuleAdded","nameLocation":"3726:11:6","nodeType":"EventDefinition","parameters":{"id":1086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1083,"indexed":false,"mutability":"mutable","name":"moduleId","nameLocation":"3746:8:6","nodeType":"VariableDeclaration","scope":1087,"src":"3738:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1082,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3738:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1085,"indexed":false,"mutability":"mutable","name":"moduleAddress","nameLocation":"3764:13:6","nodeType":"VariableDeclaration","scope":1087,"src":"3756:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1084,"name":"address","nodeType":"ElementaryTypeName","src":"3756:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3737:41:6"},"src":"3720:59:6"},{"anonymous":false,"eventSelector":"4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba853","id":1091,"name":"ModuleRemoved","nameLocation":"3790:13:6","nodeType":"EventDefinition","parameters":{"id":1090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"indexed":false,"mutability":"mutable","name":"moduleId","nameLocation":"3812:8:6","nodeType":"VariableDeclaration","scope":1091,"src":"3804:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1088,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3804:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3803:18:6"},"src":"3784:38:6"},{"anonymous":false,"eventSelector":"42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313","id":1099,"name":"CrossChainExecutionSync","nameLocation":"3833:23:6","nodeType":"EventDefinition","parameters":{"id":1098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1093,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3865:10:6","nodeType":"VariableDeclaration","scope":1099,"src":"3857:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1092,"name":"uint256","nodeType":"ElementaryTypeName","src":"3857:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1095,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"3885:11:6","nodeType":"VariableDeclaration","scope":1099,"src":"3877:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1094,"name":"uint256","nodeType":"ElementaryTypeName","src":"3877:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1097,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"3906:9:6","nodeType":"VariableDeclaration","scope":1099,"src":"3898:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1096,"name":"uint256","nodeType":"ElementaryTypeName","src":"3898:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3856:60:6"},"src":"3827:90:6"},{"anonymous":false,"eventSelector":"ca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb","id":1107,"name":"CrossChainVoteSync","nameLocation":"3928:18:6","nodeType":"EventDefinition","parameters":{"id":1106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1101,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3955:10:6","nodeType":"VariableDeclaration","scope":1107,"src":"3947:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1100,"name":"uint256","nodeType":"ElementaryTypeName","src":"3947:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1103,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"3975:11:6","nodeType":"VariableDeclaration","scope":1107,"src":"3967:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1102,"name":"uint256","nodeType":"ElementaryTypeName","src":"3967:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1105,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"3996:9:6","nodeType":"VariableDeclaration","scope":1107,"src":"3988:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1104,"name":"uint256","nodeType":"ElementaryTypeName","src":"3988:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3946:60:6"},"src":"3922:85:6"},{"anonymous":false,"eventSelector":"e379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe5","id":1115,"name":"CrossChainMultiSigSync","nameLocation":"4018:22:6","nodeType":"EventDefinition","parameters":{"id":1114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1109,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"4049:11:6","nodeType":"VariableDeclaration","scope":1115,"src":"4041:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1108,"name":"uint256","nodeType":"ElementaryTypeName","src":"4041:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1111,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"4070:11:6","nodeType":"VariableDeclaration","scope":1115,"src":"4062:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1110,"name":"uint256","nodeType":"ElementaryTypeName","src":"4062:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1113,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"4091:9:6","nodeType":"VariableDeclaration","scope":1115,"src":"4083:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1112,"name":"uint256","nodeType":"ElementaryTypeName","src":"4083:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4040:61:6"},"src":"4012:90:6"},{"body":{"id":1285,"nodeType":"Block","src":"4226:1753:6","statements":[{"expression":{"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1129,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"4236:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1131,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4274:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1132,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4281:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"4274:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1133,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4307:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1134,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4314:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"4307:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1135,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4344:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4351:8:6","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":891,"src":"4344:15:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1137,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4386:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4393:11:6","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":893,"src":"4386:18:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1139,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4432:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1140,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4439:12:6","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":895,"src":"4432:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1141,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4472:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1142,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4479:5:6","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":897,"src":"4472:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1143,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4510:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1144,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4517:10:6","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":900,"src":"4510:17:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":1145,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4546:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4553:3:6","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":902,"src":"4546:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1147,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4589:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4595:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"4589:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":1149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4628:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1130,"name":"DLEInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":885,"src":"4246:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DLEInfo_$885_storage_ptr_$","typeString":"type(struct DLE.DLEInfo storage pointer)"}},"id":1150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4268:4:6","4299:6:6","4334:8:6","4373:11:6","4418:12:6","4465:5:6","4498:10:6","4541:3:6","4570:17:6","4618:8:6"],"names":["name","symbol","location","coordinates","jurisdiction","oktmo","okvedCodes","kpp","creationTimestamp","isActive"],"nodeType":"FunctionCall","src":"4246:397:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_memory_ptr","typeString":"struct DLE.DLEInfo memory"}},"src":"4236:407:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"id":1152,"nodeType":"ExpressionStatement","src":"4236:407:6"},{"expression":{"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1153,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"4662:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1154,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4681:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4688:16:6","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":904,"src":"4681:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4662:42:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1157,"nodeType":"ExpressionStatement","src":"4662:42:6"},{"expression":{"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1158,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"4714:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1159,"name":"_currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"4731:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4714:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1161,"nodeType":"ExpressionStatement","src":"4714:32:6"},{"body":{"id":1183,"nodeType":"Block","src":"4897:76:6","statements":[{"expression":{"id":1181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1174,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"4911:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1179,"indexExpression":{"baseExpression":{"expression":{"id":1175,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4927:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1176,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4934:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"4927:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1178,"indexExpression":{"id":1177,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4952:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4927:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4911:44:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4958:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4911:51:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1182,"nodeType":"ExpressionStatement","src":"4911:51:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1166,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4855:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":1167,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4859:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4866:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"4859:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4884:6:6","memberName":"length","nodeType":"MemberAccess","src":"4859:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4855:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1184,"initializationExpression":{"assignments":[1163],"declarations":[{"constant":false,"id":1163,"mutability":"mutable","name":"i","nameLocation":"4848:1:6","nodeType":"VariableDeclaration","scope":1184,"src":"4840:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1162,"name":"uint256","nodeType":"ElementaryTypeName","src":"4840:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1165,"initialValue":{"hexValue":"30","id":1164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4852:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4840:13:6"},"loopExpression":{"expression":{"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4892:3:6","subExpression":{"id":1171,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4892:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1173,"nodeType":"ExpressionStatement","src":"4892:3:6"},"nodeType":"ForStatement","src":"4835:138:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1186,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5078:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5085:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5078:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5101:6:6","memberName":"length","nodeType":"MemberAccess","src":"5078:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":1189,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5111:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1190,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5118:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5111:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5133:6:6","memberName":"length","nodeType":"MemberAccess","src":"5111:28:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5078:61:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":1193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5141:24:6","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":1185,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5070:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:96:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1195,"nodeType":"ExpressionStatement","src":"5070:96:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1197,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5184:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1198,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5191:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5184:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5207:6:6","memberName":"length","nodeType":"MemberAccess","src":"5184:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5216:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5184:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20696e697469616c20706172746e657273","id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5219:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""},"value":"No initial partners"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""}],"id":1196,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5176:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5176:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1204,"nodeType":"ExpressionStatement","src":"5176:65:6"},{"body":{"id":1251,"nodeType":"Block","src":"5320:227:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":1218,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5342:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1219,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5349:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5342:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1221,"indexExpression":{"id":1220,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5365:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5342:25:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5379:1:6","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":1223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5371:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1222,"name":"address","nodeType":"ElementaryTypeName","src":"5371:7:6","typeDescriptions":{}}},"id":1225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5371:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5342:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":1227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5383:14:6","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":1217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5334:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5334:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1229,"nodeType":"ExpressionStatement","src":"5334:64:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":1231,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5420:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1232,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5427:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5420:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1234,"indexExpression":{"id":1233,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5442:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5420:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5447:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5420:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":1237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5450:13:6","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":1230,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5412:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5412:52:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1239,"nodeType":"ExpressionStatement","src":"5412:52:6"},{"expression":{"arguments":[{"baseExpression":{"expression":{"id":1241,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5484:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5491:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5484:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1244,"indexExpression":{"id":1243,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5507:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5484:25:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"expression":{"id":1245,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5511:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1246,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5518:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5511:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1248,"indexExpression":{"id":1247,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5533:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5511:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1240,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":491,"src":"5478:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":1249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1250,"nodeType":"ExpressionStatement","src":"5478:58:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1209,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5280:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":1210,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5284:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1211,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5291:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5284:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5307:6:6","memberName":"length","nodeType":"MemberAccess","src":"5284:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5280:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1252,"initializationExpression":{"assignments":[1206],"declarations":[{"constant":false,"id":1206,"mutability":"mutable","name":"i","nameLocation":"5273:1:6","nodeType":"VariableDeclaration","scope":1252,"src":"5265:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1205,"name":"uint256","nodeType":"ElementaryTypeName","src":"5265:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1208,"initialValue":{"hexValue":"30","id":1207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5277:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"5265:13:6"},"loopExpression":{"expression":{"id":1215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5315:3:6","subExpression":{"id":1214,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5315:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1216,"nodeType":"ExpressionStatement","src":"5315:3:6"},"nodeType":"ForStatement","src":"5260:287:6"},{"eventCall":{"arguments":[{"expression":{"id":1254,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5595:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1255,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5602:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5595:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"expression":{"id":1256,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5619:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5626:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5619:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] 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"}],"id":1253,"name":"InitialTokensDistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1033,"src":"5570:24:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address[] memory,uint256[] memory)"}},"id":1258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5570:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1259,"nodeType":"EmitStatement","src":"5565:76:6"},{"eventCall":{"arguments":[{"expression":{"id":1261,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5684:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1262,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5691:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"5684:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1263,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5709:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5716:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"5709:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1265,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5736:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5743:8:6","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":891,"src":"5736:15:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1267,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5765:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5772:11:6","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":893,"src":"5765:18:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1269,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5797:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1270,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5804:12:6","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":895,"src":"5797:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1271,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5830:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1272,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5837:5:6","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":897,"src":"5830:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1273,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5856:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5863:10:6","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":900,"src":"5856:17:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":1275,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5887:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1276,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5894:3:6","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":902,"src":"5887:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1279,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5919:4:6","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$2617","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$2617","typeString":"contract DLE"}],"id":1278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5911:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1277,"name":"address","nodeType":"ElementaryTypeName","src":"5911:7:6","typeDescriptions":{}}},"id":1280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5911:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1281,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5938:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1282,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5945:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"5938:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":1260,"name":"DLEInitialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1025,"src":"5656:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (string memory,string memory,string memory,string memory,uint256,uint256,string memory[] memory,uint256,address,uint256[] memory)"}},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5656:316:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1284,"nodeType":"EmitStatement","src":"5651:321:6"}]},"id":1286,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":1123,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4198:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1124,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4205:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"4198:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1125,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4211:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4218:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"4211:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":1127,"kind":"baseConstructorSpecifier","modifierName":{"id":1122,"name":"ERC20","nameLocations":["4192:5:6"],"nodeType":"IdentifierPath","referencedDeclaration":651,"src":"4192:5:6"},"nodeType":"ModifierInvocation","src":"4192:33:6"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1118,"mutability":"mutable","name":"config","nameLocation":"4146:6:6","nodeType":"VariableDeclaration","scope":1286,"src":"4129:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig"},"typeName":{"id":1117,"nodeType":"UserDefinedTypeName","pathNode":{"id":1116,"name":"DLEConfig","nameLocations":["4129:9:6"],"nodeType":"IdentifierPath","referencedDeclaration":914,"src":"4129:9:6"},"referencedDeclaration":914,"src":"4129:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_storage_ptr","typeString":"struct DLE.DLEConfig"}},"visibility":"internal"},{"constant":false,"id":1120,"mutability":"mutable","name":"_currentChainId","nameLocation":"4170:15:6","nodeType":"VariableDeclaration","scope":1286,"src":"4162:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1119,"name":"uint256","nodeType":"ElementaryTypeName","src":"4162:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4119:72:6"},"returnParameters":{"id":1128,"nodeType":"ParameterList","parameters":[],"src":"4226:0:6"},"scope":2617,"src":"4108:1871:6","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1404,"nodeType":"Block","src":"6609:842:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1302,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6637:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6641:6:6","memberName":"sender","nodeType":"MemberAccess","src":"6637:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1301,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"6627:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6627:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6651:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6627:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f73616c","id":1307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6654:37:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""},"value":"Must hold tokens to create proposal"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""}],"id":1300,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6619:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6619:73:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1309,"nodeType":"ExpressionStatement","src":"6619:73:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1311,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1291,"src":"6710:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6722:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6710:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4475726174696f6e206d75737420626520706f736974697665","id":1314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6725:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""},"value":"Duration must be positive"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""}],"id":1310,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6702:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6702:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1316,"nodeType":"ExpressionStatement","src":"6702:51:6"},{"expression":{"arguments":[{"baseExpression":{"id":1318,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"6771:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1320,"indexExpression":{"id":1319,"name":"_governanceChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"6787:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6771:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6808:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1317,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6763:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6763:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1323,"nodeType":"ExpressionStatement","src":"6763:67:6"},{"expression":{"arguments":[{"arguments":[{"id":1326,"name":"_governanceChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"6869:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1325,"name":"checkChainConnection","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"6848:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":1327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6848:40:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420617661696c61626c65","id":1328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6890:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d761b3d00f67c3638fc7145121be7a34feb3cfe2982cb2e73645fa1389c9e513","typeString":"literal_string \"Chain not available\""},"value":"Chain not available"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d761b3d00f67c3638fc7145121be7a34feb3cfe2982cb2e73645fa1389c9e513","typeString":"literal_string \"Chain not available\""}],"id":1324,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6840:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6840:72:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1330,"nodeType":"ExpressionStatement","src":"6840:72:6"},{"assignments":[1332],"declarations":[{"constant":false,"id":1332,"mutability":"mutable","name":"proposalId","nameLocation":"6931:10:6","nodeType":"VariableDeclaration","scope":1404,"src":"6923:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1331,"name":"uint256","nodeType":"ElementaryTypeName","src":"6923:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1335,"initialValue":{"id":1334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"6944:17:6","subExpression":{"id":1333,"name":"proposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":967,"src":"6944:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6923:38:6"},{"assignments":[1338],"declarations":[{"constant":false,"id":1338,"mutability":"mutable","name":"proposal","nameLocation":"6988:8:6","nodeType":"VariableDeclaration","scope":1404,"src":"6971:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1337,"nodeType":"UserDefinedTypeName","pathNode":{"id":1336,"name":"Proposal","nameLocations":["6971:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"6971:8:6"},"referencedDeclaration":939,"src":"6971:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1342,"initialValue":{"baseExpression":{"id":1339,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"6999:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1341,"indexExpression":{"id":1340,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7009:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6999:21:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6971:49:6"},{"expression":{"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1343,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7039:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7048:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"7039:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1346,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7053:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7039:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1348,"nodeType":"ExpressionStatement","src":"7039:24:6"},{"expression":{"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1349,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7073:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7082:11:6","memberName":"description","nodeType":"MemberAccess","referencedDeclaration":918,"src":"7073:20:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1352,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"7096:12:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"7073:35:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1354,"nodeType":"ExpressionStatement","src":"7073:35:6"},{"expression":{"id":1359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1355,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7118:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1357,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7127:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"7118:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7138:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7118:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1360,"nodeType":"ExpressionStatement","src":"7118:21:6"},{"expression":{"id":1365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1361,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7149:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7158:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"7149:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7173:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7149:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1366,"nodeType":"ExpressionStatement","src":"7149:25:6"},{"expression":{"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1367,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7184:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7193:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"7184:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7204:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"7184:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1372,"nodeType":"ExpressionStatement","src":"7184:25:6"},{"expression":{"id":1380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1373,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7219:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7228:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"7219:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1376,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7239:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7245:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"7239:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1378,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1291,"src":"7257:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7239:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7219:47:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1381,"nodeType":"ExpressionStatement","src":"7219:47:6"},{"expression":{"id":1387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1382,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7276:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1384,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7285:9:6","memberName":"initiator","nodeType":"MemberAccess","referencedDeclaration":928,"src":"7276:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1385,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7297:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7301:6:6","memberName":"sender","nodeType":"MemberAccess","src":"7297:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7276:31:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1388,"nodeType":"ExpressionStatement","src":"7276:31:6"},{"expression":{"id":1393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1389,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7317:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1391,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7326:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"7317:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1392,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1293,"src":"7338:10:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"7317:31:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"id":1394,"nodeType":"ExpressionStatement","src":"7317:31:6"},{"eventCall":{"arguments":[{"id":1396,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7380:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1397,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7392:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7396:6:6","memberName":"sender","nodeType":"MemberAccess","src":"7392:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1399,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"7404:12:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1395,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"7364:15:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,string memory)"}},"id":1400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7364:53:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1401,"nodeType":"EmitStatement","src":"7359:58:6"},{"expression":{"id":1402,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7434:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1299,"id":1403,"nodeType":"Return","src":"7427:17:6"}]},"documentation":{"id":1287,"nodeType":"StructuredDocumentation","src":"5985:429:6","text":" @dev Создать предложение с выбором цепочки для кворума\n @param _description Описание предложения\n @param _duration Длительность голосования в секундах\n @param _operation Операция для исполнения\n @param _governanceChainId ID цепочки для сбора голосов"},"functionSelector":"b3594510","id":1405,"implemented":true,"kind":"function","modifiers":[],"name":"createProposal","nameLocation":"6428:14:6","nodeType":"FunctionDefinition","parameters":{"id":1296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1289,"mutability":"mutable","name":"_description","nameLocation":"6466:12:6","nodeType":"VariableDeclaration","scope":1405,"src":"6452:26:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1288,"name":"string","nodeType":"ElementaryTypeName","src":"6452:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1291,"mutability":"mutable","name":"_duration","nameLocation":"6497:9:6","nodeType":"VariableDeclaration","scope":1405,"src":"6489:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1290,"name":"uint256","nodeType":"ElementaryTypeName","src":"6489:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1293,"mutability":"mutable","name":"_operation","nameLocation":"6529:10:6","nodeType":"VariableDeclaration","scope":1405,"src":"6516:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1292,"name":"bytes","nodeType":"ElementaryTypeName","src":"6516:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1295,"mutability":"mutable","name":"_governanceChainId","nameLocation":"6557:18:6","nodeType":"VariableDeclaration","scope":1405,"src":"6549:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1294,"name":"uint256","nodeType":"ElementaryTypeName","src":"6549:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6442:139:6"},"returnParameters":{"id":1299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1405,"src":"6600:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1297,"name":"uint256","nodeType":"ElementaryTypeName","src":"6600:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6599:9:6"},"scope":2617,"src":"6419:1032:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1506,"nodeType":"Block","src":"7723:731:6","statements":[{"assignments":[1417],"declarations":[{"constant":false,"id":1417,"mutability":"mutable","name":"proposal","nameLocation":"7750:8:6","nodeType":"VariableDeclaration","scope":1506,"src":"7733:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1416,"nodeType":"UserDefinedTypeName","pathNode":{"id":1415,"name":"Proposal","nameLocations":["7733:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"7733:8:6"},"referencedDeclaration":939,"src":"7733:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1421,"initialValue":{"baseExpression":{"id":1418,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"7761:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1420,"indexExpression":{"id":1419,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"7771:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7761:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"7733:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1423,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7801:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7810:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"7801:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1425,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"7816:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7829:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1422,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7793:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7793:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1429,"nodeType":"ExpressionStatement","src":"7793:62:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1431,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7873:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7879:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"7873:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1433,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7891:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1434,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"7891:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7873:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"566f74696e6720656e646564","id":1436,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7910:14:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_211d0608ef50debe6357d9eaeecace048d209b7b495f49840d398b4315c37db4","typeString":"literal_string \"Voting ended\""},"value":"Voting ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_211d0608ef50debe6357d9eaeecace048d209b7b495f49840d398b4315c37db4","typeString":"literal_string \"Voting ended\""}],"id":1430,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7865:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1438,"nodeType":"ExpressionStatement","src":"7865:60:6"},{"expression":{"arguments":[{"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7943:18:6","subExpression":{"expression":{"id":1440,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7944:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1441,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7953:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"7944:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":1443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7963:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":1439,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7935:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7935:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1445,"nodeType":"ExpressionStatement","src":"7935:56:6"},{"expression":{"arguments":[{"id":1452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8009:30:6","subExpression":{"baseExpression":{"expression":{"id":1447,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8010:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1448,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8019:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":934,"src":"8010:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1451,"indexExpression":{"expression":{"id":1449,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8028:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8032:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8028:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8010:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c726561647920766f746564","id":1453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8041:15:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_512fc59044d4f0722f9346c450973ffe8aac7aa1142e536739987018593c53b6","typeString":"literal_string \"Already voted\""},"value":"Already voted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_512fc59044d4f0722f9346c450973ffe8aac7aa1142e536739987018593c53b6","typeString":"literal_string \"Already voted\""}],"id":1446,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8001:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1455,"nodeType":"ExpressionStatement","src":"8001:56:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1458,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8085:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8089:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8085:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1457,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"8075:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8075:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8099:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8075:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f20766f7465","id":1463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8102:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_824133654506f10a4f01c9f90ea8c64e0c5603376bd2f191fdab4c36e943ddd9","typeString":"literal_string \"No tokens to vote\""},"value":"No tokens to vote"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_824133654506f10a4f01c9f90ea8c64e0c5603376bd2f191fdab4c36e943ddd9","typeString":"literal_string \"No tokens to vote\""}],"id":1456,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8067:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8067:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1465,"nodeType":"ExpressionStatement","src":"8067:55:6"},{"assignments":[1467],"declarations":[{"constant":false,"id":1467,"mutability":"mutable","name":"votingPower","nameLocation":"8141:11:6","nodeType":"VariableDeclaration","scope":1506,"src":"8133:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1466,"name":"uint256","nodeType":"ElementaryTypeName","src":"8133:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1472,"initialValue":{"arguments":[{"expression":{"id":1469,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8165:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8169:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8165:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1468,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"8155:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8155:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8133:43:6"},{"expression":{"id":1480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1473,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8186:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1477,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8195:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":934,"src":"8186:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1478,"indexExpression":{"expression":{"id":1475,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8204:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8208:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8204:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8186:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8218:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"8186:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1481,"nodeType":"ExpressionStatement","src":"8186:36:6"},{"condition":{"id":1482,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"8237:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1496,"nodeType":"Block","src":"8310:61:6","statements":[{"expression":{"id":1494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1490,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8324:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1492,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8333:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"8324:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1493,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8349:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8324:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1495,"nodeType":"ExpressionStatement","src":"8324:36:6"}]},"id":1497,"nodeType":"IfStatement","src":"8233:138:6","trueBody":{"id":1489,"nodeType":"Block","src":"8247:57:6","statements":[{"expression":{"id":1487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1483,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8261:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1485,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8270:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"8261:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1486,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8282:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8261:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1488,"nodeType":"ExpressionStatement","src":"8261:32:6"}]}},{"eventCall":{"arguments":[{"id":1499,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"8400:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1500,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8413:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8417:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8413:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1502,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"8425:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1503,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8435:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1498,"name":"ProposalVoted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"8386:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (uint256,address,bool,uint256)"}},"id":1504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8386:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1505,"nodeType":"EmitStatement","src":"8381:66:6"}]},"documentation":{"id":1406,"nodeType":"StructuredDocumentation","src":"7457:189:6","text":" @dev Голосовать за предложение\n @param _proposalId ID предложения\n @param _support Поддержка предложения"},"functionSelector":"c9d27afe","id":1507,"implemented":true,"kind":"function","modifiers":[{"id":1413,"kind":"modifierInvocation","modifierName":{"id":1412,"name":"nonReentrant","nameLocations":["7710:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":818,"src":"7710:12:6"},"nodeType":"ModifierInvocation","src":"7710:12:6"}],"name":"vote","nameLocation":"7660:4:6","nodeType":"FunctionDefinition","parameters":{"id":1411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1408,"mutability":"mutable","name":"_proposalId","nameLocation":"7673:11:6","nodeType":"VariableDeclaration","scope":1507,"src":"7665:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1407,"name":"uint256","nodeType":"ElementaryTypeName","src":"7665:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1410,"mutability":"mutable","name":"_support","nameLocation":"7691:8:6","nodeType":"VariableDeclaration","scope":1507,"src":"7686:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1409,"name":"bool","nodeType":"ElementaryTypeName","src":"7686:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7664:36:6"},"returnParameters":{"id":1414,"nodeType":"ParameterList","parameters":[],"src":"7723:0:6"},"scope":2617,"src":"7651:803:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1578,"nodeType":"Block","src":"9065:733:6","statements":[{"assignments":[1523],"declarations":[{"constant":false,"id":1523,"mutability":"mutable","name":"proposal","nameLocation":"9092:8:6","nodeType":"VariableDeclaration","scope":1578,"src":"9075:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1522,"nodeType":"UserDefinedTypeName","pathNode":{"id":1521,"name":"Proposal","nameLocations":["9075:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"9075:8:6"},"referencedDeclaration":939,"src":"9075:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1527,"initialValue":{"baseExpression":{"id":1524,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"9103:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1526,"indexExpression":{"id":1525,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9113:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9103:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9075:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1529,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9143:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9152:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"9143:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1531,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9158:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9143:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9171:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1528,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9135:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9135:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1535,"nodeType":"ExpressionStatement","src":"9135:62:6"},{"expression":{"arguments":[{"baseExpression":{"id":1537,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"9215:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1539,"indexExpression":{"id":1538,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9231:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9215:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9246:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1536,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9207:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9207:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1542,"nodeType":"ExpressionStatement","src":"9207:61:6"},{"expression":{"arguments":[{"id":1548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9286:39:6","subExpression":{"baseExpression":{"expression":{"id":1544,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9287:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1545,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9296:15:6","memberName":"chainVoteSynced","nodeType":"MemberAccess","referencedDeclaration":938,"src":"9287:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1547,"indexExpression":{"id":1546,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9312:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9287:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c72656164792073796e636564","id":1549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9327:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""},"value":"Already synced"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""}],"id":1543,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9278:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9278:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1551,"nodeType":"ExpressionStatement","src":"9278:66:6"},{"expression":{"id":1556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1552,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9581:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9590:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"9581:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1555,"name":"_forVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1514,"src":"9602:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9581:30:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1557,"nodeType":"ExpressionStatement","src":"9581:30:6"},{"expression":{"id":1562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1558,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9621:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1560,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9630:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"9621:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1561,"name":"_againstVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"9646:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9621:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1563,"nodeType":"ExpressionStatement","src":"9621:38:6"},{"expression":{"id":1570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1564,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9669:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1567,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9678:15:6","memberName":"chainVoteSynced","nodeType":"MemberAccess","referencedDeclaration":938,"src":"9669:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1568,"indexExpression":{"id":1566,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9694:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9669:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9710:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9669:45:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1571,"nodeType":"ExpressionStatement","src":"9669:45:6"},{"eventCall":{"arguments":[{"id":1573,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9749:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1574,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9762:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1575,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"9776:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1572,"name":"CrossChainVoteSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"9730:18:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":1576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9730:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1577,"nodeType":"EmitStatement","src":"9725:66:6"}]},"documentation":{"id":1508,"nodeType":"StructuredDocumentation","src":"8460:412:6","text":" @dev Синхронизировать голос из другой цепочки\n @param _proposalId ID предложения\n @param _fromChainId ID цепочки откуда синхронизируем\n @param _forVotes Голоса за\n @param _againstVotes Голоса против\n @param _proof Доказательство синхронизации"},"functionSelector":"456d10c1","id":1579,"implemented":true,"kind":"function","modifiers":[],"name":"syncVoteFromChain","nameLocation":"8886:17:6","nodeType":"FunctionDefinition","parameters":{"id":1519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1510,"mutability":"mutable","name":"_proposalId","nameLocation":"8921:11:6","nodeType":"VariableDeclaration","scope":1579,"src":"8913:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1509,"name":"uint256","nodeType":"ElementaryTypeName","src":"8913:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1512,"mutability":"mutable","name":"_fromChainId","nameLocation":"8950:12:6","nodeType":"VariableDeclaration","scope":1579,"src":"8942:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1511,"name":"uint256","nodeType":"ElementaryTypeName","src":"8942:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1514,"mutability":"mutable","name":"_forVotes","nameLocation":"8980:9:6","nodeType":"VariableDeclaration","scope":1579,"src":"8972:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1513,"name":"uint256","nodeType":"ElementaryTypeName","src":"8972:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1516,"mutability":"mutable","name":"_againstVotes","nameLocation":"9007:13:6","nodeType":"VariableDeclaration","scope":1579,"src":"8999:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1515,"name":"uint256","nodeType":"ElementaryTypeName","src":"8999:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1518,"mutability":"mutable","name":"_proof","nameLocation":"9043:6:6","nodeType":"VariableDeclaration","scope":1579,"src":"9030:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1517,"name":"bytes","nodeType":"ElementaryTypeName","src":"9030:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8903:152:6"},"returnParameters":{"id":1520,"nodeType":"ParameterList","parameters":[],"src":"9065:0:6"},"scope":2617,"src":"8877:921:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1642,"nodeType":"Block","src":"10178:476:6","statements":[{"assignments":[1591],"declarations":[{"constant":false,"id":1591,"mutability":"mutable","name":"proposal","nameLocation":"10205:8:6","nodeType":"VariableDeclaration","scope":1642,"src":"10188:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1590,"nodeType":"UserDefinedTypeName","pathNode":{"id":1589,"name":"Proposal","nameLocations":["10188:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"10188:8:6"},"referencedDeclaration":939,"src":"10188:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1595,"initialValue":{"baseExpression":{"id":1592,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"10216:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1594,"indexExpression":{"id":1593,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10226:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10216:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10188:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1597,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10256:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1598,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10265:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"10256:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1599,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10271:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10256:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10284:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1596,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10248:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10248:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1603,"nodeType":"ExpressionStatement","src":"10248:62:6"},{"assignments":[1605],"declarations":[{"constant":false,"id":1605,"mutability":"mutable","name":"totalVotes","nameLocation":"10329:10:6","nodeType":"VariableDeclaration","scope":1642,"src":"10321:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1604,"name":"uint256","nodeType":"ElementaryTypeName","src":"10321:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1611,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1606,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10342:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10351:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"10342:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1608,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10362:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10371:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"10362:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10342:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10321:62:6"},{"assignments":[1613],"declarations":[{"constant":false,"id":1613,"mutability":"mutable","name":"quorumRequired","nameLocation":"10401:14:6","nodeType":"VariableDeclaration","scope":1642,"src":"10393:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1612,"name":"uint256","nodeType":"ElementaryTypeName","src":"10393:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1621,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1614,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":224,"src":"10419:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10419:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1616,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"10435:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10419:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1618,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10418:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":1619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10455:3:6","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"10418:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10393:65:6"},{"expression":{"id":1626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1622,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10477:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1623,"name":"totalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"10493:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1624,"name":"quorumRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"10507:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10493:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10477:44:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1627,"nodeType":"ExpressionStatement","src":"10477:44:6"},{"expression":{"id":1636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1628,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"10531:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1629,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10540:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1630,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10557:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1631,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10566:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"10557:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":1632,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10577:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1633,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10586:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"10577:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10557:41:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10540:58:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10531:67:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1637,"nodeType":"ExpressionStatement","src":"10531:67:6"},{"expression":{"components":[{"id":1638,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"10625:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1639,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10633:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1640,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10624:23:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"functionReturnParameters":1588,"id":1641,"nodeType":"Return","src":"10617:30:6"}]},"documentation":{"id":1580,"nodeType":"StructuredDocumentation","src":"9804:265:6","text":" @dev Проверить результат предложения\n @param _proposalId ID предложения\n @return passed Прошло ли предложение\n @return quorumReached Достигнут ли кворум"},"functionSelector":"7e5a9b47","id":1643,"implemented":true,"kind":"function","modifiers":[],"name":"checkProposalResult","nameLocation":"10083:19:6","nodeType":"FunctionDefinition","parameters":{"id":1583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1582,"mutability":"mutable","name":"_proposalId","nameLocation":"10111:11:6","nodeType":"VariableDeclaration","scope":1643,"src":"10103:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1581,"name":"uint256","nodeType":"ElementaryTypeName","src":"10103:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10102:21:6"},"returnParameters":{"id":1588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1585,"mutability":"mutable","name":"passed","nameLocation":"10150:6:6","nodeType":"VariableDeclaration","scope":1643,"src":"10145:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1584,"name":"bool","nodeType":"ElementaryTypeName","src":"10145:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1587,"mutability":"mutable","name":"quorumReached","nameLocation":"10163:13:6","nodeType":"VariableDeclaration","scope":1643,"src":"10158:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1586,"name":"bool","nodeType":"ElementaryTypeName","src":"10158:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10144:33:6"},"scope":2617,"src":"10074:580:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":1712,"nodeType":"Block","src":"10837:635:6","statements":[{"assignments":[1651],"declarations":[{"constant":false,"id":1651,"mutability":"mutable","name":"proposal","nameLocation":"10864:8:6","nodeType":"VariableDeclaration","scope":1712,"src":"10847:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1650,"nodeType":"UserDefinedTypeName","pathNode":{"id":1649,"name":"Proposal","nameLocations":["10847:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"10847:8:6"},"referencedDeclaration":939,"src":"10847:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1655,"initialValue":{"baseExpression":{"id":1652,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"10875:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1654,"indexExpression":{"id":1653,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"10885:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10875:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10847:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1657,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"10915:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1658,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10924:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"10915:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1659,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"10930:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10915:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10943:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1656,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10907:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10907:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1663,"nodeType":"ExpressionStatement","src":"10907:62:6"},{"expression":{"arguments":[{"id":1667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"10987:18:6","subExpression":{"expression":{"id":1665,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"10988:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1666,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10997:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"10988:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":1668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11007:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":1664,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10979:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10979:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1670,"nodeType":"ExpressionStatement","src":"10979:56:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1672,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11053:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11059:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"11053:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":1674,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11072:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1675,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11081:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"11072:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11053:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"566f74696e67206e6f7420656e646564","id":1677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11091:18:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_fa3afa53d79e86c3f6a23b414e9eaabf98604d6fc663aa1da275377424956dc3","typeString":"literal_string \"Voting not ended\""},"value":"Voting not ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fa3afa53d79e86c3f6a23b414e9eaabf98604d6fc663aa1da275377424956dc3","typeString":"literal_string \"Voting not ended\""}],"id":1671,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11045:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11045:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1679,"nodeType":"ExpressionStatement","src":"11045:65:6"},{"assignments":[1681,1683],"declarations":[{"constant":false,"id":1681,"mutability":"mutable","name":"passed","nameLocation":"11127:6:6","nodeType":"VariableDeclaration","scope":1712,"src":"11122:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1680,"name":"bool","nodeType":"ElementaryTypeName","src":"11122:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1683,"mutability":"mutable","name":"quorumReached","nameLocation":"11140:13:6","nodeType":"VariableDeclaration","scope":1712,"src":"11135:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1682,"name":"bool","nodeType":"ElementaryTypeName","src":"11135:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1687,"initialValue":{"arguments":[{"id":1685,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"11177:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1684,"name":"checkProposalResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1643,"src":"11157:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$_t_bool_$","typeString":"function (uint256) view returns (bool,bool)"}},"id":1686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11157:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"11121:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1689,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1681,"src":"11207:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":1690,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1683,"src":"11217:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11207:23:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c206e6f7420706173736564","id":1692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11232:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8789ac58780df0d349b543986ff0576f2825fbf77f8dd377739331d82041c18e","typeString":"literal_string \"Proposal not passed\""},"value":"Proposal not passed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8789ac58780df0d349b543986ff0576f2825fbf77f8dd377739331d82041c18e","typeString":"literal_string \"Proposal not passed\""}],"id":1688,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11199:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11199:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1694,"nodeType":"ExpressionStatement","src":"11199:55:6"},{"expression":{"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1695,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11265:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1697,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11274:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"11265:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11285:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"11265:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1700,"nodeType":"ExpressionStatement","src":"11265:24:6"},{"expression":{"arguments":[{"expression":{"id":1702,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11373:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1703,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11382:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"11373:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":1701,"name":"_executeOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"11355:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory)"}},"id":1704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11355:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1705,"nodeType":"ExpressionStatement","src":"11355:37:6"},{"eventCall":{"arguments":[{"id":1707,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"11433:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1708,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11446:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1709,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11455:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"11446:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":1706,"name":"ProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1057,"src":"11416:16:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (uint256,bytes memory)"}},"id":1710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11416:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1711,"nodeType":"EmitStatement","src":"11411:54:6"}]},"documentation":{"id":1644,"nodeType":"StructuredDocumentation","src":"10660:117:6","text":" @dev Исполнить предложение\n @param _proposalId ID предложения"},"functionSelector":"0d61b519","id":1713,"implemented":true,"kind":"function","modifiers":[],"name":"executeProposal","nameLocation":"10791:15:6","nodeType":"FunctionDefinition","parameters":{"id":1647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1646,"mutability":"mutable","name":"_proposalId","nameLocation":"10815:11:6","nodeType":"VariableDeclaration","scope":1713,"src":"10807:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1645,"name":"uint256","nodeType":"ElementaryTypeName","src":"10807:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10806:21:6"},"returnParameters":{"id":1648,"nodeType":"ParameterList","parameters":[],"src":"10837:0:6"},"scope":2617,"src":"10782:690:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1801,"nodeType":"Block","src":"11820:663:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1725,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"11848:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11852:6:6","memberName":"sender","nodeType":"MemberAccess","src":"11848:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1724,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"11838:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11838:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11862:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11838:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f20637265617465206f7065726174696f6e","id":1730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11865:38:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b4c6044429574409cde35868815ebf07dd07f140f75d3558ab1494a2cd4af78a","typeString":"literal_string \"Must hold tokens to create operation\""},"value":"Must hold tokens to create operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b4c6044429574409cde35868815ebf07dd07f140f75d3558ab1494a2cd4af78a","typeString":"literal_string \"Must hold tokens to create operation\""}],"id":1723,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11830:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11830:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1732,"nodeType":"ExpressionStatement","src":"11830:74:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1734,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"11922:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11934:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11922:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4475726174696f6e206d75737420626520706f736974697665","id":1737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11937:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""},"value":"Duration must be positive"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""}],"id":1733,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11914:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11914:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1739,"nodeType":"ExpressionStatement","src":"11914:51:6"},{"assignments":[1741],"declarations":[{"constant":false,"id":1741,"mutability":"mutable","name":"operationId","nameLocation":"11984:11:6","nodeType":"VariableDeclaration","scope":1801,"src":"11976:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1740,"name":"uint256","nodeType":"ElementaryTypeName","src":"11976:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1744,"initialValue":{"id":1743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"11998:17:6","subExpression":{"id":1742,"name":"multiSigCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"11998:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11976:39:6"},{"assignments":[1747],"declarations":[{"constant":false,"id":1747,"mutability":"mutable","name":"operation","nameLocation":"12051:9:6","nodeType":"VariableDeclaration","scope":1801,"src":"12025:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1746,"nodeType":"UserDefinedTypeName","pathNode":{"id":1745,"name":"MultiSigOperation","nameLocations":["12025:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"12025:17:6"},"referencedDeclaration":960,"src":"12025:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1751,"initialValue":{"baseExpression":{"id":1748,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"12063:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1750,"indexExpression":{"id":1749,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12082:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12063:31:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12025:69:6"},{"expression":{"id":1756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1752,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12113:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1754,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12123:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"12113:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1755,"name":"_operationHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1716,"src":"12139:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"12113:40:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1757,"nodeType":"ExpressionStatement","src":"12113:40:6"},{"expression":{"id":1762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1758,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12163:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1760,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12173:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"12163:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12189:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12163:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1763,"nodeType":"ExpressionStatement","src":"12163:27:6"},{"expression":{"id":1768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1764,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12200:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1766,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12210:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"12200:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12230:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12200:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1769,"nodeType":"ExpressionStatement","src":"12200:31:6"},{"expression":{"id":1774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1770,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12241:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1772,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12251:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"12241:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12262:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"12241:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1775,"nodeType":"ExpressionStatement","src":"12241:26:6"},{"expression":{"id":1783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1776,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12277:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1778,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12287:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"12277:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1779,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12298:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12304:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"12298:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1781,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"12316:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12298:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12277:48:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1784,"nodeType":"ExpressionStatement","src":"12277:48:6"},{"expression":{"id":1790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1785,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12335:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1787,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12345:9:6","memberName":"initiator","nodeType":"MemberAccess","referencedDeclaration":951,"src":"12335:19:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1788,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12357:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12361:6:6","memberName":"sender","nodeType":"MemberAccess","src":"12357:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12335:32:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1791,"nodeType":"ExpressionStatement","src":"12335:32:6"},{"eventCall":{"arguments":[{"id":1793,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12408:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1794,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12421:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12425:6:6","memberName":"sender","nodeType":"MemberAccess","src":"12421:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1796,"name":"_operationHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1716,"src":"12433:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1792,"name":"MultiSigOperationCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1065,"src":"12383:24:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bytes32_$returns$__$","typeString":"function (uint256,address,bytes32)"}},"id":1797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12383:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1798,"nodeType":"EmitStatement","src":"12378:70:6"},{"expression":{"id":1799,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12465:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1722,"id":1800,"nodeType":"Return","src":"12458:18:6"}]},"documentation":{"id":1714,"nodeType":"StructuredDocumentation","src":"11478:212:6","text":" @dev Создать мультиподпись операцию\n @param _operationHash Хеш операции\n @param _duration Длительность сбора подписей"},"functionSelector":"b00e0730","id":1802,"implemented":true,"kind":"function","modifiers":[],"name":"createMultiSigOperation","nameLocation":"11704:23:6","nodeType":"FunctionDefinition","parameters":{"id":1719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1716,"mutability":"mutable","name":"_operationHash","nameLocation":"11745:14:6","nodeType":"VariableDeclaration","scope":1802,"src":"11737:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1715,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11737:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1718,"mutability":"mutable","name":"_duration","nameLocation":"11777:9:6","nodeType":"VariableDeclaration","scope":1802,"src":"11769:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1717,"name":"uint256","nodeType":"ElementaryTypeName","src":"11769:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11727:65:6"},"returnParameters":{"id":1722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1721,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1802,"src":"11811:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1720,"name":"uint256","nodeType":"ElementaryTypeName","src":"11811:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11810:9:6"},"scope":2617,"src":"11695:788:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1906,"nodeType":"Block","src":"12776:798:6","statements":[{"assignments":[1814],"declarations":[{"constant":false,"id":1814,"mutability":"mutable","name":"operation","nameLocation":"12812:9:6","nodeType":"VariableDeclaration","scope":1906,"src":"12786:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1813,"nodeType":"UserDefinedTypeName","pathNode":{"id":1812,"name":"MultiSigOperation","nameLocations":["12786:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"12786:17:6"},"referencedDeclaration":960,"src":"12786:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1818,"initialValue":{"baseExpression":{"id":1815,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"12824:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1817,"indexExpression":{"id":1816,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1805,"src":"12843:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12824:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12786:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1820,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"12874:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1821,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12884:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"12874:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12909:1:6","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":1823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12901:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1822,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12901:7:6","typeDescriptions":{}}},"id":1825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12901:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"12874:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":1827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12913:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1819,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12866:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12866:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1829,"nodeType":"ExpressionStatement","src":"12866:74:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1831,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12958:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12964:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"12958:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1833,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"12976:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12986:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"12976:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12958:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5369676e696e6720656e646564","id":1836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12996:15:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_950f8cf6a836192653a57ac3dc657e6414282f8063b5c5cd97e12fa3582f7f0b","typeString":"literal_string \"Signing ended\""},"value":"Signing ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_950f8cf6a836192653a57ac3dc657e6414282f8063b5c5cd97e12fa3582f7f0b","typeString":"literal_string \"Signing ended\""}],"id":1830,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12950:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12950:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1838,"nodeType":"ExpressionStatement","src":"12950:62:6"},{"expression":{"arguments":[{"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13030:19:6","subExpression":{"expression":{"id":1840,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13031:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13041:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"13031:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20616c7265616479206578656375746564","id":1843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13051:28:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""},"value":"Operation already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""}],"id":1839,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13022:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13022:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1845,"nodeType":"ExpressionStatement","src":"13022:58:6"},{"expression":{"arguments":[{"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13098:32:6","subExpression":{"baseExpression":{"expression":{"id":1847,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13099:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1848,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13109:9:6","memberName":"hasSigned","nodeType":"MemberAccess","referencedDeclaration":955,"src":"13099:19:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1851,"indexExpression":{"expression":{"id":1849,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13119:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13123:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13119:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13099:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479207369676e6564","id":1853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13132:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""},"value":"Already signed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""}],"id":1846,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13090:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13090:59:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1855,"nodeType":"ExpressionStatement","src":"13090:59:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1858,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13177:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13181:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13177:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1857,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"13167:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13167:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13191:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13167:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":1863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13194:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":1856,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13159:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13159:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1865,"nodeType":"ExpressionStatement","src":"13159:55:6"},{"assignments":[1867],"declarations":[{"constant":false,"id":1867,"mutability":"mutable","name":"signaturePower","nameLocation":"13233:14:6","nodeType":"VariableDeclaration","scope":1906,"src":"13225:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"13225:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1872,"initialValue":{"arguments":[{"expression":{"id":1869,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13260:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13264:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13260:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1868,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"13250:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13250:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13225:46:6"},{"expression":{"id":1880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1873,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13281:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1877,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13291:9:6","memberName":"hasSigned","nodeType":"MemberAccess","referencedDeclaration":955,"src":"13281:19:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1878,"indexExpression":{"expression":{"id":1875,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13301:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13305:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13301:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13281:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13315:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"13281:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1881,"nodeType":"ExpressionStatement","src":"13281:38:6"},{"condition":{"id":1882,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"13334:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1896,"nodeType":"Block","src":"13416:70:6","statements":[{"expression":{"id":1894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1890,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13430:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13440:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"13430:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1893,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13461:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13430:45:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1895,"nodeType":"ExpressionStatement","src":"13430:45:6"}]},"id":1897,"nodeType":"IfStatement","src":"13330:156:6","trueBody":{"id":1889,"nodeType":"Block","src":"13344:66:6","statements":[{"expression":{"id":1887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1883,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13358:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1885,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13368:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"13358:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1886,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13385:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13358:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1888,"nodeType":"ExpressionStatement","src":"13358:41:6"}]}},{"eventCall":{"arguments":[{"id":1899,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1805,"src":"13516:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1900,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13530:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13534:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13530:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1902,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"13542:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1903,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13552:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1898,"name":"MultiSigSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1075,"src":"13501:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (uint256,address,bool,uint256)"}},"id":1904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13501:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1905,"nodeType":"EmitStatement","src":"13496:71:6"}]},"documentation":{"id":1803,"nodeType":"StructuredDocumentation","src":"12489:192:6","text":" @dev Подписать мультиподпись операцию\n @param _operationId ID операции\n @param _support Поддержка операции"},"functionSelector":"ccd7a490","id":1907,"implemented":true,"kind":"function","modifiers":[{"id":1810,"kind":"modifierInvocation","modifierName":{"id":1809,"name":"nonReentrant","nameLocations":["12763:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":818,"src":"12763:12:6"},"nodeType":"ModifierInvocation","src":"12763:12:6"}],"name":"signMultiSigOperation","nameLocation":"12695:21:6","nodeType":"FunctionDefinition","parameters":{"id":1808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1805,"mutability":"mutable","name":"_operationId","nameLocation":"12725:12:6","nodeType":"VariableDeclaration","scope":1907,"src":"12717:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1804,"name":"uint256","nodeType":"ElementaryTypeName","src":"12717:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1807,"mutability":"mutable","name":"_support","nameLocation":"12744:8:6","nodeType":"VariableDeclaration","scope":1907,"src":"12739:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1806,"name":"bool","nodeType":"ElementaryTypeName","src":"12739:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12716:37:6"},"returnParameters":{"id":1811,"nodeType":"ParameterList","parameters":[],"src":"12776:0:6"},"scope":2617,"src":"12686:888:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1981,"nodeType":"Block","src":"14225:747:6","statements":[{"assignments":[1923],"declarations":[{"constant":false,"id":1923,"mutability":"mutable","name":"operation","nameLocation":"14261:9:6","nodeType":"VariableDeclaration","scope":1981,"src":"14235:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1922,"nodeType":"UserDefinedTypeName","pathNode":{"id":1921,"name":"MultiSigOperation","nameLocations":["14235:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"14235:17:6"},"referencedDeclaration":960,"src":"14235:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1927,"initialValue":{"baseExpression":{"id":1924,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"14273:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1926,"indexExpression":{"id":1925,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1910,"src":"14292:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14273:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"14235:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1929,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14323:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1930,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14333:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"14323:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14358:1:6","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":1932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14350:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1931,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14350:7:6","typeDescriptions":{}}},"id":1934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14350:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14323:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":1936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14362:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1928,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14315:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14315:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1938,"nodeType":"ExpressionStatement","src":"14315:74:6"},{"expression":{"arguments":[{"baseExpression":{"id":1940,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"14407:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1942,"indexExpression":{"id":1941,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14423:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14407:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14438:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1939,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14399:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14399:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1945,"nodeType":"ExpressionStatement","src":"14399:61:6"},{"expression":{"arguments":[{"id":1951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14478:40:6","subExpression":{"baseExpression":{"expression":{"id":1947,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14479:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1948,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14489:15:6","memberName":"chainSignSynced","nodeType":"MemberAccess","referencedDeclaration":959,"src":"14479:25:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1950,"indexExpression":{"id":1949,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14505:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14479:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c72656164792073796e636564","id":1952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14520:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""},"value":"Already synced"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""}],"id":1946,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14470:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14470:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1954,"nodeType":"ExpressionStatement","src":"14470:67:6"},{"expression":{"id":1959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1955,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14727:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1957,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14737:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"14727:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1958,"name":"_forSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1914,"src":"14754:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14727:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1960,"nodeType":"ExpressionStatement","src":"14727:41:6"},{"expression":{"id":1965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1961,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14778:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1963,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14788:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"14778:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1964,"name":"_againstSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"14809:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14778:49:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1966,"nodeType":"ExpressionStatement","src":"14778:49:6"},{"expression":{"id":1973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1967,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14837:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1970,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14847:15:6","memberName":"chainSignSynced","nodeType":"MemberAccess","referencedDeclaration":959,"src":"14837:25:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1971,"indexExpression":{"id":1969,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14863:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14837:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14879:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"14837:46:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1974,"nodeType":"ExpressionStatement","src":"14837:46:6"},{"eventCall":{"arguments":[{"id":1976,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1910,"src":"14922:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1977,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14936:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1978,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"14950:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1975,"name":"CrossChainMultiSigSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"14899:22:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":1979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14899:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1980,"nodeType":"EmitStatement","src":"14894:71:6"}]},"documentation":{"id":1908,"nodeType":"StructuredDocumentation","src":"13580:437:6","text":" @dev Синхронизировать мультиподпись из другой цепочки\n @param _operationId ID операции\n @param _fromChainId ID цепочки откуда синхронизируем\n @param _forSignatures Подписи за\n @param _againstSignatures Подписи против\n @param _proof Доказательство синхронизации"},"functionSelector":"2ee09598","id":1982,"implemented":true,"kind":"function","modifiers":[],"name":"syncMultiSigFromChain","nameLocation":"14031:21:6","nodeType":"FunctionDefinition","parameters":{"id":1919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1910,"mutability":"mutable","name":"_operationId","nameLocation":"14070:12:6","nodeType":"VariableDeclaration","scope":1982,"src":"14062:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1909,"name":"uint256","nodeType":"ElementaryTypeName","src":"14062:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1912,"mutability":"mutable","name":"_fromChainId","nameLocation":"14100:12:6","nodeType":"VariableDeclaration","scope":1982,"src":"14092:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1911,"name":"uint256","nodeType":"ElementaryTypeName","src":"14092:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1914,"mutability":"mutable","name":"_forSignatures","nameLocation":"14130:14:6","nodeType":"VariableDeclaration","scope":1982,"src":"14122:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1913,"name":"uint256","nodeType":"ElementaryTypeName","src":"14122:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1916,"mutability":"mutable","name":"_againstSignatures","nameLocation":"14162:18:6","nodeType":"VariableDeclaration","scope":1982,"src":"14154:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1915,"name":"uint256","nodeType":"ElementaryTypeName","src":"14154:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1918,"mutability":"mutable","name":"_proof","nameLocation":"14203:6:6","nodeType":"VariableDeclaration","scope":1982,"src":"14190:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1917,"name":"bytes","nodeType":"ElementaryTypeName","src":"14190:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14052:163:6"},"returnParameters":{"id":1920,"nodeType":"ParameterList","parameters":[],"src":"14225:0:6"},"scope":2617,"src":"14022:950:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2048,"nodeType":"Block","src":"15346:542:6","statements":[{"assignments":[1994],"declarations":[{"constant":false,"id":1994,"mutability":"mutable","name":"operation","nameLocation":"15382:9:6","nodeType":"VariableDeclaration","scope":2048,"src":"15356:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1993,"nodeType":"UserDefinedTypeName","pathNode":{"id":1992,"name":"MultiSigOperation","nameLocations":["15356:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"15356:17:6"},"referencedDeclaration":960,"src":"15356:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1998,"initialValue":{"baseExpression":{"id":1995,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"15394:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1997,"indexExpression":{"id":1996,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1985,"src":"15413:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15394:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"15356:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2000,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15444:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2001,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15454:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"15444:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15479:1:6","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":2003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15471:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2002,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15471:7:6","typeDescriptions":{}}},"id":2005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15471:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"15444:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":2007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15483:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1999,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15436:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15436:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2009,"nodeType":"ExpressionStatement","src":"15436:74:6"},{"assignments":[2011],"declarations":[{"constant":false,"id":2011,"mutability":"mutable","name":"totalSignatures","nameLocation":"15529:15:6","nodeType":"VariableDeclaration","scope":2048,"src":"15521:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2010,"name":"uint256","nodeType":"ElementaryTypeName","src":"15521:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2017,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2012,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15547:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2013,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15557:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"15547:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2014,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15573:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2015,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15583:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"15573:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15547:53:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15521:79:6"},{"assignments":[2019],"declarations":[{"constant":false,"id":2019,"mutability":"mutable","name":"quorumRequired","nameLocation":"15618:14:6","nodeType":"VariableDeclaration","scope":2048,"src":"15610:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2018,"name":"uint256","nodeType":"ElementaryTypeName","src":"15610:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2027,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2020,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":224,"src":"15636:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15636:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2022,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"15652:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15636:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2024,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15635:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15672:3:6","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"15635:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15610:65:6"},{"expression":{"id":2032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2028,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15694:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2029,"name":"totalSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2011,"src":"15710:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2030,"name":"quorumRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2019,"src":"15729:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15710:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15694:49:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2033,"nodeType":"ExpressionStatement","src":"15694:49:6"},{"expression":{"id":2042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2034,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"15753:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2035,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15762:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2036,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15779:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15789:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"15779:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":2038,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15805:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15815:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"15805:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15779:53:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15762:70:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15753:79:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2043,"nodeType":"ExpressionStatement","src":"15753:79:6"},{"expression":{"components":[{"id":2044,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"15859:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2045,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15867:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2046,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15858:23:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"functionReturnParameters":1991,"id":2047,"nodeType":"Return","src":"15851:30:6"}]},"documentation":{"id":1983,"nodeType":"StructuredDocumentation","src":"14978:258:6","text":" @dev Проверить результат мультиподписи\n @param _operationId ID операции\n @return passed Прошла ли операция\n @return quorumReached Достигнут ли кворум"},"functionSelector":"057b2074","id":2049,"implemented":true,"kind":"function","modifiers":[],"name":"checkMultiSigResult","nameLocation":"15250:19:6","nodeType":"FunctionDefinition","parameters":{"id":1986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1985,"mutability":"mutable","name":"_operationId","nameLocation":"15278:12:6","nodeType":"VariableDeclaration","scope":2049,"src":"15270:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1984,"name":"uint256","nodeType":"ElementaryTypeName","src":"15270:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15269:22:6"},"returnParameters":{"id":1991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1988,"mutability":"mutable","name":"passed","nameLocation":"15318:6:6","nodeType":"VariableDeclaration","scope":2049,"src":"15313:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1987,"name":"bool","nodeType":"ElementaryTypeName","src":"15313:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1990,"mutability":"mutable","name":"quorumReached","nameLocation":"15331:13:6","nodeType":"VariableDeclaration","scope":2049,"src":"15326:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1989,"name":"bool","nodeType":"ElementaryTypeName","src":"15326:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15312:33:6"},"scope":2617,"src":"15241:647:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2116,"nodeType":"Block","src":"16097:577:6","statements":[{"assignments":[2057],"declarations":[{"constant":false,"id":2057,"mutability":"mutable","name":"operation","nameLocation":"16133:9:6","nodeType":"VariableDeclaration","scope":2116,"src":"16107:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":2056,"nodeType":"UserDefinedTypeName","pathNode":{"id":2055,"name":"MultiSigOperation","nameLocations":["16107:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"16107:17:6"},"referencedDeclaration":960,"src":"16107:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":2061,"initialValue":{"baseExpression":{"id":2058,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"16145:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":2060,"indexExpression":{"id":2059,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16164:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16145:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"16107:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2063,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16195:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2064,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16205:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"16195:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16230:1:6","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":2066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16222:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2065,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16222:7:6","typeDescriptions":{}}},"id":2068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16222:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"16195:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":2070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16234:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":2062,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16187:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16187:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2072,"nodeType":"ExpressionStatement","src":"16187:74:6"},{"expression":{"arguments":[{"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16279:19:6","subExpression":{"expression":{"id":2074,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16280:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2075,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16290:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"16280:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20616c7265616479206578656375746564","id":2077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16300:28:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""},"value":"Operation already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""}],"id":2073,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16271:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16271:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2079,"nodeType":"ExpressionStatement","src":"16271:58:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2081,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"16347:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16353:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"16347:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2083,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16366:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2084,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16376:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"16366:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16347:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5369676e696e67206e6f7420656e646564","id":2086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16386:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c0c2359a9b356344627f350157767095abf42de074fcedb68d11fc108b96cd74","typeString":"literal_string \"Signing not ended\""},"value":"Signing not ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c0c2359a9b356344627f350157767095abf42de074fcedb68d11fc108b96cd74","typeString":"literal_string \"Signing not ended\""}],"id":2080,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16339:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16339:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2088,"nodeType":"ExpressionStatement","src":"16339:67:6"},{"assignments":[2090,2092],"declarations":[{"constant":false,"id":2090,"mutability":"mutable","name":"passed","nameLocation":"16423:6:6","nodeType":"VariableDeclaration","scope":2116,"src":"16418:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2089,"name":"bool","nodeType":"ElementaryTypeName","src":"16418:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2092,"mutability":"mutable","name":"quorumReached","nameLocation":"16436:13:6","nodeType":"VariableDeclaration","scope":2116,"src":"16431:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2091,"name":"bool","nodeType":"ElementaryTypeName","src":"16431:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2096,"initialValue":{"arguments":[{"id":2094,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16473:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2093,"name":"checkMultiSigResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2049,"src":"16453:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$_t_bool_$","typeString":"function (uint256) view returns (bool,bool)"}},"id":2095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16453:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"16417:69:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2098,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2090,"src":"16504:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":2099,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2092,"src":"16514:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16504:23:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e206e6f7420706173736564","id":2101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16529:22:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ddf475e14b5f6d3ed9adb8877fe9c76f990b431f369f905fc15026ec102ce36","typeString":"literal_string \"Operation not passed\""},"value":"Operation not passed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ddf475e14b5f6d3ed9adb8877fe9c76f990b431f369f905fc15026ec102ce36","typeString":"literal_string \"Operation not passed\""}],"id":2097,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16496:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16496:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2103,"nodeType":"ExpressionStatement","src":"16496:56:6"},{"expression":{"id":2108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2104,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16563:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2106,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16573:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"16563:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16584:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"16563:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2109,"nodeType":"ExpressionStatement","src":"16563:25:6"},{"eventCall":{"arguments":[{"id":2111,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16629:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2112,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16643:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16653:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"16643:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2110,"name":"MultiSigExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"16612:16:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16612:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2115,"nodeType":"EmitStatement","src":"16607:60:6"}]},"documentation":{"id":2050,"nodeType":"StructuredDocumentation","src":"15894:133:6","text":" @dev Исполнить мультиподпись операцию\n @param _operationId ID операции"},"functionSelector":"893d692a","id":2117,"implemented":true,"kind":"function","modifiers":[],"name":"executeMultiSigOperation","nameLocation":"16041:24:6","nodeType":"FunctionDefinition","parameters":{"id":2053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2052,"mutability":"mutable","name":"_operationId","nameLocation":"16074:12:6","nodeType":"VariableDeclaration","scope":2117,"src":"16066:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2051,"name":"uint256","nodeType":"ElementaryTypeName","src":"16066:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16065:22:6"},"returnParameters":{"id":2054,"nodeType":"ParameterList","parameters":[],"src":"16097:0:6"},"scope":2617,"src":"16032:642:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2172,"nodeType":"Block","src":"17140:702:6","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2128,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"17158:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2130,"indexExpression":{"id":2129,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"17174:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17158:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":2131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17189:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":2127,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17150:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17150:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2133,"nodeType":"ExpressionStatement","src":"17150:61:6"},{"expression":{"arguments":[{"id":2138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17229:31:6","subExpression":{"baseExpression":{"id":2135,"name":"executedProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":997,"src":"17230:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2137,"indexExpression":{"id":2136,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17248:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17230:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479206578656375746564","id":2139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17262:18:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_58f47ea4e737df2d9cc4764db26c111751884cf0a1856aca9f4c66cadc811e1b","typeString":"literal_string \"Already executed\""},"value":"Already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_58f47ea4e737df2d9cc4764db26c111751884cf0a1856aca9f4c66cadc811e1b","typeString":"literal_string \"Already executed\""}],"id":2134,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17221:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17221:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2141,"nodeType":"ExpressionStatement","src":"17221:60:6"},{"expression":{"id":2146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2142,"name":"executedProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":997,"src":"17471:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2144,"indexExpression":{"id":2143,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17489:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17471:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17504:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"17471:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2147,"nodeType":"ExpressionStatement","src":"17471:37:6"},{"assignments":[2150],"declarations":[{"constant":false,"id":2150,"mutability":"mutable","name":"proposal","nameLocation":"17617:8:6","nodeType":"VariableDeclaration","scope":2172,"src":"17600:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":2149,"nodeType":"UserDefinedTypeName","pathNode":{"id":2148,"name":"Proposal","nameLocations":["17600:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"17600:8:6"},"referencedDeclaration":939,"src":"17600:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":2154,"initialValue":{"baseExpression":{"id":2151,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"17628:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":2153,"indexExpression":{"id":2152,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17638:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17628:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17600:50:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2155,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"17664:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2156,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17673:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"17664:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2157,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17679:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17664:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2165,"nodeType":"IfStatement","src":"17660:94:6","trueBody":{"id":2164,"nodeType":"Block","src":"17692:62:6","statements":[{"expression":{"arguments":[{"expression":{"id":2160,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"17724:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2161,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17733:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"17724:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":2159,"name":"_executeOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"17706:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory)"}},"id":2162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17706:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2163,"nodeType":"ExpressionStatement","src":"17706:37:6"}]}},{"eventCall":{"arguments":[{"id":2167,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17793:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2168,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"17806:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2169,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"17820:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2166,"name":"CrossChainExecutionSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"17769:23:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":2170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17769:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2171,"nodeType":"EmitStatement","src":"17764:71:6"}]},"documentation":{"id":2118,"nodeType":"StructuredDocumentation","src":"16680:320:6","text":" @dev Синхронизировать исполнение из другой цепочки\n @param _proposalId ID предложения\n @param _fromChainId ID цепочки откуда синхронизируем\n @param _proof Доказательство исполнения"},"functionSelector":"044bc2bd","id":2173,"implemented":true,"kind":"function","modifiers":[],"name":"syncExecutionFromChain","nameLocation":"17014:22:6","nodeType":"FunctionDefinition","parameters":{"id":2125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2120,"mutability":"mutable","name":"_proposalId","nameLocation":"17054:11:6","nodeType":"VariableDeclaration","scope":2173,"src":"17046:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2119,"name":"uint256","nodeType":"ElementaryTypeName","src":"17046:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2122,"mutability":"mutable","name":"_fromChainId","nameLocation":"17083:12:6","nodeType":"VariableDeclaration","scope":2173,"src":"17075:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2121,"name":"uint256","nodeType":"ElementaryTypeName","src":"17075:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2124,"mutability":"mutable","name":"_proof","nameLocation":"17118:6:6","nodeType":"VariableDeclaration","scope":2173,"src":"17105:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2123,"name":"bytes","nodeType":"ElementaryTypeName","src":"17105:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17036:94:6"},"returnParameters":{"id":2126,"nodeType":"ParameterList","parameters":[],"src":"17140:0:6"},"scope":2617,"src":"17005:837:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2185,"nodeType":"Block","src":"18128:284:6","statements":[{"expression":{"baseExpression":{"id":2181,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"18380:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2183,"indexExpression":{"id":2182,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"18396:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18380:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2180,"id":2184,"nodeType":"Return","src":"18373:32:6"}]},"documentation":{"id":2174,"nodeType":"StructuredDocumentation","src":"17848:188:6","text":" @dev Проверить подключение к цепочке\n @param _chainId ID цепочки\n @return isAvailable Доступна ли цепочка"},"functionSelector":"4de184f6","id":2186,"implemented":true,"kind":"function","modifiers":[],"name":"checkChainConnection","nameLocation":"18050:20:6","nodeType":"FunctionDefinition","parameters":{"id":2177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2176,"mutability":"mutable","name":"_chainId","nameLocation":"18079:8:6","nodeType":"VariableDeclaration","scope":2186,"src":"18071:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2175,"name":"uint256","nodeType":"ElementaryTypeName","src":"18071:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18070:18:6"},"returnParameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"isAvailable","nameLocation":"18115:11:6","nodeType":"VariableDeclaration","scope":2186,"src":"18110:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2178,"name":"bool","nodeType":"ElementaryTypeName","src":"18110:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"18109:18:6"},"scope":2617,"src":"18041:371:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2238,"nodeType":"Block","src":"18748:482:6","statements":[{"assignments":[2196],"declarations":[{"constant":false,"id":2196,"mutability":"mutable","name":"proposal","nameLocation":"18775:8:6","nodeType":"VariableDeclaration","scope":2238,"src":"18758:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":2195,"nodeType":"UserDefinedTypeName","pathNode":{"id":2194,"name":"Proposal","nameLocations":["18758:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"18758:8:6"},"referencedDeclaration":939,"src":"18758:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":2200,"initialValue":{"baseExpression":{"id":2197,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"18786:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":2199,"indexExpression":{"id":2198,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"18796:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18786:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18758:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2202,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"18826:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2203,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18835:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"18826:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2204,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"18841:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18826:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":2206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18854:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":2201,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"18818:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18818:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2208,"nodeType":"ExpressionStatement","src":"18818:62:6"},{"body":{"id":2234,"nodeType":"Block","src":"19035:159:6","statements":[{"assignments":[2221],"declarations":[{"constant":false,"id":2221,"mutability":"mutable","name":"chainId","nameLocation":"19057:7:6","nodeType":"VariableDeclaration","scope":2234,"src":"19049:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2220,"name":"uint256","nodeType":"ElementaryTypeName","src":"19049:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2225,"initialValue":{"arguments":[{"id":2223,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"19087:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2222,"name":"getSupportedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2346,"src":"19067:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19067:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19049:40:6"},{"condition":{"id":2229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19107:30:6","subExpression":{"arguments":[{"id":2227,"name":"chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2221,"src":"19129:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2226,"name":"checkChainConnection","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"19108:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19108:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2233,"nodeType":"IfStatement","src":"19103:81:6","trueBody":{"id":2232,"nodeType":"Block","src":"19139:45:6","statements":[{"expression":{"hexValue":"66616c7365","id":2230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19164:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":2193,"id":2231,"nodeType":"Return","src":"19157:12:6"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2213,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"19000:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2214,"name":"getSupportedChainCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"19004:22:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19004:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19000:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2235,"initializationExpression":{"assignments":[2210],"declarations":[{"constant":false,"id":2210,"mutability":"mutable","name":"i","nameLocation":"18993:1:6","nodeType":"VariableDeclaration","scope":2235,"src":"18985:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2209,"name":"uint256","nodeType":"ElementaryTypeName","src":"18985:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2212,"initialValue":{"hexValue":"30","id":2211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18997:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18985:13:6"},"loopExpression":{"expression":{"id":2218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"19030:3:6","subExpression":{"id":2217,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"19030:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2219,"nodeType":"ExpressionStatement","src":"19030:3:6"},"nodeType":"ForStatement","src":"18980:214:6"},{"expression":{"hexValue":"74727565","id":2236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19219:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2193,"id":2237,"nodeType":"Return","src":"19212:11:6"}]},"documentation":{"id":2187,"nodeType":"StructuredDocumentation","src":"18418:234:6","text":" @dev Проверить все подключения перед синхронизацией\n @param _proposalId ID предложения\n @return allChainsReady Готовы ли все цепочки"},"functionSelector":"e49a62e9","id":2239,"implemented":true,"kind":"function","modifiers":[],"name":"checkSyncReadiness","nameLocation":"18666:18:6","nodeType":"FunctionDefinition","parameters":{"id":2190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2189,"mutability":"mutable","name":"_proposalId","nameLocation":"18693:11:6","nodeType":"VariableDeclaration","scope":2239,"src":"18685:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2188,"name":"uint256","nodeType":"ElementaryTypeName","src":"18685:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18684:21:6"},"returnParameters":{"id":2193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2192,"mutability":"mutable","name":"allChainsReady","nameLocation":"18732:14:6","nodeType":"VariableDeclaration","scope":2239,"src":"18727:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2191,"name":"bool","nodeType":"ElementaryTypeName","src":"18727:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"18726:21:6"},"scope":2617,"src":"18657:573:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2280,"nodeType":"Block","src":"19444:400:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":2247,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19481:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2246,"name":"checkSyncReadiness","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"19462:18:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19462:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420616c6c20636861696e73207265616479","id":2249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19495:22:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_9ac91bcc9dd94a174980f450c5e56b966ea5d9e218d96b80a76095f437f6badf","typeString":"literal_string \"Not all chains ready\""},"value":"Not all chains ready"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9ac91bcc9dd94a174980f450c5e56b966ea5d9e218d96b80a76095f437f6badf","typeString":"literal_string \"Not all chains ready\""}],"id":2245,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19454:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19454:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2251,"nodeType":"ExpressionStatement","src":"19454:64:6"},{"body":{"id":2274,"nodeType":"Block","src":"19676:112:6","statements":[{"assignments":[2264],"declarations":[{"constant":false,"id":2264,"mutability":"mutable","name":"chainId","nameLocation":"19698:7:6","nodeType":"VariableDeclaration","scope":2274,"src":"19690:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2263,"name":"uint256","nodeType":"ElementaryTypeName","src":"19690:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2268,"initialValue":{"arguments":[{"id":2266,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19728:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2265,"name":"getSupportedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2346,"src":"19708:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19708:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19690:40:6"},{"expression":{"arguments":[{"id":2270,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19756:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2271,"name":"chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"19769:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2269,"name":"syncToChain","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2296,"src":"19744:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":2272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19744:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2273,"nodeType":"ExpressionStatement","src":"19744:33:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2256,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19641:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2257,"name":"getSupportedChainCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"19645:22:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19645:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19641:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2275,"initializationExpression":{"assignments":[2253],"declarations":[{"constant":false,"id":2253,"mutability":"mutable","name":"i","nameLocation":"19634:1:6","nodeType":"VariableDeclaration","scope":2275,"src":"19626:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2252,"name":"uint256","nodeType":"ElementaryTypeName","src":"19626:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2255,"initialValue":{"hexValue":"30","id":2254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19638:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"19626:13:6"},"loopExpression":{"expression":{"id":2261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"19671:3:6","subExpression":{"id":2260,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19671:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2262,"nodeType":"ExpressionStatement","src":"19671:3:6"},"nodeType":"ForStatement","src":"19621:167:6"},{"eventCall":{"arguments":[{"id":2277,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19825:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2276,"name":"SyncCompleted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2616,"src":"19811:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19811:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2279,"nodeType":"EmitStatement","src":"19806:31:6"}]},"documentation":{"id":2240,"nodeType":"StructuredDocumentation","src":"19236:148:6","text":" @dev Синхронизация только при 100% готовности\n @param _proposalId ID предложения"},"functionSelector":"7ce288ea","id":2281,"implemented":true,"kind":"function","modifiers":[],"name":"syncToAllChains","nameLocation":"19398:15:6","nodeType":"FunctionDefinition","parameters":{"id":2243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2242,"mutability":"mutable","name":"_proposalId","nameLocation":"19422:11:6","nodeType":"VariableDeclaration","scope":2281,"src":"19414:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2241,"name":"uint256","nodeType":"ElementaryTypeName","src":"19414:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19413:21:6"},"returnParameters":{"id":2244,"nodeType":"ParameterList","parameters":[],"src":"19444:0:6"},"scope":2617,"src":"19389:455:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2295,"nodeType":"Block","src":"20106:262:6","statements":[{"eventCall":{"arguments":[{"id":2290,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2284,"src":"20323:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2291,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"20336:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2292,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2286,"src":"20352:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2289,"name":"CrossChainExecutionSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"20299:23:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":2293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20299:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2294,"nodeType":"EmitStatement","src":"20294:67:6"}]},"documentation":{"id":2282,"nodeType":"StructuredDocumentation","src":"19850:182:6","text":" @dev Синхронизация в конкретную цепочку\n @param _proposalId ID предложения\n @param _chainId ID цепочки"},"id":2296,"implemented":true,"kind":"function","modifiers":[],"name":"syncToChain","nameLocation":"20046:11:6","nodeType":"FunctionDefinition","parameters":{"id":2287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2284,"mutability":"mutable","name":"_proposalId","nameLocation":"20066:11:6","nodeType":"VariableDeclaration","scope":2296,"src":"20058:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2283,"name":"uint256","nodeType":"ElementaryTypeName","src":"20058:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2286,"mutability":"mutable","name":"_chainId","nameLocation":"20087:8:6","nodeType":"VariableDeclaration","scope":2296,"src":"20079:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2285,"name":"uint256","nodeType":"ElementaryTypeName","src":"20079:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20057:39:6"},"returnParameters":{"id":2288,"nodeType":"ParameterList","parameters":[],"src":"20106:0:6"},"scope":2617,"src":"20037:331:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2308,"nodeType":"Block","src":"20548:278:6","statements":[{"assignments":[2303],"declarations":[{"constant":false,"id":2303,"mutability":"mutable","name":"count","nameLocation":"20566:5:6","nodeType":"VariableDeclaration","scope":2308,"src":"20558:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2302,"name":"uint256","nodeType":"ElementaryTypeName","src":"20558:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2305,"initialValue":{"hexValue":"30","id":2304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20574:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20558:17:6"},{"expression":{"hexValue":"34","id":2306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20818:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"functionReturnParameters":2301,"id":2307,"nodeType":"Return","src":"20811:8:6"}]},"documentation":{"id":2297,"nodeType":"StructuredDocumentation","src":"20374:105:6","text":" @dev Получить количество поддерживаемых цепочек"},"functionSelector":"eced3dfb","id":2309,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedChainCount","nameLocation":"20493:22:6","nodeType":"FunctionDefinition","parameters":{"id":2298,"nodeType":"ParameterList","parameters":[],"src":"20515:2:6"},"returnParameters":{"id":2301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2309,"src":"20539:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2299,"name":"uint256","nodeType":"ElementaryTypeName","src":"20539:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20538:9:6"},"scope":2617,"src":"20484:342:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2345,"nodeType":"Block","src":"21068:248:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2317,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"21082:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21092:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21082:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2322,"nodeType":"IfStatement","src":"21078:25:6","trueBody":{"expression":{"hexValue":"31","id":2320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21102:1:6","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":2316,"id":2321,"nodeType":"Return","src":"21095:8:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2323,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"21134:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21144:1:6","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"21134:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2328,"nodeType":"IfStatement","src":"21130:27:6","trueBody":{"expression":{"hexValue":"313337","id":2326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21154:3:6","typeDescriptions":{"typeIdentifier":"t_rational_137_by_1","typeString":"int_const 137"},"value":"137"},"functionReturnParameters":2316,"id":2327,"nodeType":"Return","src":"21147:10:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2329,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"21185:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":2330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21195:1:6","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"21185:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2334,"nodeType":"IfStatement","src":"21181:26:6","trueBody":{"expression":{"hexValue":"3536","id":2332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21205:2:6","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},"functionReturnParameters":2316,"id":2333,"nodeType":"Return","src":"21198:9:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2335,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"21232:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"33","id":2336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21242:1:6","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"21232:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2340,"nodeType":"IfStatement","src":"21228:29:6","trueBody":{"expression":{"hexValue":"3432313631","id":2338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21252:5:6","typeDescriptions":{"typeIdentifier":"t_rational_42161_by_1","typeString":"int_const 42161"},"value":"42161"},"functionReturnParameters":2316,"id":2339,"nodeType":"Return","src":"21245:12:6"}},{"expression":{"arguments":[{"hexValue":"496e76616c696420636861696e20696e646578","id":2342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21287:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_51299dff4c796e1ac8ee8b9a472d4251ecba410abfcfdfff3c492d6f0f63bc13","typeString":"literal_string \"Invalid chain index\""},"value":"Invalid chain index"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_51299dff4c796e1ac8ee8b9a472d4251ecba410abfcfdfff3c492d6f0f63bc13","typeString":"literal_string \"Invalid chain index\""}],"id":2341,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"21280:6:6","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21280:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2344,"nodeType":"ExpressionStatement","src":"21280:29:6"}]},"documentation":{"id":2310,"nodeType":"StructuredDocumentation","src":"20832:156:6","text":" @dev Получить ID поддерживаемой цепочки по индексу\n @param _index Индекс цепочки"},"functionSelector":"9a49bdde","id":2346,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedChainId","nameLocation":"21002:19:6","nodeType":"FunctionDefinition","parameters":{"id":2313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2312,"mutability":"mutable","name":"_index","nameLocation":"21030:6:6","nodeType":"VariableDeclaration","scope":2346,"src":"21022:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2311,"name":"uint256","nodeType":"ElementaryTypeName","src":"21022:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21021:16:6"},"returnParameters":{"id":2316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2315,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2346,"src":"21059:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2314,"name":"uint256","nodeType":"ElementaryTypeName","src":"21059:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21058:9:6"},"scope":2617,"src":"20993:323:6","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":2460,"nodeType":"Block","src":"21517:1052:6","statements":[{"assignments":[2353,2355],"declarations":[{"constant":false,"id":2353,"mutability":"mutable","name":"selector","nameLocation":"21584:8:6","nodeType":"VariableDeclaration","scope":2460,"src":"21577:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2352,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21577:6:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":2355,"mutability":"mutable","name":"data","nameLocation":"21607:4:6","nodeType":"VariableDeclaration","scope":2460,"src":"21594:17:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2354,"name":"bytes","nodeType":"ElementaryTypeName","src":"21594:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2365,"initialValue":{"arguments":[{"id":2358,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2349,"src":"21626:10:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21639:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2359,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21639:6:6","typeDescriptions":{}}},{"id":2362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21647:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2361,"name":"bytes","nodeType":"ElementaryTypeName","src":"21647:5:6","typeDescriptions":{}}}],"id":2363,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21638:15:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_bytes4_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(bytes4),type(bytes storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_bytes4_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(bytes4),type(bytes storage pointer))"}],"expression":{"id":2356,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21615:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21619:6:6","memberName":"decode","nodeType":"MemberAccess","src":"21615:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21615:39:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes4_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes4,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"21576:78:6"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2366,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2353,"src":"21677:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"7472616e7366657228616464726573732c75696e7432353629","id":2370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21706:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a9059cbb2ab09eb219583f4a59a5d0623ade346d962bcd4e46b11da047c9049b","typeString":"literal_string \"transfer(address,uint256)\""},"value":"transfer(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_a9059cbb2ab09eb219583f4a59a5d0623ade346d962bcd4e46b11da047c9049b","typeString":"literal_string \"transfer(address,uint256)\""}],"id":2369,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21696:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21696:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21689:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2367,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21689:6:6","typeDescriptions":{}}},"id":2372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21689:46:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"21677:58:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2396,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2353,"src":"21950:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"6d696e7428616464726573732c75696e7432353629","id":2400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21979:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_40c10f19c047ae7dfa66d6312b683d2ea3dfbcb4159e96b967c5f4b0a86f2842","typeString":"literal_string \"mint(address,uint256)\""},"value":"mint(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_40c10f19c047ae7dfa66d6312b683d2ea3dfbcb4159e96b967c5f4b0a86f2842","typeString":"literal_string \"mint(address,uint256)\""}],"id":2399,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21969:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21969:34:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21962:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2397,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21962:6:6","typeDescriptions":{}}},"id":2402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21962:42:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"21950:54:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2424,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2353,"src":"22203:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"6275726e28616464726573732c75696e7432353629","id":2428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22232:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_9dc29fac0ba6d4fc521c69c2b0c636d612e3343bc39ed934429b8876b0d12cba","typeString":"literal_string \"burn(address,uint256)\""},"value":"burn(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9dc29fac0ba6d4fc521c69c2b0c636d612e3343bc39ed934429b8876b0d12cba","typeString":"literal_string \"burn(address,uint256)\""}],"id":2427,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"22222:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22222:34:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2426,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22215:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2425,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22215:6:6","typeDescriptions":{}}},"id":2430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22215:42:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"22203:54:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2456,"nodeType":"Block","src":"22456:107:6","statements":[{"expression":{"arguments":[{"hexValue":"556e6b6e6f776e206f7065726174696f6e","id":2453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22532:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a8583565d5058e599a0a507bc84ed1111529ac3c53e437281d981e6a5fe8395d","typeString":"literal_string \"Unknown operation\""},"value":"Unknown operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_a8583565d5058e599a0a507bc84ed1111529ac3c53e437281d981e6a5fe8395d","typeString":"literal_string \"Unknown operation\""}],"id":2452,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"22525:6:6","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22525:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2455,"nodeType":"ExpressionStatement","src":"22525:27:6"}]},"id":2457,"nodeType":"IfStatement","src":"22199:364:6","trueBody":{"id":2451,"nodeType":"Block","src":"22259:191:6","statements":[{"assignments":[2433,2435],"declarations":[{"constant":false,"id":2433,"mutability":"mutable","name":"from","nameLocation":"22346:4:6","nodeType":"VariableDeclaration","scope":2451,"src":"22338:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2432,"name":"address","nodeType":"ElementaryTypeName","src":"22338:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2435,"mutability":"mutable","name":"amount","nameLocation":"22360:6:6","nodeType":"VariableDeclaration","scope":2451,"src":"22352:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2434,"name":"uint256","nodeType":"ElementaryTypeName","src":"22352:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2445,"initialValue":{"arguments":[{"id":2438,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2355,"src":"22381:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22388:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2439,"name":"address","nodeType":"ElementaryTypeName","src":"22388:7:6","typeDescriptions":{}}},{"id":2442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22397:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2441,"name":"uint256","nodeType":"ElementaryTypeName","src":"22397:7:6","typeDescriptions":{}}}],"id":2443,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22387:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2436,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"22370:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22374:6:6","memberName":"decode","nodeType":"MemberAccess","src":"22370:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22370:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"22337:69:6"},{"expression":{"arguments":[{"id":2447,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"22426:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2448,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"22432:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2446,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":524,"src":"22420:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22420:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2450,"nodeType":"ExpressionStatement","src":"22420:19:6"}]}},"id":2458,"nodeType":"IfStatement","src":"21946:617:6","trueBody":{"id":2423,"nodeType":"Block","src":"22006:187:6","statements":[{"assignments":[2405,2407],"declarations":[{"constant":false,"id":2405,"mutability":"mutable","name":"to","nameLocation":"22093:2:6","nodeType":"VariableDeclaration","scope":2423,"src":"22085:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2404,"name":"address","nodeType":"ElementaryTypeName","src":"22085:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2407,"mutability":"mutable","name":"amount","nameLocation":"22105:6:6","nodeType":"VariableDeclaration","scope":2423,"src":"22097:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2406,"name":"uint256","nodeType":"ElementaryTypeName","src":"22097:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2417,"initialValue":{"arguments":[{"id":2410,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2355,"src":"22126:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22133:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2411,"name":"address","nodeType":"ElementaryTypeName","src":"22133:7:6","typeDescriptions":{}}},{"id":2414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22142:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2413,"name":"uint256","nodeType":"ElementaryTypeName","src":"22142:7:6","typeDescriptions":{}}}],"id":2415,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22132:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2408,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"22115:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22119:6:6","memberName":"decode","nodeType":"MemberAccess","src":"22115:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22115:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"22084:67:6"},{"expression":{"arguments":[{"id":2419,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2405,"src":"22171:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2420,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2407,"src":"22175:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2418,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":491,"src":"22165:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22165:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2422,"nodeType":"ExpressionStatement","src":"22165:17:6"}]}},"id":2459,"nodeType":"IfStatement","src":"21673:890:6","trueBody":{"id":2395,"nodeType":"Block","src":"21737:203:6","statements":[{"assignments":[2375,2377],"declarations":[{"constant":false,"id":2375,"mutability":"mutable","name":"to","nameLocation":"21824:2:6","nodeType":"VariableDeclaration","scope":2395,"src":"21816:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2374,"name":"address","nodeType":"ElementaryTypeName","src":"21816:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2377,"mutability":"mutable","name":"amount","nameLocation":"21836:6:6","nodeType":"VariableDeclaration","scope":2395,"src":"21828:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2376,"name":"uint256","nodeType":"ElementaryTypeName","src":"21828:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2387,"initialValue":{"arguments":[{"id":2380,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2355,"src":"21857:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21864:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2381,"name":"address","nodeType":"ElementaryTypeName","src":"21864:7:6","typeDescriptions":{}}},{"id":2384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21873:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2383,"name":"uint256","nodeType":"ElementaryTypeName","src":"21873:7:6","typeDescriptions":{}}}],"id":2385,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21863:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2378,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21846:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21850:6:6","memberName":"decode","nodeType":"MemberAccess","src":"21846:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21846:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"21815:67:6"},{"expression":{"arguments":[{"expression":{"id":2389,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21906:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21910:6:6","memberName":"sender","nodeType":"MemberAccess","src":"21906:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2391,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2375,"src":"21918:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2392,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2377,"src":"21922:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2388,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"21896:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21896:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2394,"nodeType":"ExpressionStatement","src":"21896:33:6"}]}}]},"documentation":{"id":2347,"nodeType":"StructuredDocumentation","src":"21322:129:6","text":" @dev Исполнить операцию\n @param _operation Операция для исполнения"},"id":2461,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperation","nameLocation":"21465:17:6","nodeType":"FunctionDefinition","parameters":{"id":2350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2349,"mutability":"mutable","name":"_operation","nameLocation":"21496:10:6","nodeType":"VariableDeclaration","scope":2461,"src":"21483:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2348,"name":"bytes","nodeType":"ElementaryTypeName","src":"21483:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21482:25:6"},"returnParameters":{"id":2351,"nodeType":"ParameterList","parameters":[],"src":"21517:0:6"},"scope":2617,"src":"21456:1113:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2514,"nodeType":"Block","src":"22797:358:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2471,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22825:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22829:6:6","memberName":"sender","nodeType":"MemberAccess","src":"22825:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2470,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"22815:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22815:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22839:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22815:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c65","id":2476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22842:32:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_386d52cc0823e9cc706c7e0057db969b8e9f95b86428ad9df4e5e7e608f0ee74","typeString":"literal_string \"Must hold tokens to add module\""},"value":"Must hold tokens to add module"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_386d52cc0823e9cc706c7e0057db969b8e9f95b86428ad9df4e5e7e608f0ee74","typeString":"literal_string \"Must hold tokens to add module\""}],"id":2469,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22807:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22807:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2478,"nodeType":"ExpressionStatement","src":"22807:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2480,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2466,"src":"22893:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22919:1:6","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":2482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22911:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2481,"name":"address","nodeType":"ElementaryTypeName","src":"22911:7:6","typeDescriptions":{}}},"id":2484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22911:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22893:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":2486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22923:14:6","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":2479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22885:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22885:53:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2488,"nodeType":"ExpressionStatement","src":"22885:53:6"},{"expression":{"arguments":[{"id":2493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22956:25:6","subExpression":{"baseExpression":{"id":2490,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"22957:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2492,"indexExpression":{"id":2491,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"22971:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22957:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f64756c6520616c726561647920657869737473","id":2494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22983:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_886f67ba7d9a179ad4a77f53bed0afe9305a32e844dbd6b94e697def54438978","typeString":"literal_string \"Module already exists\""},"value":"Module already exists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_886f67ba7d9a179ad4a77f53bed0afe9305a32e844dbd6b94e697def54438978","typeString":"literal_string \"Module already exists\""}],"id":2489,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22948:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22948:59:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2496,"nodeType":"ExpressionStatement","src":"22948:59:6"},{"expression":{"id":2501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2497,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"23018:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2499,"indexExpression":{"id":2498,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"23026:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23018:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2500,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2466,"src":"23039:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23018:35:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2502,"nodeType":"ExpressionStatement","src":"23018:35:6"},{"expression":{"id":2507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2503,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23063:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2505,"indexExpression":{"id":2504,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"23077:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23063:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23090:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"23063:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2508,"nodeType":"ExpressionStatement","src":"23063:31:6"},{"eventCall":{"arguments":[{"id":2510,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"23122:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2511,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2466,"src":"23133:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2509,"name":"ModuleAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"23110:11:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23110:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2513,"nodeType":"EmitStatement","src":"23105:43:6"}]},"documentation":{"id":2462,"nodeType":"StructuredDocumentation","src":"22575:146:6","text":" @dev Добавить модуль\n @param _moduleId ID модуля\n @param _moduleAddress Адрес модуля"},"functionSelector":"35324eee","id":2515,"implemented":true,"kind":"function","modifiers":[],"name":"addModule","nameLocation":"22735:9:6","nodeType":"FunctionDefinition","parameters":{"id":2467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2464,"mutability":"mutable","name":"_moduleId","nameLocation":"22753:9:6","nodeType":"VariableDeclaration","scope":2515,"src":"22745:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2463,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22745:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2466,"mutability":"mutable","name":"_moduleAddress","nameLocation":"22772:14:6","nodeType":"VariableDeclaration","scope":2515,"src":"22764:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2465,"name":"address","nodeType":"ElementaryTypeName","src":"22764:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22744:43:6"},"returnParameters":{"id":2468,"nodeType":"ParameterList","parameters":[],"src":"22797:0:6"},"scope":2617,"src":"22726:429:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2553,"nodeType":"Block","src":"23307:274:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2523,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"23335:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23339:6:6","memberName":"sender","nodeType":"MemberAccess","src":"23335:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2522,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"23325:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23325:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2526,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23349:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23325:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c65","id":2528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23352:35:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc7fbb9ac88e81b58eadf3fb00bfe01ffe693076256b7e1212d2dec03ec2a636","typeString":"literal_string \"Must hold tokens to remove module\""},"value":"Must hold tokens to remove module"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc7fbb9ac88e81b58eadf3fb00bfe01ffe693076256b7e1212d2dec03ec2a636","typeString":"literal_string \"Must hold tokens to remove module\""}],"id":2521,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23317:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23317:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2530,"nodeType":"ExpressionStatement","src":"23317:71:6"},{"expression":{"arguments":[{"baseExpression":{"id":2532,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23406:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2534,"indexExpression":{"id":2533,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2518,"src":"23420:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23406:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f64756c6520646f6573206e6f74206578697374","id":2535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23432:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_148e71891f99baebb1c86efc789ab7bd91f813832ac214a9b47559ccdff1d356","typeString":"literal_string \"Module does not exist\""},"value":"Module does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_148e71891f99baebb1c86efc789ab7bd91f813832ac214a9b47559ccdff1d356","typeString":"literal_string \"Module does not exist\""}],"id":2531,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23398:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23398:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2537,"nodeType":"ExpressionStatement","src":"23398:58:6"},{"expression":{"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23467:25:6","subExpression":{"baseExpression":{"id":2538,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"23474:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2540,"indexExpression":{"id":2539,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2518,"src":"23482:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23474:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2542,"nodeType":"ExpressionStatement","src":"23467:25:6"},{"expression":{"id":2547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2543,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23502:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2545,"indexExpression":{"id":2544,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2518,"src":"23516:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23502:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23529:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"23502:32:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2548,"nodeType":"ExpressionStatement","src":"23502:32:6"},{"eventCall":{"arguments":[{"id":2550,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2518,"src":"23564:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2549,"name":"ModuleRemoved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"23550:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":2551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23550:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2552,"nodeType":"EmitStatement","src":"23545:29:6"}]},"documentation":{"id":2516,"nodeType":"StructuredDocumentation","src":"23161:91:6","text":" @dev Удалить модуль\n @param _moduleId ID модуля"},"functionSelector":"4114509b","id":2554,"implemented":true,"kind":"function","modifiers":[],"name":"removeModule","nameLocation":"23266:12:6","nodeType":"FunctionDefinition","parameters":{"id":2519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2518,"mutability":"mutable","name":"_moduleId","nameLocation":"23287:9:6","nodeType":"VariableDeclaration","scope":2554,"src":"23279:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2517,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23279:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23278:19:6"},"returnParameters":{"id":2520,"nodeType":"ParameterList","parameters":[],"src":"23307:0:6"},"scope":2617,"src":"23257:324:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2563,"nodeType":"Block","src":"23721:31:6","statements":[{"expression":{"id":2561,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"23738:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"functionReturnParameters":2560,"id":2562,"nodeType":"Return","src":"23731:14:6"}]},"documentation":{"id":2555,"nodeType":"StructuredDocumentation","src":"23587:68:6","text":" @dev Получить информацию о DLE"},"functionSelector":"204c5d1f","id":2564,"implemented":true,"kind":"function","modifiers":[],"name":"getDLEInfo","nameLocation":"23669:10:6","nodeType":"FunctionDefinition","parameters":{"id":2556,"nodeType":"ParameterList","parameters":[],"src":"23679:2:6"},"returnParameters":{"id":2560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2559,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2564,"src":"23705:14:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_memory_ptr","typeString":"struct DLE.DLEInfo"},"typeName":{"id":2558,"nodeType":"UserDefinedTypeName","pathNode":{"id":2557,"name":"DLEInfo","nameLocations":["23705:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":885,"src":"23705:7:6"},"referencedDeclaration":885,"src":"23705:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"internal"}],"src":"23704:16:6"},"scope":2617,"src":"23660:92:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2576,"nodeType":"Block","src":"23951:48:6","statements":[{"expression":{"baseExpression":{"id":2572,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23968:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2574,"indexExpression":{"id":2573,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"23982:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23968:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2571,"id":2575,"nodeType":"Return","src":"23961:31:6"}]},"documentation":{"id":2565,"nodeType":"StructuredDocumentation","src":"23758:116:6","text":" @dev Проверить, активен ли модуль\n @param _moduleId ID модуля"},"functionSelector":"4b145793","id":2577,"implemented":true,"kind":"function","modifiers":[],"name":"isModuleActive","nameLocation":"23888:14:6","nodeType":"FunctionDefinition","parameters":{"id":2568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2567,"mutability":"mutable","name":"_moduleId","nameLocation":"23911:9:6","nodeType":"VariableDeclaration","scope":2577,"src":"23903:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2566,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23903:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23902:19:6"},"returnParameters":{"id":2571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2577,"src":"23945:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2569,"name":"bool","nodeType":"ElementaryTypeName","src":"23945:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23944:6:6"},"scope":2617,"src":"23879:120:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2589,"nodeType":"Block","src":"24191:42:6","statements":[{"expression":{"baseExpression":{"id":2585,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"24208:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2587,"indexExpression":{"id":2586,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2580,"src":"24216:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24208:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2584,"id":2588,"nodeType":"Return","src":"24201:25:6"}]},"documentation":{"id":2578,"nodeType":"StructuredDocumentation","src":"24005:104:6","text":" @dev Получить адрес модуля\n @param _moduleId ID модуля"},"functionSelector":"22dbefbb","id":2590,"implemented":true,"kind":"function","modifiers":[],"name":"getModuleAddress","nameLocation":"24123:16:6","nodeType":"FunctionDefinition","parameters":{"id":2581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2580,"mutability":"mutable","name":"_moduleId","nameLocation":"24148:9:6","nodeType":"VariableDeclaration","scope":2590,"src":"24140:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2579,"name":"bytes32","nodeType":"ElementaryTypeName","src":"24140:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"24139:19:6"},"returnParameters":{"id":2584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2583,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2590,"src":"24182:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2582,"name":"address","nodeType":"ElementaryTypeName","src":"24182:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24181:9:6"},"scope":2617,"src":"24114:119:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2602,"nodeType":"Block","src":"24450:49:6","statements":[{"expression":{"baseExpression":{"id":2598,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"24467:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2600,"indexExpression":{"id":2599,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2593,"src":"24483:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24467:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2597,"id":2601,"nodeType":"Return","src":"24460:32:6"}]},"documentation":{"id":2591,"nodeType":"StructuredDocumentation","src":"24239:133:6","text":" @dev Проверить, поддерживается ли цепочка\n @param _chainId ID цепочки"},"functionSelector":"5221c1f0","id":2603,"implemented":true,"kind":"function","modifiers":[],"name":"isChainSupported","nameLocation":"24386:16:6","nodeType":"FunctionDefinition","parameters":{"id":2594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2593,"mutability":"mutable","name":"_chainId","nameLocation":"24411:8:6","nodeType":"VariableDeclaration","scope":2603,"src":"24403:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2592,"name":"uint256","nodeType":"ElementaryTypeName","src":"24403:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24402:18:6"},"returnParameters":{"id":2597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2603,"src":"24444:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2595,"name":"bool","nodeType":"ElementaryTypeName","src":"24444:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24443:6:6"},"scope":2617,"src":"24377:122:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2611,"nodeType":"Block","src":"24644:38:6","statements":[{"expression":{"id":2609,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"24661:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2608,"id":2610,"nodeType":"Return","src":"24654:21:6"}]},"documentation":{"id":2604,"nodeType":"StructuredDocumentation","src":"24505:73:6","text":" @dev Получить текущий ID цепочки"},"functionSelector":"5cf0e8a4","id":2612,"implemented":true,"kind":"function","modifiers":[],"name":"getCurrentChainId","nameLocation":"24592:17:6","nodeType":"FunctionDefinition","parameters":{"id":2605,"nodeType":"ParameterList","parameters":[],"src":"24609:2:6"},"returnParameters":{"id":2608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2607,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2612,"src":"24635:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2606,"name":"uint256","nodeType":"ElementaryTypeName","src":"24635:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24634:9:6"},"scope":2617,"src":"24583:99:6","stateMutability":"view","virtual":false,"visibility":"external"},{"anonymous":false,"eventSelector":"57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910","id":2616,"name":"SyncCompleted","nameLocation":"24749:13:6","nodeType":"EventDefinition","parameters":{"id":2615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2614,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"24771:10:6","nodeType":"VariableDeclaration","scope":2616,"src":"24763:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2613,"name":"uint256","nodeType":"ElementaryTypeName","src":"24763:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24762:20:6"},"src":"24743:40:6"}],"scope":2618,"src":"359:24426:6","usedErrors":[11,16,21,30,35,40,799],"usedEvents":[663,672,1025,1033,1041,1051,1057,1065,1075,1081,1087,1091,1099,1107,1115,2616]}],"src":"32:24754:6"},"id":6}},"contracts":{"@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/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}. All two of these 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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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/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/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/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[{"inputs":[],"name":"ReentrancyGuardReentrantCall","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\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, consider using {ReentrancyGuardTransient} instead. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]}},\"version\":1}"}},"contracts/DLE.sol":{"DLE":{"abi":[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"quorumPercentage","type":"uint256"},{"internalType":"address[]","name":"initialPartners","type":"address[]"},{"internalType":"uint256[]","name":"initialAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"supportedChainIds","type":"uint256[]"}],"internalType":"struct DLE.DLEConfig","name":"config","type":"tuple"},{"internalType":"uint256","name":"_currentChainId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"ReentrancyGuardReentrantCall","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":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainExecutionSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainMultiSigSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainVoteSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"coordinates","type":"string"},{"indexed":false,"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oktmo","type":"uint256"},{"indexed":false,"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"indexed":false,"internalType":"uint256","name":"kpp","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"supportedChainIds","type":"uint256[]"}],"name":"DLEInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"InitialTokensDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"moduleId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"moduleAddress","type":"address"}],"name":"ModuleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"moduleId","type":"bytes32"}],"name":"ModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"operationHash","type":"bytes32"}],"name":"MultiSigExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bytes32","name":"operationHash","type":"bytes32"}],"name":"MultiSigOperationCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"signaturePower","type":"uint256"}],"name":"MultiSigSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"operation","type":"bytes"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"votingPower","type":"uint256"}],"name":"ProposalVoted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"SyncCompleted","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":"bytes32","name":"","type":"bytes32"}],"name":"activeModules","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"},{"internalType":"address","name":"_moduleAddress","type":"address"}],"name":"addModule","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_chainId","type":"uint256"}],"name":"checkChainConnection","outputs":[{"internalType":"bool","name":"isAvailable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"}],"name":"checkMultiSigResult","outputs":[{"internalType":"bool","name":"passed","type":"bool"},{"internalType":"bool","name":"quorumReached","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"checkProposalResult","outputs":[{"internalType":"bool","name":"passed","type":"bool"},{"internalType":"bool","name":"quorumReached","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"checkSyncReadiness","outputs":[{"internalType":"bool","name":"allChainsReady","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_operationHash","type":"bytes32"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"createMultiSigOperation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"bytes","name":"_operation","type":"bytes"},{"internalType":"uint256","name":"_governanceChainId","type":"uint256"}],"name":"createProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentChainId","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":"dleInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"}],"name":"executeMultiSigOperation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"executeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"executedMultiSig","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"executedProposals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDLEInfo","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"internalType":"struct DLE.DLEInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"getModuleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupportedChainCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getSupportedChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"}],"name":"isChainSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"isModuleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"modules","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multiSigCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"multiSigOperations","outputs":[{"internalType":"bytes32","name":"operationHash","type":"bytes32"},{"internalType":"uint256","name":"forSignatures","type":"uint256"},{"internalType":"uint256","name":"againstSignatures","type":"uint256"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"description","type":"string"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bytes","name":"operation","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"},{"internalType":"bool","name":"_support","type":"bool"}],"name":"signMultiSigOperation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supportedChains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"bytes","name":"_proof","type":"bytes"}],"name":"syncExecutionFromChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"uint256","name":"_forSignatures","type":"uint256"},{"internalType":"uint256","name":"_againstSignatures","type":"uint256"},{"internalType":"bytes","name":"_proof","type":"bytes"}],"name":"syncMultiSigFromChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"syncToAllChains","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"uint256","name":"_forVotes","type":"uint256"},{"internalType":"uint256","name":"_againstVotes","type":"uint256"},{"internalType":"bytes","name":"_proof","type":"bytes"}],"name":"syncVoteFromChain","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"bool","name":"_support","type":"bool"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_array_uint256_dyn_fromMemory":{"entryPoint":4642,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":4531,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":4880,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":4934,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":4456,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_array_string_dyn":{"entryPoint":4618,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_bytes1":{"entryPoint":4796,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":4494,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4735,"id":null,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":4821,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_uint256_dyn":{"entryPoint":4837,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"608060405234620011075762003e8380380390816200001e8162001168565b918239604081838101031262001107578051906001600160401b03821162001107576101809283838301828401031262001107576040519384016001600160401b0381118582101762000b7b57604052818301516001600160401b038111620011075762000094908284019085850101620011b3565b8452818301602001516001600160401b0381116200110757620000bf908284019085850101620011b3565b6020850152818301604001516001600160401b0381116200110757620000ed908284019085850101620011b3565b6040850152818301606001516001600160401b03811162001107576200011b908284019085850101620011b3565b60608501528183016080818101519086015260a0808201519086015260c001516001600160401b038111620011075783830101818301601f8201121562001107578051620001736200016d826200120a565b62001168565b9160208084848152019260051b820101918486018311620011075760208201905b83821062001134575050505060c085015281830160e08181015190860152610100808201519086015261012001516001600160401b0381116200110757818301601f8286860101011215620011075780848401015190620001f96200016d836200120a565b91602083828152019184860160208360051b838a8a01010101116200110757916020838888010101925b60208360051b828a8a0101010184106200110c575050505061012085015281830161014001516001600160401b03811162001107576200026b90828401908585010162001222565b6101408501528183016101600151926001600160401b03841162001107576020936200029d9284019184010162001222565b610160840152015181516020830151815191939092916001600160401b03811162000b7b57620002cf6003546200127f565b601f8111620010b4575b506020601f82116001146200104457819293949560009262001038575b50508160011b916000199060031b1c1916176003555b82516001600160401b03811162000b7b576200032a6004546200127f565b601f811162000fe5575b506020601f821160011462000f76578192939460009262000f6a575b50508160011b916000199060031b1c1916176004555b6001600555805191602082015160408301516060840151608085015160a08601519060c08701519260e088015194604051968761014081011060018060401b036101408a01111762000b7b5761014088016040528a8852602088015260408701526060860152608085015260a084015260c083015260e0820152426101008201526001610120820152835160018060401b03811162000b7b576200040c6006546200127f565b601f811162000f17575b506020601f821160011462000ea757819293949560009262000e9b575b50508160011b916000199060031b1c1916176006555b602081015180519093906001600160401b03811162000b7b576200046f6007546200127f565b601f811162000e48575b506020601f821160011462000dd857819293949560009262000dcc575b50508160011b916000199060031b1c1916176007555b604082015180519093906001600160401b03811162000b7b57620004d26008546200127f565b601f811162000d79575b506020601f821160011462000d0957819293949560009262000cfd575b50508160011b916000199060031b1c1916176008555b606083015180519093906001600160401b03811162000b7b57620005356009546200127f565b601f811162000caa575b506020601f821160011462000c3a57819293949560009262000c2e575b50508160011b916000199060031b1c1916176009555b6080810151600a5560a0810151600b5560c081015180519068010000000000000000821162000b7b57600c5482600c5580831062000b91575b50600c60009081527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c792916020015b82821062000a495786866101208760e0810151600d55610100810151600e550151151560ff8019600f5416911617600f5561010082015160105560135560005b61016082015190815181101562000660576200063b816200065a93620012e5565b5160005260186020526040600020600160ff19825416179055620012d5565b6200061a565b8261012081015151610140820151510362000a04576101208101515115620009bf5760005b6101208201518051821015620007f1576001600160a01b03908190620006ad908490620012e5565b511615620007bd57620006c682610140850151620012e5565b51156200078a57620006de82610120850151620012e5565b511690620006f281610140850151620012e5565b51918015620007715760025483810181116200075b577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60208562000755966000940160025584845283825260408420818154019055604051908152a3620012d5565b62000685565b634e487b7160e01b600052601160045260246000fd5b60405163ec442f0560e01b815260006004820152602490fd5b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b8261012081015161014082015190604051916040830160408452825180915260206060850193019060005b8181106200099f57867ff9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a587806200085c8989838203602085015262001310565b0390a1805160208201516040830151926060810151608082015190620008e160a084015191620008d260c086015198620008c361016060e089015198015198620008b46040519b6101408d526101408d019062001346565b908b820360208d015262001346565b9089820360408b015262001346565b90878203606089015262001346565b91608086015260a085015283810360c0850152845180825260208201916020808360051b8301019701926000915b8383106200096f577f11b248463a1620b36a975da8f250009f56fb5dd0e9d5027a90a834d0ee84d6f688806200095c8c8b8b60e08501523061010085015283820361012085015262001310565b0390a1604051612b1590816200136e8239f35b90919293976020806200098f600193601f198682030187528c5162001346565b9a0193019301919392906200090f565b82516001600160a01b03168552602094850194909201916001016200081c565b60405162461bcd60e51b815260206004820152601360248201527f4e6f20696e697469616c20706172746e657273000000000000000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606490fd5b80518051906001600160401b03821162000b7b5762000a6986546200127f565b601f811162000b39575b50602090601f831160011462000ac457928260019493602093869560009262000ab8575b5050600019600383901b1c191690841b1787555b01940191019092620005da565b01519050388062000a97565b908660005260206000209160005b601f198516811062000b20575083602093600196938796938794601f1981161062000b06575b505050811b01875562000aab565b015160001960f88460031b161c1916905538808062000af8565b9192602060018192868501518155019401920162000ad2565b62000b6990876000526020600020601f850160051c8101916020861062000b70575b601f0160051c0190620012bc565b3862000a73565b909150819062000b5b565b634e487b7160e01b600052604160045260246000fd5b600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7908382015b818301811062000bce575050620005ab565b8062000bdd600192546200127f565b8062000bec575b500162000bbc565b601f8111831462000c045750600081555b3862000be4565b60009082825262000c24601f60208420920160051c8201858301620012bc565b8183555562000bfd565b0151905038806200055c565b600960005260206000209060005b601f198416811062000c91575060019394959683601f1981161062000c77575b505050811b0160095562000572565b015160001960f88460031b161c1916905538808062000c68565b9091602060018192858b01518155019301910162000c48565b600960005262000cf6907f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b386200053f565b015190503880620004f9565b600860005260206000209060005b601f198416811062000d60575060019394959683601f1981161062000d46575b505050811b016008556200050f565b015160001960f88460031b161c1916905538808062000d37565b9091602060018192858b01518155019301910162000d17565b600860005262000dc5907ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620004dc565b01519050388062000496565b600760005260206000209060005b601f198416811062000e2f575060019394959683601f1981161062000e15575b505050811b01600755620004ac565b015160001960f88460031b161c1916905538808062000e06565b9091602060018192858b01518155019301910162000de6565b600760005262000e94907fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000479565b01519050388062000433565b600660005260206000209060005b601f198416811062000efe575060019394959683601f1981161062000ee4575b505050811b0160065562000449565b015160001960f88460031b161c1916905538808062000ed5565b9091602060018192858b01518155019301910162000eb5565b600660005262000f63907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000416565b01519050388062000350565b600460005260206000209060005b601f198416811062000fcc5750600193949583601f1981161062000fb2575b505050811b0160045562000366565b015160001960f88460031b161c1916905538808062000fa3565b9091602060018192858a01518155019301910162000f84565b600460005262001031907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000334565b015190503880620002f6565b600360005260206000209060005b601f19841681106200109b575060019394959683601f1981161062001081575b505050811b016003556200030c565b015160001960f88460031b161c1916905538808062001072565b9091602060018192858b01518155019301910162001052565b600360005262001100907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620002d9565b600080fd5b8351916001600160a01b03831683036200110757602081819482935201940193915062000223565b81516001600160401b03811162001107576020916200115c8392838a8c0191880101620011b3565b81520191019062000194565b6040519190601f01601f191682016001600160401b0381118382101762000b7b57604052565b60005b838110620011a25750506000910152565b818101518382015260200162001191565b81601f82011215620011075780516001600160401b03811162000b7b57620011e5601f8201601f191660200162001168565b928184526020828401011162001107576200120791602080850191016200118e565b90565b6001600160401b03811162000b7b5760051b60200190565b9080601f830112156200110757815190620012416200016d836200120a565b9182938184526020808095019260051b82010192831162001107578301905b8282106200126f575050505090565b8151815290830190830162001260565b90600182811c92168015620012b1575b60208310146200129b57565b634e487b7160e01b600052602260045260246000fd5b91607f16916200128f565b818110620012c8575050565b60008155600101620012bc565b60001981146200075b5760010190565b8051821015620012fa5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b90815180825260208080930193019160005b82811062001331575050505090565b83518552938101939281019260010162001322565b9060209162001361815180928185528580860191016200118e565b601f01601f191601019056fe60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea2646970667358221220205848ed4bf61dfa3ec94e211382d3b0dd126c064987adf7329486dba5a7a12864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x1107 JUMPI PUSH3 0x3E83 DUP1 CODESIZE SUB SWAP1 DUP2 PUSH3 0x1E DUP2 PUSH3 0x1168 JUMP JUMPDEST SWAP2 DUP3 CODECOPY PUSH1 0x40 DUP2 DUP4 DUP2 ADD SUB SLT PUSH3 0x1107 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0x1107 JUMPI PUSH2 0x180 SWAP3 DUP4 DUP4 DUP4 ADD DUP3 DUP5 ADD SUB SLT PUSH3 0x1107 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP5 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP6 DUP3 LT OR PUSH3 0xB7B JUMPI PUSH1 0x40 MSTORE DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x94 SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST DUP5 MSTORE DUP2 DUP4 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0xBF SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0xED SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x60 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x11B SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x60 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x80 DUP2 DUP2 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xC0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI DUP4 DUP4 ADD ADD DUP2 DUP4 ADD PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 MLOAD PUSH3 0x173 PUSH3 0x16D DUP3 PUSH3 0x120A JUMP JUMPDEST PUSH3 0x1168 JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP1 DUP5 DUP5 DUP2 MSTORE ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 DUP5 DUP7 ADD DUP4 GT PUSH3 0x1107 JUMPI PUSH1 0x20 DUP3 ADD SWAP1 JUMPDEST DUP4 DUP3 LT PUSH3 0x1134 JUMPI POP POP POP POP PUSH1 0xC0 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0xE0 DUP2 DUP2 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH2 0x120 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI DUP2 DUP4 ADD PUSH1 0x1F DUP3 DUP7 DUP7 ADD ADD ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 DUP5 DUP5 ADD ADD MLOAD SWAP1 PUSH3 0x1F9 PUSH3 0x16D DUP4 PUSH3 0x120A JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD SWAP2 DUP5 DUP7 ADD PUSH1 0x20 DUP4 PUSH1 0x5 SHL DUP4 DUP11 DUP11 ADD ADD ADD ADD GT PUSH3 0x1107 JUMPI SWAP2 PUSH1 0x20 DUP4 DUP9 DUP9 ADD ADD ADD SWAP3 JUMPDEST PUSH1 0x20 DUP4 PUSH1 0x5 SHL DUP3 DUP11 DUP11 ADD ADD ADD ADD DUP5 LT PUSH3 0x110C JUMPI POP POP POP POP PUSH2 0x120 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH2 0x140 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x26B SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x1222 JUMP JUMPDEST PUSH2 0x140 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH2 0x160 ADD MLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT PUSH3 0x1107 JUMPI PUSH1 0x20 SWAP4 PUSH3 0x29D SWAP3 DUP5 ADD SWAP2 DUP5 ADD ADD PUSH3 0x1222 JUMP JUMPDEST PUSH2 0x160 DUP5 ADD MSTORE ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP4 ADD MLOAD DUP2 MLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x2CF PUSH1 0x3 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0x10B4 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0x1044 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0x1038 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x3 SSTORE JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x32A PUSH1 0x4 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xFE5 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xF76 JUMPI DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xF6A JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x4 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x5 SSTORE DUP1 MLOAD SWAP2 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0xA0 DUP7 ADD MLOAD SWAP1 PUSH1 0xC0 DUP8 ADD MLOAD SWAP3 PUSH1 0xE0 DUP9 ADD MLOAD SWAP5 PUSH1 0x40 MLOAD SWAP7 DUP8 PUSH2 0x140 DUP2 ADD LT PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB PUSH2 0x140 DUP11 ADD GT OR PUSH3 0xB7B JUMPI PUSH2 0x140 DUP9 ADD PUSH1 0x40 MSTORE DUP11 DUP9 MSTORE PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE TIMESTAMP PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0x1 PUSH2 0x120 DUP3 ADD MSTORE DUP4 MLOAD PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x40C PUSH1 0x6 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xF17 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xEA7 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xE9B JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x6 SSTORE JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x46F PUSH1 0x7 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xE48 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xDD8 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xDCC JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x7 SSTORE JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x4D2 PUSH1 0x8 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xD79 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xD09 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xCFD JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x8 SSTORE JUMPDEST PUSH1 0x60 DUP4 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x535 PUSH1 0x9 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xCAA JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xC3A JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xC2E JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x9 SSTORE JUMPDEST PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0xA SSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xB SSTORE PUSH1 0xC0 DUP2 ADD MLOAD DUP1 MLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 GT PUSH3 0xB7B JUMPI PUSH1 0xC SLOAD DUP3 PUSH1 0xC SSTORE DUP1 DUP4 LT PUSH3 0xB91 JUMPI JUMPDEST POP PUSH1 0xC PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 SWAP3 SWAP2 PUSH1 0x20 ADD JUMPDEST DUP3 DUP3 LT PUSH3 0xA49 JUMPI DUP7 DUP7 PUSH2 0x120 DUP8 PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xD SSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH1 0xE SSTORE ADD MLOAD ISZERO ISZERO PUSH1 0xFF DUP1 NOT PUSH1 0xF SLOAD AND SWAP2 AND OR PUSH1 0xF SSTORE PUSH2 0x100 DUP3 ADD MLOAD PUSH1 0x10 SSTORE PUSH1 0x13 SSTORE PUSH1 0x0 JUMPDEST PUSH2 0x160 DUP3 ADD MLOAD SWAP1 DUP2 MLOAD DUP2 LT ISZERO PUSH3 0x660 JUMPI PUSH3 0x63B DUP2 PUSH3 0x65A SWAP4 PUSH3 0x12E5 JUMP JUMPDEST MLOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH3 0x12D5 JUMP JUMPDEST PUSH3 0x61A JUMP JUMPDEST DUP3 PUSH2 0x120 DUP2 ADD MLOAD MLOAD PUSH2 0x140 DUP3 ADD MLOAD MLOAD SUB PUSH3 0xA04 JUMPI PUSH2 0x120 DUP2 ADD MLOAD MLOAD ISZERO PUSH3 0x9BF JUMPI PUSH1 0x0 JUMPDEST PUSH2 0x120 DUP3 ADD MLOAD DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 SWAP1 PUSH3 0x6AD SWAP1 DUP5 SWAP1 PUSH3 0x12E5 JUMP JUMPDEST MLOAD AND ISZERO PUSH3 0x7BD JUMPI PUSH3 0x6C6 DUP3 PUSH2 0x140 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD ISZERO PUSH3 0x78A JUMPI PUSH3 0x6DE DUP3 PUSH2 0x120 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD AND SWAP1 PUSH3 0x6F2 DUP2 PUSH2 0x140 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD SWAP2 DUP1 ISZERO PUSH3 0x771 JUMPI PUSH1 0x2 SLOAD DUP4 DUP2 ADD DUP2 GT PUSH3 0x75B JUMPI PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x20 DUP6 PUSH3 0x755 SWAP7 PUSH1 0x0 SWAP5 ADD PUSH1 0x2 SSTORE DUP5 DUP5 MSTORE DUP4 DUP3 MSTORE PUSH1 0x40 DUP5 KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 PUSH3 0x12D5 JUMP JUMPDEST PUSH3 0x685 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 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 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 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 DUP3 PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x140 DUP3 ADD MLOAD SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH1 0x40 DUP4 ADD PUSH1 0x40 DUP5 MSTORE DUP3 MLOAD DUP1 SWAP2 MSTORE PUSH1 0x20 PUSH1 0x60 DUP6 ADD SWAP4 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH3 0x99F JUMPI DUP7 PUSH32 0xF9E7AA11BCDCBB8AC33B5DBA92FCA799EF091E54C29270822065501D8EDEA1A5 DUP8 DUP1 PUSH3 0x85C DUP10 DUP10 DUP4 DUP3 SUB PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x1310 JUMP JUMPDEST SUB SWAP1 LOG1 DUP1 MLOAD PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP4 ADD MLOAD SWAP3 PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x80 DUP3 ADD MLOAD SWAP1 PUSH3 0x8E1 PUSH1 0xA0 DUP5 ADD MLOAD SWAP2 PUSH3 0x8D2 PUSH1 0xC0 DUP7 ADD MLOAD SWAP9 PUSH3 0x8C3 PUSH2 0x160 PUSH1 0xE0 DUP10 ADD MLOAD SWAP9 ADD MLOAD SWAP9 PUSH3 0x8B4 PUSH1 0x40 MLOAD SWAP12 PUSH2 0x140 DUP14 MSTORE PUSH2 0x140 DUP14 ADD SWAP1 PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP12 DUP3 SUB PUSH1 0x20 DUP14 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP10 DUP3 SUB PUSH1 0x40 DUP12 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP8 DUP3 SUB PUSH1 0x60 DUP10 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP8 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH3 0x96F JUMPI PUSH32 0x11B248463A1620B36A975DA8F250009F56FB5DD0E9D5027A90A834D0EE84D6F6 DUP9 DUP1 PUSH3 0x95C DUP13 DUP12 DUP12 PUSH1 0xE0 DUP6 ADD MSTORE ADDRESS PUSH2 0x100 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH2 0x120 DUP6 ADD MSTORE PUSH3 0x1310 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH2 0x2B15 SWAP1 DUP2 PUSH3 0x136E DUP3 CODECOPY RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP8 PUSH1 0x20 DUP1 PUSH3 0x98F PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP13 MLOAD PUSH3 0x1346 JUMP JUMPDEST SWAP11 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH3 0x90F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH3 0x81C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F20696E697469616C20706172746E65727300000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT 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 PUSH32 0x417272617973206C656E677468206D69736D6174636800000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xB7B JUMPI PUSH3 0xA69 DUP7 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xB39 JUMPI JUMPDEST POP PUSH1 0x20 SWAP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xAC4 JUMPI SWAP3 DUP3 PUSH1 0x1 SWAP5 SWAP4 PUSH1 0x20 SWAP4 DUP7 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xAB8 JUMPI JUMPDEST POP POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP5 SHL OR DUP8 SSTORE JUMPDEST ADD SWAP5 ADD SWAP2 ADD SWAP1 SWAP3 PUSH3 0x5DA JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xA97 JUMP JUMPDEST SWAP1 DUP7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP6 AND DUP2 LT PUSH3 0xB20 JUMPI POP DUP4 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP7 SWAP4 DUP8 SWAP7 SWAP4 DUP8 SWAP5 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xB06 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD DUP8 SSTORE PUSH3 0xAAB JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xAF8 JUMP JUMPDEST SWAP2 SWAP3 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP7 DUP6 ADD MLOAD DUP2 SSTORE ADD SWAP5 ADD SWAP3 ADD PUSH3 0xAD2 JUMP JUMPDEST PUSH3 0xB69 SWAP1 DUP8 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP7 LT PUSH3 0xB70 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0xA73 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH3 0xB5B JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 SWAP1 DUP4 DUP3 ADD JUMPDEST DUP2 DUP4 ADD DUP2 LT PUSH3 0xBCE JUMPI POP POP PUSH3 0x5AB JUMP JUMPDEST DUP1 PUSH3 0xBDD PUSH1 0x1 SWAP3 SLOAD PUSH3 0x127F JUMP JUMPDEST DUP1 PUSH3 0xBEC JUMPI JUMPDEST POP ADD PUSH3 0xBBC JUMP JUMPDEST PUSH1 0x1F DUP2 GT DUP4 EQ PUSH3 0xC04 JUMPI POP PUSH1 0x0 DUP2 SSTORE JUMPDEST CODESIZE PUSH3 0xBE4 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP3 DUP3 MSTORE PUSH3 0xC24 PUSH1 0x1F PUSH1 0x20 DUP5 KECCAK256 SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD DUP6 DUP4 ADD PUSH3 0x12BC JUMP JUMPDEST DUP2 DUP4 SSTORE SSTORE PUSH3 0xBFD JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x55C JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xC91 JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xC77 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x9 SSTORE PUSH3 0x572 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xC68 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xC48 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 MSTORE PUSH3 0xCF6 SWAP1 PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x53F JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xD60 JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xD46 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x8 SSTORE PUSH3 0x50F JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xD37 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xD17 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 MSTORE PUSH3 0xDC5 SWAP1 PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x4DC JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x496 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xE2F JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xE15 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x7 SSTORE PUSH3 0x4AC JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xE06 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xDE6 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 MSTORE PUSH3 0xE94 SWAP1 PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x479 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x433 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xEFE JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xEE4 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x6 SSTORE PUSH3 0x449 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xED5 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xEB5 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH3 0xF63 SWAP1 PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x416 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x350 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xFCC JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xFB2 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x4 SSTORE PUSH3 0x366 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xFA3 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP11 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xF84 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH3 0x1031 SWAP1 PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x334 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x2F6 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0x109B JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0x1081 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x3 SSTORE PUSH3 0x30C JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x1072 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0x1052 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE PUSH3 0x1100 SWAP1 PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x2D9 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP4 SUB PUSH3 0x1107 JUMPI PUSH1 0x20 DUP2 DUP2 SWAP5 DUP3 SWAP4 MSTORE ADD SWAP5 ADD SWAP4 SWAP2 POP PUSH3 0x223 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH1 0x20 SWAP2 PUSH3 0x115C DUP4 SWAP3 DUP4 DUP11 DUP13 ADD SWAP2 DUP9 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x194 JUMP 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 0xB7B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x11A2 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x1191 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x11E5 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH3 0x1168 JUMP JUMPDEST SWAP3 DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0x1107 JUMPI PUSH3 0x1207 SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x118E JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP2 MLOAD SWAP1 PUSH3 0x1241 PUSH3 0x16D DUP4 PUSH3 0x120A JUMP JUMPDEST SWAP2 DUP3 SWAP4 DUP2 DUP5 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP6 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x1107 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x126F JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH3 0x1260 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH3 0x12B1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH3 0x129B 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 0x128F JUMP JUMPDEST DUP2 DUP2 LT PUSH3 0x12C8 JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x12BC JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x75B JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x12FA 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 SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH3 0x1331 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH3 0x1322 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH3 0x1361 DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH3 0x118E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP INVALID PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE PUSH1 0x4 DUP1 CALLDATASIZE LT ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR SWAP2 DUP3 PUSH4 0x13CF08B EQ PUSH2 0x1DDA JUMPI POP DUP2 PUSH4 0x44BC2BD EQ PUSH2 0x1CAB JUMPI DUP2 PUSH4 0x57B2074 EQ PUSH2 0x1C90 JUMPI DUP2 PUSH4 0x6FDDE03 EQ PUSH2 0x1BC2 JUMPI DUP2 PUSH4 0x95EA7B3 EQ PUSH2 0x1B23 JUMPI DUP2 PUSH4 0xC0512E9 EQ PUSH2 0x1B05 JUMPI DUP2 PUSH4 0xD61B519 EQ PUSH2 0x18FF JUMPI DUP2 PUSH4 0x18160DDD EQ PUSH2 0x18E1 JUMPI DUP2 PUSH4 0x204C5D1F EQ PUSH2 0x164E JUMPI DUP2 PUSH4 0x22DBEFBB EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0x23B872DD EQ PUSH2 0x1556 JUMPI DUP2 PUSH4 0x2EE09598 EQ PUSH2 0x14BC JUMPI DUP2 PUSH4 0x313CE567 EQ PUSH2 0x14A0 JUMPI DUP2 PUSH4 0x35324EEE EQ PUSH2 0x1338 JUMPI DUP2 PUSH4 0x3B60288A EQ PUSH2 0x1309 JUMPI DUP2 PUSH4 0x4114509B EQ PUSH2 0x11EF JUMPI DUP2 PUSH4 0x456D10C1 EQ PUSH2 0x1109 JUMPI DUP2 PUSH4 0x4B145793 EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0x4DE184F6 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x4FA76EC9 EQ PUSH2 0x10EB JUMPI DUP2 PUSH4 0x5221C1F0 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x548D496F EQ PUSH2 0x10B7 JUMPI DUP2 PUSH4 0x5CF0E8A4 EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x6CBADBFA EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x70A08231 EQ PUSH2 0x105F JUMPI DUP2 PUSH4 0x7CE288EA EQ PUSH2 0xF6B JUMPI DUP2 PUSH4 0x7E5A9B47 EQ PUSH2 0xF3C JUMPI DUP2 PUSH4 0x893D692A EQ PUSH2 0xE20 JUMPI DUP2 PUSH4 0x8C7B04C9 EQ PUSH2 0xE02 JUMPI DUP2 PUSH4 0x95D89B41 EQ PUSH2 0xD17 JUMPI DUP2 PUSH4 0x9A49BDDE EQ PUSH2 0xCF2 JUMPI DUP2 PUSH4 0xA9059CBB EQ PUSH2 0xCC1 JUMPI DUP2 PUSH4 0xAF89D2C4 EQ PUSH2 0xC92 JUMPI DUP2 PUSH4 0xB00E0730 EQ PUSH2 0xB6E JUMPI DUP2 PUSH4 0xB0B6CC1A EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0xB3594510 EQ PUSH2 0x774 JUMPI DUP2 PUSH4 0xB3FE8BCB EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0xC51CAB3A EQ PUSH2 0x6D5 JUMPI DUP2 PUSH4 0xC9D27AFE EQ PUSH2 0x54E JUMPI DUP2 PUSH4 0xCCD7A490 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xDD62ED3E EQ PUSH2 0x337 JUMPI DUP2 PUSH4 0xE49A62E9 EQ PUSH2 0x310 JUMPI DUP2 PUSH4 0xECED3DFB EQ PUSH2 0x2F4 JUMPI POP PUSH4 0xF2C26A47 EQ PUSH2 0x205 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x2A4 PUSH1 0x40 MLOAD PUSH2 0x230 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x258 DUP3 PUSH2 0x251 DUP2 PUSH2 0x2006 JUMP JUMPDEST SUB DUP4 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x270 DUP4 PUSH2 0x269 DUP2 PUSH2 0x208D JUMP JUMPDEST SUB DUP5 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP3 PUSH1 0xB SLOAD PUSH2 0x2CE PUSH1 0xD SLOAD SWAP3 PUSH2 0x2C0 PUSH1 0xE SLOAD SWAP6 PUSH2 0x2B2 PUSH1 0xFF PUSH1 0xF SLOAD AND SWAP9 PUSH1 0x40 MLOAD SWAP13 DUP14 SWAP13 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP5 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x32D PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x278C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x350 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x22CE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x396 CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x39F PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x17 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x3BC DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP1 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x51A JUMPI PUSH2 0x3D8 PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x2711 JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x4E5 JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x4AD JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78B8E65C466DF05EA5DDF0593B44648ECA1F35C039F180E31257A6F1BDD005DC SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x498 JUMPI PUSH1 0x1 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE CALLER PUSH1 0x20 DUP6 ADD MSTORE SWAP4 ISZERO ISZERO SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x60 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x80 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x5 SSTORE STOP JUMPDEST PUSH1 0x2 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x14DA59DB9A5B99C8195B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x55C CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x565 PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x16 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x582 DUP4 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x6A2 JUMPI PUSH2 0x59E PUSH1 0xFF DUP3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x8 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x66E JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x636 JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78975AAF742630489BADD22949B88AC50EAAEA576339EE05440B671A33BFB6A9 SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x628 JUMPI PUSH1 0x2 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x4E6F20746F6B656E7320746F20766F7465 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x105B1C9958591E481D9BDD1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x159BDD1A5B99C8195B991959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 PUSH1 0xC0 SWAP2 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH1 0x1 DUP2 ADD SLOAD SWAP2 PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND SWAP2 DUP4 ADD SLOAD SWAP3 PUSH1 0x5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP2 ADD SLOAD AND SWAP4 PUSH1 0x40 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 DUP3 GT PUSH2 0x2EF JUMPI CALLDATASIZE PUSH1 0x23 DUP4 ADD SLT ISZERO PUSH2 0x2EF JUMPI PUSH2 0x7B7 PUSH1 0x24 SWAP3 CALLDATASIZE SWAP1 DUP5 DUP2 DUP6 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 DUP3 CALLDATALOAD SWAP4 PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x7D2 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0x229A JUMP JUMPDEST SWAP5 PUSH1 0x64 CALLDATALOAD SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP7 PUSH1 0x0 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xAED JUMPI PUSH2 0x7F8 DUP4 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x18 DUP9 MSTORE PUSH2 0x811 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 DUP8 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x11 SLOAD SWAP6 PUSH2 0x833 DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x11 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x16 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP8 DUP2 SSTORE PUSH1 0x1 SWAP4 DUP5 DUP3 ADD DUP9 MLOAD DUP8 DUP2 GT PUSH2 0xAA0 JUMPI PUSH2 0x869 DUP2 PUSH2 0x863 DUP5 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP5 PUSH2 0x2509 JUMP JUMPDEST DUP12 DUP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0xA2B JUMPI POP SWAP2 DUP2 PUSH1 0x7 SWAP6 SWAP5 SWAP3 PUSH2 0x8BC SWAP5 PUSH1 0x0 SWAP2 PUSH2 0xA20 JUMPI JUMPDEST POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP10 SHL OR SWAP1 SSTORE JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP5 ADD SSTORE PUSH1 0x0 PUSH1 0x3 DUP5 ADD SSTORE DUP9 DUP4 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SSTORE PUSH1 0x6 DUP2 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE ADD SWAP5 DUP3 MLOAD SWAP5 DUP6 GT PUSH2 0xA0D JUMPI POP POP PUSH2 0x8F8 DUP4 PUSH2 0x8F2 DUP7 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP7 PUSH2 0x2509 JUMP JUMPDEST DUP7 SWAP1 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH2 0x980 JUMPI SWAP3 DUP1 PUSH2 0x96A SWAP6 SWAP4 DUP2 SWAP4 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP9 SWAP7 PUSH1 0x0 SWAP5 PUSH2 0x975 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP6 DUP4 MSTORE CALLER DUP8 DUP5 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST ADD MLOAD SWAP3 POP DUP11 DUP1 PUSH2 0x939 JUMP JUMPDEST SWAP1 PUSH1 0x1F SWAP4 SWAP3 SWAP4 NOT DUP4 AND SWAP2 DUP6 PUSH1 0x0 MSTORE DUP9 PUSH1 0x0 KECCAK256 SWAP3 PUSH1 0x0 JUMPDEST DUP11 DUP3 DUP3 LT PUSH2 0x9F9 JUMPI POP POP SWAP2 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x96A SWAP9 SWAP7 SWAP5 LT PUSH2 0x9E0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x94B JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP9 DUP1 DUP1 PUSH2 0x9D3 JUMP JUMPDEST DUP4 DUP6 ADD MLOAD DUP7 SSTORE SWAP5 DUP8 ADD SWAP5 SWAP4 DUP5 ADD SWAP4 ADD PUSH2 0x996 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST SWAP1 POP DUP13 ADD MLOAD DUP16 PUSH2 0x88A JUMP JUMPDEST DUP9 SWAP3 SWAP2 DUP13 PUSH1 0x1F NOT DUP5 AND DUP7 PUSH1 0x0 MSTORE DUP4 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xA85 JUMPI POP POP SWAP2 PUSH1 0x7 SWAP9 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x8BC SWAP9 SWAP7 SWAP5 LT PUSH2 0xA6C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x89D JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP16 DUP1 DUP15 PUSH2 0xA5F JUMP JUMPDEST SWAP3 DUP5 ADD MLOAD DUP6 SSTORE DUP13 SWAP7 SWAP1 SWAP5 ADD SWAP4 SWAP3 DUP3 ADD SWAP3 DUP16 SWAP3 SWAP1 DUP2 ADD SWAP1 PUSH2 0xA41 JUMP JUMPDEST DUP5 PUSH1 0x41 DUP11 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP6 ADD DUP9 SWAP1 MSTORE PUSH1 0x13 DUP2 DUP9 ADD MSTORE PUSH19 0x436861696E206E6F7420617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP7 ADD DUP10 SWAP1 MSTORE PUSH1 0x23 DUP2 DUP10 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x14 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 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xC42 JUMPI PUSH1 0x60 PUSH1 0x20 SWAP4 PUSH1 0x5 DUP4 PUSH2 0xBCD PUSH32 0x8D5C76B09B9C1F4D0453D21436DCB0B568A50E9C0AE059E4D0AE8C95C71D07F0 SWAP6 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP6 PUSH2 0xBDA DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x12 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x17 DUP9 MSTORE PUSH2 0xC11 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP6 DUP5 SSTORE PUSH1 0x0 PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x0 PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x3 DUP5 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST SWAP1 DUP3 ADD SSTORE ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP5 DUP3 MSTORE CALLER DUP7 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP5 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20637265617465206F70657261 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x3A34B7B7 PUSH1 0xE1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1A PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xCE7 PUSH2 0xCDD PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x236B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xD0F PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 SWAP1 DUP1 SLOAD PUSH2 0xD3A DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xDD8 JUMPI POP PUSH1 0x1 EQ PUSH2 0xD7C JUMPI JUMPDEST PUSH2 0xD78 DUP6 PUSH2 0xD64 DUP2 DUP8 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xDC0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0xD78 PUSH2 0xD54 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xDA5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xD78 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xD64 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xD54 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x12 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH2 0xE51 DUP4 ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x3 DUP2 ADD SWAP2 DUP1 DUP4 SLOAD SWAP3 PUSH2 0xE67 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x2711 JUMP JUMPDEST ADD SLOAD TIMESTAMP LT PUSH2 0xF04 JUMPI PUSH2 0xE78 DUP6 PUSH2 0x275D JUMP JUMPDEST DUP2 PUSH2 0xEFC JUMPI JUMPDEST POP ISZERO PUSH2 0xEC1 JUMPI PUSH32 0x64CEE5A70D662A7EEF5B2A171DAA51DC624F3D64A35D0855B385262B893DC5A5 PUSH1 0x40 DUP7 DUP7 DUP7 PUSH1 0x1 DUP8 PUSH1 0xFF NOT AND OR SWAP1 SSTORE DUP3 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x13DC195C985D1A5BDB881B9BDD081C185CDCD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 POP DUP7 PUSH2 0xE7E JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x14DA59DB9A5B99C81B9BDD08195B991959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE SWAP1 ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xF88 DUP3 PUSH2 0x278C JUMP JUMPDEST ISZERO PUSH2 0x1024 JUMPI PUSH1 0x13 SLOAD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0xFC7 JUMPI PUSH32 0x57DF5A6A467271F04B10F7FE9E66D21DCD8AE7EAF079099D48959F24A53B6910 PUSH1 0x20 DUP6 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG1 STOP JUMPDEST DUP1 PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 PUSH2 0x1017 PUSH2 0xFF8 PUSH2 0x101F SWAP5 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP8 DUP11 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SUB SWAP1 LOG1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0xF93 JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F7420616C6C20636861696E73207265616479 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x1080 PUSH2 0x22B8 JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH2 0x231F JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x10 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xCA1838D50CA3156F1ACE7CDE39A081CC9C9A333AF6FCA55DB71817F8717E1DCB PUSH2 0x1138 CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x115B DUP7 DUP3 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1175 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x9 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1194 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x2 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH2 0x11EA PUSH1 0x13 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 SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x12BD JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x1283 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x14 DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x15 DUP4 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD SWAP2 DUP3 MSTORE PUSH32 0x4C7C76ABE482A2C36EA52F1B999474C69F8B4AFEEAC5635F8AEA2526864BA853 SWAP2 LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x135BD91D5B1948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x84 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F2072656D6F7665206D6F64756C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0x1354 PUSH2 0x22CE JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x145C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x142B JUMPI DUP4 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x13F1 JUMPI PUSH32 0xF14475B19484BF096265507CC0C41CD3BF1994992088806830686E2D72722719 PUSH1 0x40 DUP6 DUP6 DUP6 DUP3 PUSH1 0x0 MSTORE PUSH1 0x14 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x15 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP4 MLOAD SWAP3 DUP4 MSTORE DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x4D6F64756C6520616C726561647920657869737473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP5 ADD DUP4 SWAP1 MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20616464206D6F64756C650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xE379B3DEB66DDFA7962A2BDF35E9A08B5BED672C9DA3ECF7CC6174D253C6DFE5 PUSH2 0x14EB CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x2 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x150E DUP2 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1528 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x7 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1547 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x1 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x156F PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x22CE JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP5 PUSH1 0x0 NOT DUP7 LT PUSH2 0x15B6 JUMPI JUMPDEST POP POP PUSH2 0xCE7 SWAP4 POP PUSH2 0x236B JUMP JUMPDEST DUP5 DUP7 LT PUSH2 0x1622 JUMPI DUP2 ISZERO PUSH2 0x160A JUMPI CALLER ISZERO PUSH2 0x15F2 JUMPI POP PUSH2 0xCE7 SWAP5 DUP5 SWAP2 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE DUP5 DUP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP9 SWAP1 MSTORE SWAP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x0 PUSH2 0x120 PUSH1 0x40 MLOAD PUSH2 0x1670 DUP2 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MSTORE DUP3 PUSH1 0x80 DUP3 ADD MSTORE DUP3 PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD MSTORE DUP3 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE ADD MSTORE PUSH1 0x40 MLOAD SWAP1 PUSH2 0x16B7 DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C7 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST DUP3 MSTORE PUSH1 0x40 MLOAD PUSH2 0x16D9 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x16EE DUP2 PUSH2 0x229 DUP2 PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x1703 DUP2 PUSH2 0x229 DUP2 PUSH2 0x208D JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0xA SLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xB SLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC SLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x18CC JUMPI POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1740 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD DUP4 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x18A7 JUMPI DUP6 DUP6 PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0xD SLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE SLOAD PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0xFF PUSH1 0xF SLOAD AND ISZERO ISZERO PUSH2 0x120 DUP3 ADD MSTORE PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 MSTORE PUSH2 0x1808 PUSH2 0x17F2 PUSH2 0x17DC PUSH2 0x17C6 DUP6 MLOAD PUSH2 0x140 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x160 DUP7 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD DUP6 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD DUP4 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x80 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD SWAP1 PUSH1 0x1F NOT DUP4 DUP3 SUB ADD PUSH1 0xE0 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP5 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x187A JUMPI DUP7 DUP1 DUP8 PUSH2 0x120 DUP12 PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD DUP3 DUP6 ADD MSTORE ADD MLOAD ISZERO ISZERO PUSH2 0x140 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 PUSH1 0x20 DUP1 PUSH2 0x1898 PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP10 MLOAD PUSH2 0x2222 JUMP JUMPDEST SWAP8 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 DUP2 SWAP3 PUSH1 0x40 MLOAD PUSH2 0x18BE DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP3 ADD SWAP2 SWAP1 PUSH2 0x1771 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x16 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH2 0x192E DUP5 DUP5 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP2 DUP4 ADD SWAP3 DUP4 SLOAD SWAP3 PUSH2 0x1942 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x1ACE JUMPI PUSH2 0x1956 DUP7 PUSH2 0x2668 JUMP JUMPDEST DUP2 PUSH2 0x1AC6 JUMPI JUMPDEST POP ISZERO PUSH2 0x1A8C JUMPI POP PUSH1 0x7 SWAP1 PUSH1 0x1 SWAP5 DUP6 PUSH1 0xFF NOT DUP1 SWAP7 AND OR SWAP1 SSTORE ADD SWAP3 PUSH2 0x198E PUSH1 0x40 MLOAD PUSH2 0x1989 DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x2884 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE PUSH1 0x40 DUP3 DUP7 ADD MSTORE PUSH1 0x0 SWAP4 DUP1 SLOAD PUSH2 0x19A8 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST SWAP5 DUP6 PUSH1 0x40 DUP10 ADD MSTORE DUP4 DUP3 AND SWAP2 DUP3 PUSH1 0x0 EQ PUSH2 0x1A46 JUMPI POP POP PUSH1 0x1 EQ PUSH2 0x19ED JUMPI JUMPDEST PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP7 DUP7 SUB DUP8 LOG1 STOP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE DUP3 DUP2 KECCAK256 SWAP1 SWAP5 POP JUMPDEST DUP4 DUP6 LT PUSH2 0x1A32 JUMPI POP POP POP POP DUP2 ADD PUSH1 0x60 ADD DUP2 PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST DUP1 SLOAD DUP7 DUP7 ADD PUSH1 0x60 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x19F9 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP7 SWAP6 POP PUSH1 0x60 SWAP4 POP PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 SWAP7 SWAP5 SWAP3 POP AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 SWAP3 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x141C9BDC1BDCD85B081B9BDD081C185CDCD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 POP DUP8 PUSH2 0x195C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x159BDD1A5B99C81B9BDD08195B991959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x11 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x1B3C PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER ISZERO PUSH2 0x1BAA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x15F2 JUMPI POP CALLER PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP2 DUP6 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x3 SLOAD PUSH2 0x1BE4 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP1 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1C69 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C0E JUMPI JUMPDEST PUSH2 0xD78 DUP5 PUSH2 0xD64 DUP2 DUP7 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x1C51 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0x1BFE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1C39 JUMP JUMPDEST PUSH1 0xFF NOT AND PUSH1 0x20 DUP1 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 ISZERO ISZERO PUSH1 0x5 SHL DUP6 ADD SWAP1 SWAP3 ADD SWAP3 POP PUSH2 0xD64 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x1BFE JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x275D JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x24 CALLDATALOAD DUP2 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x1CE0 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0x229A JUMP JUMPDEST POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1CFB PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x1DA3 JUMPI PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 SWAP3 POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD EQ PUSH2 0x1D84 JUMPI JUMPDEST POP PUSH2 0x11EA PUSH1 0x13 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 PUSH1 0x7 PUSH2 0x1989 PUSH2 0x1D9D SWAP3 PUSH2 0x229 PUSH1 0x40 MLOAD DUP1 SWAP5 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST DUP4 PUSH2 0x1D60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP6 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x105B1C9958591E48195E1958DD5D1959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0xD78 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x7 DUP4 SLOAD SWAP4 PUSH2 0x1E1C DUP7 PUSH2 0x1E15 DUP2 PUSH1 0x1 DUP6 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP8 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD SWAP3 PUSH1 0xFF PUSH1 0x3 DUP4 ADD SLOAD SWAP2 DUP4 ADD SLOAD AND PUSH1 0x5 DUP4 ADD SLOAD SWAP2 PUSH2 0x1E5C PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x6 DUP7 ADD SLOAD AND SWAP5 PUSH2 0x1E55 PUSH1 0x40 MLOAD DUP1 SWAP9 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP7 PUSH2 0x21DD JUMP JUMPDEST PUSH2 0x1E78 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 MSTORE PUSH2 0x100 DUP1 PUSH1 0x20 DUP13 ADD MSTORE DUP11 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP6 PUSH1 0x40 DUP10 ADD MSTORE PUSH1 0x60 DUP9 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xE0 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1ED1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1EBB 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 0x1EB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1EEB DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F09 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x6 PUSH1 0x0 MSTORE PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1F4A JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F38 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1F8F DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1FAD JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x7 PUSH1 0x0 MSTORE PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1FEE JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1FDC JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2016 DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2034 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x8 PUSH1 0x0 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2075 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2063 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x209D DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x20BB JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x9 PUSH1 0x0 MSTORE PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x20FC JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x20EA JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0x2125 DUP4 PUSH2 0x1EA1 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x2187 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2147 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0x2173 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0x215C JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST PUSH2 0x140 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 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 SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x2212 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2202 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x223B DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x21C7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x226F DUP3 PUSH2 0x2247 JUMP JUMPDEST SWAP2 PUSH2 0x227D PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x21DD JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x2EF 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 0x2EF JUMPI DUP2 PUSH1 0x20 PUSH2 0x22B5 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 PUSH1 0x84 CALLDATALOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI PUSH2 0x22B5 SWAP2 PUSH1 0x4 ADD PUSH2 0x229A JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH2 0x32D PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x2EF JUMPI SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 DUP4 ISZERO PUSH2 0x2430 JUMPI AND SWAP3 DUP4 ISZERO PUSH2 0x2417 JUMPI PUSH1 0x0 SWAP1 DUP4 DUP3 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 SLOAD SWAP1 DUP4 DUP3 LT PUSH2 0x23E5 JUMPI POP SWAP2 PUSH1 0x40 DUP3 DUP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP6 DUP8 PUSH1 0x20 SWAP7 MSTORE DUP3 DUP7 MSTORE SUB DUP3 DUP3 KECCAK256 SSTORE DUP7 DUP2 MSTORE KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP4 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 SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x2456 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ISZERO PUSH2 0x2473 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4475726174696F6E206D75737420626520706F73697469766500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x24BF JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x10DA185A5B881B9BDD081CDD5C1C1BDC9D1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x2456 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x2517 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH2 0x2553 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH2 0x2548 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x253C JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH2 0x2533 JUMP JUMPDEST ISZERO PUSH2 0x2564 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20646F6573206E6F74206578697374000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x25B0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x5 SLOAD EQ PUSH2 0x2606 JUMPI PUSH1 0x2 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x261F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDE5B98D959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x2456 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x2683 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x3 PUSH1 0x2 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x26A9 PUSH1 0x2 SLOAD PUSH1 0x10 SLOAD SWAP1 PUSH2 0x2655 JUMP JUMPDEST DIV GT ISZERO SWAP3 DUP4 SWAP2 DUP3 PUSH2 0x26BB JUMPI JUMPDEST POP POP SWAP2 SWAP1 JUMP JUMPDEST GT SWAP1 POP CODESIZE DUP1 PUSH2 0x26B5 JUMP JUMPDEST ISZERO PUSH2 0x26CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20646F6573206E6F742065786973740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2718 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20616C7265616479206578656375746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x2777 DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH2 0x27A5 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x27B6 JUMPI POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x27D6 PUSH2 0x27C2 DUP3 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x27E9 JUMPI PUSH2 0x27E4 SWAP1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0x27A7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2857 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2851 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x284B JUMPI PUSH1 0x3 EQ PUSH2 0x2845 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x92DCECC2D8D2C840C6D0C2D2DC40D2DCC8CAF PUSH1 0x6B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0xA4B1 SWAP1 JUMP JUMPDEST POP PUSH1 0x38 SWAP1 JUMP JUMPDEST POP PUSH1 0x89 SWAP1 JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP3 PUSH1 0x40 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP2 ADD SWAP1 PUSH1 0x20 SWAP1 DUP1 DUP3 DUP5 ADD SWAP4 PUSH1 0x40 SWAP2 DUP3 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP3 SWAP1 DUP4 SWAP1 SUB PUSH2 0x2EF JUMPI DUP2 DUP2 ADD MLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI ADD SWAP2 DUP5 PUSH1 0x3F DUP5 ADD SLT ISZERO PUSH2 0x2EF JUMPI DUP4 DUP4 ADD MLOAD SWAP3 PUSH2 0x28E3 DUP5 PUSH2 0x2247 JUMP JUMPDEST SWAP4 PUSH2 0x28F0 DUP5 MLOAD SWAP6 DUP7 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP6 MSTORE DUP6 DUP6 ADD SWAP7 DUP5 DUP3 DUP5 ADD ADD GT PUSH2 0x2EF JUMPI DUP7 DUP5 PUSH2 0x290D SWAP4 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x2942 JUMPI POP POP SWAP2 PUSH2 0x2930 SWAP2 DUP4 PUSH2 0x2940 SWAP5 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH2 0x236B JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 SWAP1 PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x29D9 JUMPI POP SWAP1 DUP3 DUP3 PUSH2 0x2965 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 DUP4 ISZERO PUSH2 0x29C2 JUMPI SWAP2 DUP2 PUSH1 0x0 SWAP4 PUSH2 0x29A9 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP5 PUSH1 0x2 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x2 SSTORE DUP6 DUP6 MSTORE DUP5 DUP4 MSTORE DUP1 DUP6 KECCAK256 DUP3 DUP2 SLOAD ADD SWAP1 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP4 SWAP5 SWAP4 PUSH4 0x2770A7EB PUSH1 0xE2 SHL SUB PUSH2 0x2AA7 JUMPI SWAP1 DUP3 DUP3 PUSH2 0x29F9 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2A8F JUMPI PUSH1 0x0 SWAP3 DUP3 DUP5 MSTORE DUP4 DUP3 MSTORE DUP6 DUP5 KECCAK256 SLOAD SWAP6 DUP2 DUP8 LT PUSH2 0x2A61 JUMPI DUP2 DUP6 SWAP7 SWAP8 DUP6 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP7 SWAP8 MSTORE DUP8 DUP6 MSTORE SUB DUP2 DUP8 KECCAK256 SSTORE DUP2 PUSH1 0x2 SLOAD SUB PUSH1 0x2 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST 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 DUP8 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2AB735B737BBB71037B832B930BA34B7B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 PC BASEFEE 0xED 0x4B 0xF6 SAR STATICCALL RETURNDATACOPY 0xC9 0x4E 0x21 SGT DUP3 0xD3 0xB0 0xDD SLT PUSH13 0x64987ADF7329486DBA5A7A128 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"359:24426:6:-:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;4198:11;;359:24426;;;4211:13;359:24426;;4198:11;;4211:13;;359:24426;-1:-1:-1;;;;;359:24426:6;;;;;1667:13:1;359:24426:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;1667:13:1;359:24426:6;;;;-1:-1:-1;;;;;359:24426:6;;;;;1690:17:1;359:24426:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;1690:17:1;359:24426:6;;;;;4274:11;;359:24426;;;;4307:13;359:24426;;;4344:15;359:24426;;;4386:18;359:24426;;;;;;;;;;;;4510:17;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:397;;359:24426;;4246:397;;359:24426;;4246:397;;359:24426;;4246:397;;359:24426;;4246:397;;359:24426;;4246:397;;359:24426;;4246:397;;359:24426;4589:15;359:24426;4246:397;;359:24426;;;4246:397;;359:24426;;;;;;;;;;;;;4236:407;359:24426;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;4236:407;359:24426;;;4246:397;;359:24426;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;4246:397;;359:24426;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;4246:397;;359:24426;;;;;4246:397;-1:-1:-1;;;;;359:24426:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;4246:397;;359:24426;;;;4246:397;;359:24426;;;;4246:397;;359:24426;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;4246:397;;359:24426;4246:397;359:24426;4246:397;;359:24426;;;;4246:397;;359:24426;;;4246:397;359:24426;;;;;;;;;;;;;;;;;;4662:42;359:24426;4714:32;359:24426;-1:-1:-1;4892:3:6;359:24426;;;4859:24;359:24426;;;4855:35;;;;;4927:27;;4892:3;4927:27;;:::i;:::-;359:24426;-1:-1:-1;359:24426:6;4911:15;359:24426;;;-1:-1:-1;359:24426:6;;;;;;;;;;4892:3;:::i;:::-;4840:13;;4855:35;;359:24426;;;5078:22;359:24426;;;;5111:21;359:24426;5078:61;359:24426;;;;;5184:22;359:24426;5184:33;359:24426;;-1:-1:-1;5315:3:6;359:24426;;;5284:22;359:24426;;5280:33;;;;;-1:-1:-1;;;;;359:24426:6;;;5342:25;;359:24426;;5342:25;:::i;:::-;359:24426;;5342:39;359:24426;;5420:24;359:24426;;;;5420:21;:24;:::i;:::-;359:24426;5420:28;359:24426;;5484:25;359:24426;;;;5484:22;:25;:::i;:::-;359:24426;;;5511:24;359:24426;;;;5511:21;:24;:::i;:::-;359:24426;7528:21:1;;;7524:91;;359:24426:6;;;;;;;;;7083:25:1;359:24426:6;;5315:3;359:24426;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;7083:25:1;5315:3:6;:::i;:::-;5265:13;;359:24426;;;;-1:-1:-1;359:24426:6;;1690:17:1;359:24426:6;;-1:-1:-1;359:24426:6;7524:91:1;359:24426:6;;-1:-1:-1;;;7572:32:1;;-1:-1:-1;1690:17:1;7572:32;;359:24426:6;;;7572:32:1;359:24426:6;;;-1:-1:-1;;;359:24426:6;;;1690:17:1;359:24426:6;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;1690:17:1;359:24426:6;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;5280:33;;359:24426;;;5595:22;359:24426;;;5619:21;359:24426;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;5570:71;359:24426;;;;;;;;;;;;;:::i;:::-;5570:71;;;5684:11;;359:24426;;;5709:13;359:24426;;;5736:15;359:24426;;;;5765:18;359:24426;;;;;;;;;;;;;;;5856:17;359:24426;;;;;;;;;5938:24;359:24426;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;5656:316;359:24426;;;;;;;;;;5919:4;359:24426;;;;;;;;;;;;:::i;:::-;5656:316;;;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;1690:17:1;359:24426:6;;;4714:32;359:24426;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;1690:17:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;-1:-1:-1;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;-1:-1:-1;359:24426:6;;1690:17:1;359:24426:6;;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24426:6;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24426:6;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24426:6;;;;;4236:407;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;4236:407;359:24426;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4236:407;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24426:6;;;;;1690:17:1;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:1;359:24426:6;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:1;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24426:6;;;;;1667:13:1;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;1667:13:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;359:24426:6;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;-1:-1:-1;;359:24426:6;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;-1:-1:-1;;;;;359:24426:6;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;359:24426:6;;;;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":8910,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_28165":{"entryPoint":8888,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_payablet_uint256_fromMemory":{"entryPoint":10333,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_available_length_bytes":{"entryPoint":8803,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes":{"entryPoint":8858,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint256t_bool":{"entryPoint":9036,"id":null,"parameterSlots":1,"returnSlots":2},"abi_decode_uint256t_uint256t_uint256t_uint256t_bytes":{"entryPoint":8932,"id":null,"parameterSlots":1,"returnSlots":5},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_bool_bool":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_string":{"entryPoint":8738,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage":{"entryPoint":8468,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage_28169":{"entryPoint":7899,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28170":{"entryPoint":8063,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28171":{"entryPoint":8198,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28172":{"entryPoint":8333,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_uint256_address_bool_uint256":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":8775,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_uint256":{"entryPoint":9289,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_uint256":{"entryPoint":9813,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":9481,"id":null,"parameterSlots":3,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":8703,"id":null,"parameterSlots":3,"returnSlots":0},"external_fun_checkChainConnection":{"entryPoint":8991,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":7841,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":8669,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_28167":{"entryPoint":8618,"id":null,"parameterSlots":1,"returnSlots":0},"fun_checkChainConnection":{"entryPoint":null,"id":2186,"parameterSlots":1,"returnSlots":1},"fun_checkMultiSigResult":{"entryPoint":10077,"id":2049,"parameterSlots":1,"returnSlots":2},"fun_checkProposalResult":{"entryPoint":9832,"id":1643,"parameterSlots":1,"returnSlots":2},"fun_checkSyncReadiness":{"entryPoint":10124,"id":2239,"parameterSlots":1,"returnSlots":1},"fun_executeOperation":{"entryPoint":10372,"id":2461,"parameterSlots":1,"returnSlots":0},"fun_getSupportedChainId":{"entryPoint":10221,"id":2346,"parameterSlots":1,"returnSlots":1},"fun_nonReentrantBefore":{"entryPoint":9717,"id":834,"parameterSlots":0,"returnSlots":0},"fun_transfer":{"entryPoint":9067,"id":381,"parameterSlots":3,"returnSlots":0},"increment_uint256":{"entryPoint":9466,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral":{"entryPoint":9641,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_8ad9":{"entryPoint":9400,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_8e62":{"entryPoint":9565,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_a88b":{"entryPoint":9925,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_b44f":{"entryPoint":9752,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_d556":{"entryPoint":10001,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_e2db":{"entryPoint":9324,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea2646970667358221220205848ed4bf61dfa3ec94e211382d3b0dd126c064987adf7329486dba5a7a12864736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE PUSH1 0x4 DUP1 CALLDATASIZE LT ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR SWAP2 DUP3 PUSH4 0x13CF08B EQ PUSH2 0x1DDA JUMPI POP DUP2 PUSH4 0x44BC2BD EQ PUSH2 0x1CAB JUMPI DUP2 PUSH4 0x57B2074 EQ PUSH2 0x1C90 JUMPI DUP2 PUSH4 0x6FDDE03 EQ PUSH2 0x1BC2 JUMPI DUP2 PUSH4 0x95EA7B3 EQ PUSH2 0x1B23 JUMPI DUP2 PUSH4 0xC0512E9 EQ PUSH2 0x1B05 JUMPI DUP2 PUSH4 0xD61B519 EQ PUSH2 0x18FF JUMPI DUP2 PUSH4 0x18160DDD EQ PUSH2 0x18E1 JUMPI DUP2 PUSH4 0x204C5D1F EQ PUSH2 0x164E JUMPI DUP2 PUSH4 0x22DBEFBB EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0x23B872DD EQ PUSH2 0x1556 JUMPI DUP2 PUSH4 0x2EE09598 EQ PUSH2 0x14BC JUMPI DUP2 PUSH4 0x313CE567 EQ PUSH2 0x14A0 JUMPI DUP2 PUSH4 0x35324EEE EQ PUSH2 0x1338 JUMPI DUP2 PUSH4 0x3B60288A EQ PUSH2 0x1309 JUMPI DUP2 PUSH4 0x4114509B EQ PUSH2 0x11EF JUMPI DUP2 PUSH4 0x456D10C1 EQ PUSH2 0x1109 JUMPI DUP2 PUSH4 0x4B145793 EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0x4DE184F6 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x4FA76EC9 EQ PUSH2 0x10EB JUMPI DUP2 PUSH4 0x5221C1F0 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x548D496F EQ PUSH2 0x10B7 JUMPI DUP2 PUSH4 0x5CF0E8A4 EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x6CBADBFA EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x70A08231 EQ PUSH2 0x105F JUMPI DUP2 PUSH4 0x7CE288EA EQ PUSH2 0xF6B JUMPI DUP2 PUSH4 0x7E5A9B47 EQ PUSH2 0xF3C JUMPI DUP2 PUSH4 0x893D692A EQ PUSH2 0xE20 JUMPI DUP2 PUSH4 0x8C7B04C9 EQ PUSH2 0xE02 JUMPI DUP2 PUSH4 0x95D89B41 EQ PUSH2 0xD17 JUMPI DUP2 PUSH4 0x9A49BDDE EQ PUSH2 0xCF2 JUMPI DUP2 PUSH4 0xA9059CBB EQ PUSH2 0xCC1 JUMPI DUP2 PUSH4 0xAF89D2C4 EQ PUSH2 0xC92 JUMPI DUP2 PUSH4 0xB00E0730 EQ PUSH2 0xB6E JUMPI DUP2 PUSH4 0xB0B6CC1A EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0xB3594510 EQ PUSH2 0x774 JUMPI DUP2 PUSH4 0xB3FE8BCB EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0xC51CAB3A EQ PUSH2 0x6D5 JUMPI DUP2 PUSH4 0xC9D27AFE EQ PUSH2 0x54E JUMPI DUP2 PUSH4 0xCCD7A490 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xDD62ED3E EQ PUSH2 0x337 JUMPI DUP2 PUSH4 0xE49A62E9 EQ PUSH2 0x310 JUMPI DUP2 PUSH4 0xECED3DFB EQ PUSH2 0x2F4 JUMPI POP PUSH4 0xF2C26A47 EQ PUSH2 0x205 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x2A4 PUSH1 0x40 MLOAD PUSH2 0x230 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x258 DUP3 PUSH2 0x251 DUP2 PUSH2 0x2006 JUMP JUMPDEST SUB DUP4 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x270 DUP4 PUSH2 0x269 DUP2 PUSH2 0x208D JUMP JUMPDEST SUB DUP5 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP3 PUSH1 0xB SLOAD PUSH2 0x2CE PUSH1 0xD SLOAD SWAP3 PUSH2 0x2C0 PUSH1 0xE SLOAD SWAP6 PUSH2 0x2B2 PUSH1 0xFF PUSH1 0xF SLOAD AND SWAP9 PUSH1 0x40 MLOAD SWAP13 DUP14 SWAP13 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP5 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x32D PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x278C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x350 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x22CE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x396 CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x39F PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x17 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x3BC DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP1 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x51A JUMPI PUSH2 0x3D8 PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x2711 JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x4E5 JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x4AD JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78B8E65C466DF05EA5DDF0593B44648ECA1F35C039F180E31257A6F1BDD005DC SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x498 JUMPI PUSH1 0x1 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE CALLER PUSH1 0x20 DUP6 ADD MSTORE SWAP4 ISZERO ISZERO SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x60 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x80 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x5 SSTORE STOP JUMPDEST PUSH1 0x2 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x14DA59DB9A5B99C8195B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x55C CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x565 PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x16 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x582 DUP4 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x6A2 JUMPI PUSH2 0x59E PUSH1 0xFF DUP3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x8 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x66E JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x636 JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78975AAF742630489BADD22949B88AC50EAAEA576339EE05440B671A33BFB6A9 SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x628 JUMPI PUSH1 0x2 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x4E6F20746F6B656E7320746F20766F7465 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x105B1C9958591E481D9BDD1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x159BDD1A5B99C8195B991959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 PUSH1 0xC0 SWAP2 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH1 0x1 DUP2 ADD SLOAD SWAP2 PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND SWAP2 DUP4 ADD SLOAD SWAP3 PUSH1 0x5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP2 ADD SLOAD AND SWAP4 PUSH1 0x40 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 DUP3 GT PUSH2 0x2EF JUMPI CALLDATASIZE PUSH1 0x23 DUP4 ADD SLT ISZERO PUSH2 0x2EF JUMPI PUSH2 0x7B7 PUSH1 0x24 SWAP3 CALLDATASIZE SWAP1 DUP5 DUP2 DUP6 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 DUP3 CALLDATALOAD SWAP4 PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x7D2 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0x229A JUMP JUMPDEST SWAP5 PUSH1 0x64 CALLDATALOAD SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP7 PUSH1 0x0 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xAED JUMPI PUSH2 0x7F8 DUP4 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x18 DUP9 MSTORE PUSH2 0x811 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 DUP8 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x11 SLOAD SWAP6 PUSH2 0x833 DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x11 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x16 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP8 DUP2 SSTORE PUSH1 0x1 SWAP4 DUP5 DUP3 ADD DUP9 MLOAD DUP8 DUP2 GT PUSH2 0xAA0 JUMPI PUSH2 0x869 DUP2 PUSH2 0x863 DUP5 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP5 PUSH2 0x2509 JUMP JUMPDEST DUP12 DUP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0xA2B JUMPI POP SWAP2 DUP2 PUSH1 0x7 SWAP6 SWAP5 SWAP3 PUSH2 0x8BC SWAP5 PUSH1 0x0 SWAP2 PUSH2 0xA20 JUMPI JUMPDEST POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP10 SHL OR SWAP1 SSTORE JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP5 ADD SSTORE PUSH1 0x0 PUSH1 0x3 DUP5 ADD SSTORE DUP9 DUP4 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SSTORE PUSH1 0x6 DUP2 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE ADD SWAP5 DUP3 MLOAD SWAP5 DUP6 GT PUSH2 0xA0D JUMPI POP POP PUSH2 0x8F8 DUP4 PUSH2 0x8F2 DUP7 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP7 PUSH2 0x2509 JUMP JUMPDEST DUP7 SWAP1 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH2 0x980 JUMPI SWAP3 DUP1 PUSH2 0x96A SWAP6 SWAP4 DUP2 SWAP4 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP9 SWAP7 PUSH1 0x0 SWAP5 PUSH2 0x975 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP6 DUP4 MSTORE CALLER DUP8 DUP5 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST ADD MLOAD SWAP3 POP DUP11 DUP1 PUSH2 0x939 JUMP JUMPDEST SWAP1 PUSH1 0x1F SWAP4 SWAP3 SWAP4 NOT DUP4 AND SWAP2 DUP6 PUSH1 0x0 MSTORE DUP9 PUSH1 0x0 KECCAK256 SWAP3 PUSH1 0x0 JUMPDEST DUP11 DUP3 DUP3 LT PUSH2 0x9F9 JUMPI POP POP SWAP2 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x96A SWAP9 SWAP7 SWAP5 LT PUSH2 0x9E0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x94B JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP9 DUP1 DUP1 PUSH2 0x9D3 JUMP JUMPDEST DUP4 DUP6 ADD MLOAD DUP7 SSTORE SWAP5 DUP8 ADD SWAP5 SWAP4 DUP5 ADD SWAP4 ADD PUSH2 0x996 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST SWAP1 POP DUP13 ADD MLOAD DUP16 PUSH2 0x88A JUMP JUMPDEST DUP9 SWAP3 SWAP2 DUP13 PUSH1 0x1F NOT DUP5 AND DUP7 PUSH1 0x0 MSTORE DUP4 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xA85 JUMPI POP POP SWAP2 PUSH1 0x7 SWAP9 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x8BC SWAP9 SWAP7 SWAP5 LT PUSH2 0xA6C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x89D JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP16 DUP1 DUP15 PUSH2 0xA5F JUMP JUMPDEST SWAP3 DUP5 ADD MLOAD DUP6 SSTORE DUP13 SWAP7 SWAP1 SWAP5 ADD SWAP4 SWAP3 DUP3 ADD SWAP3 DUP16 SWAP3 SWAP1 DUP2 ADD SWAP1 PUSH2 0xA41 JUMP JUMPDEST DUP5 PUSH1 0x41 DUP11 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP6 ADD DUP9 SWAP1 MSTORE PUSH1 0x13 DUP2 DUP9 ADD MSTORE PUSH19 0x436861696E206E6F7420617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP7 ADD DUP10 SWAP1 MSTORE PUSH1 0x23 DUP2 DUP10 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x14 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 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xC42 JUMPI PUSH1 0x60 PUSH1 0x20 SWAP4 PUSH1 0x5 DUP4 PUSH2 0xBCD PUSH32 0x8D5C76B09B9C1F4D0453D21436DCB0B568A50E9C0AE059E4D0AE8C95C71D07F0 SWAP6 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP6 PUSH2 0xBDA DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x12 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x17 DUP9 MSTORE PUSH2 0xC11 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP6 DUP5 SSTORE PUSH1 0x0 PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x0 PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x3 DUP5 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST SWAP1 DUP3 ADD SSTORE ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP5 DUP3 MSTORE CALLER DUP7 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP5 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20637265617465206F70657261 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x3A34B7B7 PUSH1 0xE1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1A PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xCE7 PUSH2 0xCDD PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x236B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xD0F PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 SWAP1 DUP1 SLOAD PUSH2 0xD3A DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xDD8 JUMPI POP PUSH1 0x1 EQ PUSH2 0xD7C JUMPI JUMPDEST PUSH2 0xD78 DUP6 PUSH2 0xD64 DUP2 DUP8 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xDC0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0xD78 PUSH2 0xD54 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xDA5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xD78 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xD64 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xD54 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x12 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH2 0xE51 DUP4 ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x3 DUP2 ADD SWAP2 DUP1 DUP4 SLOAD SWAP3 PUSH2 0xE67 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x2711 JUMP JUMPDEST ADD SLOAD TIMESTAMP LT PUSH2 0xF04 JUMPI PUSH2 0xE78 DUP6 PUSH2 0x275D JUMP JUMPDEST DUP2 PUSH2 0xEFC JUMPI JUMPDEST POP ISZERO PUSH2 0xEC1 JUMPI PUSH32 0x64CEE5A70D662A7EEF5B2A171DAA51DC624F3D64A35D0855B385262B893DC5A5 PUSH1 0x40 DUP7 DUP7 DUP7 PUSH1 0x1 DUP8 PUSH1 0xFF NOT AND OR SWAP1 SSTORE DUP3 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x13DC195C985D1A5BDB881B9BDD081C185CDCD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 POP DUP7 PUSH2 0xE7E JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x14DA59DB9A5B99C81B9BDD08195B991959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE SWAP1 ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xF88 DUP3 PUSH2 0x278C JUMP JUMPDEST ISZERO PUSH2 0x1024 JUMPI PUSH1 0x13 SLOAD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0xFC7 JUMPI PUSH32 0x57DF5A6A467271F04B10F7FE9E66D21DCD8AE7EAF079099D48959F24A53B6910 PUSH1 0x20 DUP6 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG1 STOP JUMPDEST DUP1 PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 PUSH2 0x1017 PUSH2 0xFF8 PUSH2 0x101F SWAP5 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP8 DUP11 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SUB SWAP1 LOG1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0xF93 JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F7420616C6C20636861696E73207265616479 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x1080 PUSH2 0x22B8 JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH2 0x231F JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x10 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xCA1838D50CA3156F1ACE7CDE39A081CC9C9A333AF6FCA55DB71817F8717E1DCB PUSH2 0x1138 CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x115B DUP7 DUP3 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1175 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x9 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1194 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x2 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH2 0x11EA PUSH1 0x13 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 SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x12BD JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x1283 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x14 DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x15 DUP4 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD SWAP2 DUP3 MSTORE PUSH32 0x4C7C76ABE482A2C36EA52F1B999474C69F8B4AFEEAC5635F8AEA2526864BA853 SWAP2 LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x135BD91D5B1948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x84 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F2072656D6F7665206D6F64756C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0x1354 PUSH2 0x22CE JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x145C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x142B JUMPI DUP4 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x13F1 JUMPI PUSH32 0xF14475B19484BF096265507CC0C41CD3BF1994992088806830686E2D72722719 PUSH1 0x40 DUP6 DUP6 DUP6 DUP3 PUSH1 0x0 MSTORE PUSH1 0x14 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x15 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP4 MLOAD SWAP3 DUP4 MSTORE DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x4D6F64756C6520616C726561647920657869737473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP5 ADD DUP4 SWAP1 MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20616464206D6F64756C650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xE379B3DEB66DDFA7962A2BDF35E9A08B5BED672C9DA3ECF7CC6174D253C6DFE5 PUSH2 0x14EB CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x2 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x150E DUP2 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1528 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x7 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1547 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x1 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x156F PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x22CE JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP5 PUSH1 0x0 NOT DUP7 LT PUSH2 0x15B6 JUMPI JUMPDEST POP POP PUSH2 0xCE7 SWAP4 POP PUSH2 0x236B JUMP JUMPDEST DUP5 DUP7 LT PUSH2 0x1622 JUMPI DUP2 ISZERO PUSH2 0x160A JUMPI CALLER ISZERO PUSH2 0x15F2 JUMPI POP PUSH2 0xCE7 SWAP5 DUP5 SWAP2 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE DUP5 DUP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP9 SWAP1 MSTORE SWAP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x0 PUSH2 0x120 PUSH1 0x40 MLOAD PUSH2 0x1670 DUP2 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MSTORE DUP3 PUSH1 0x80 DUP3 ADD MSTORE DUP3 PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD MSTORE DUP3 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE ADD MSTORE PUSH1 0x40 MLOAD SWAP1 PUSH2 0x16B7 DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C7 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST DUP3 MSTORE PUSH1 0x40 MLOAD PUSH2 0x16D9 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x16EE DUP2 PUSH2 0x229 DUP2 PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x1703 DUP2 PUSH2 0x229 DUP2 PUSH2 0x208D JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0xA SLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xB SLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC SLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x18CC JUMPI POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1740 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD DUP4 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x18A7 JUMPI DUP6 DUP6 PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0xD SLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE SLOAD PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0xFF PUSH1 0xF SLOAD AND ISZERO ISZERO PUSH2 0x120 DUP3 ADD MSTORE PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 MSTORE PUSH2 0x1808 PUSH2 0x17F2 PUSH2 0x17DC PUSH2 0x17C6 DUP6 MLOAD PUSH2 0x140 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x160 DUP7 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD DUP6 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD DUP4 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x80 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD SWAP1 PUSH1 0x1F NOT DUP4 DUP3 SUB ADD PUSH1 0xE0 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP5 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x187A JUMPI DUP7 DUP1 DUP8 PUSH2 0x120 DUP12 PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD DUP3 DUP6 ADD MSTORE ADD MLOAD ISZERO ISZERO PUSH2 0x140 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 PUSH1 0x20 DUP1 PUSH2 0x1898 PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP10 MLOAD PUSH2 0x2222 JUMP JUMPDEST SWAP8 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 DUP2 SWAP3 PUSH1 0x40 MLOAD PUSH2 0x18BE DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP3 ADD SWAP2 SWAP1 PUSH2 0x1771 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x16 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH2 0x192E DUP5 DUP5 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP2 DUP4 ADD SWAP3 DUP4 SLOAD SWAP3 PUSH2 0x1942 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x1ACE JUMPI PUSH2 0x1956 DUP7 PUSH2 0x2668 JUMP JUMPDEST DUP2 PUSH2 0x1AC6 JUMPI JUMPDEST POP ISZERO PUSH2 0x1A8C JUMPI POP PUSH1 0x7 SWAP1 PUSH1 0x1 SWAP5 DUP6 PUSH1 0xFF NOT DUP1 SWAP7 AND OR SWAP1 SSTORE ADD SWAP3 PUSH2 0x198E PUSH1 0x40 MLOAD PUSH2 0x1989 DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x2884 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE PUSH1 0x40 DUP3 DUP7 ADD MSTORE PUSH1 0x0 SWAP4 DUP1 SLOAD PUSH2 0x19A8 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST SWAP5 DUP6 PUSH1 0x40 DUP10 ADD MSTORE DUP4 DUP3 AND SWAP2 DUP3 PUSH1 0x0 EQ PUSH2 0x1A46 JUMPI POP POP PUSH1 0x1 EQ PUSH2 0x19ED JUMPI JUMPDEST PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP7 DUP7 SUB DUP8 LOG1 STOP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE DUP3 DUP2 KECCAK256 SWAP1 SWAP5 POP JUMPDEST DUP4 DUP6 LT PUSH2 0x1A32 JUMPI POP POP POP POP DUP2 ADD PUSH1 0x60 ADD DUP2 PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST DUP1 SLOAD DUP7 DUP7 ADD PUSH1 0x60 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x19F9 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP7 SWAP6 POP PUSH1 0x60 SWAP4 POP PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 SWAP7 SWAP5 SWAP3 POP AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 SWAP3 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x141C9BDC1BDCD85B081B9BDD081C185CDCD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 POP DUP8 PUSH2 0x195C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x159BDD1A5B99C81B9BDD08195B991959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x11 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x1B3C PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER ISZERO PUSH2 0x1BAA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x15F2 JUMPI POP CALLER PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP2 DUP6 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x3 SLOAD PUSH2 0x1BE4 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP1 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1C69 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C0E JUMPI JUMPDEST PUSH2 0xD78 DUP5 PUSH2 0xD64 DUP2 DUP7 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x1C51 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0x1BFE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1C39 JUMP JUMPDEST PUSH1 0xFF NOT AND PUSH1 0x20 DUP1 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 ISZERO ISZERO PUSH1 0x5 SHL DUP6 ADD SWAP1 SWAP3 ADD SWAP3 POP PUSH2 0xD64 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x1BFE JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x275D JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x24 CALLDATALOAD DUP2 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x1CE0 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0x229A JUMP JUMPDEST POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1CFB PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x1DA3 JUMPI PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 SWAP3 POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD EQ PUSH2 0x1D84 JUMPI JUMPDEST POP PUSH2 0x11EA PUSH1 0x13 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 PUSH1 0x7 PUSH2 0x1989 PUSH2 0x1D9D SWAP3 PUSH2 0x229 PUSH1 0x40 MLOAD DUP1 SWAP5 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST DUP4 PUSH2 0x1D60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP6 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x105B1C9958591E48195E1958DD5D1959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0xD78 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x7 DUP4 SLOAD SWAP4 PUSH2 0x1E1C DUP7 PUSH2 0x1E15 DUP2 PUSH1 0x1 DUP6 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP8 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD SWAP3 PUSH1 0xFF PUSH1 0x3 DUP4 ADD SLOAD SWAP2 DUP4 ADD SLOAD AND PUSH1 0x5 DUP4 ADD SLOAD SWAP2 PUSH2 0x1E5C PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x6 DUP7 ADD SLOAD AND SWAP5 PUSH2 0x1E55 PUSH1 0x40 MLOAD DUP1 SWAP9 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP7 PUSH2 0x21DD JUMP JUMPDEST PUSH2 0x1E78 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 MSTORE PUSH2 0x100 DUP1 PUSH1 0x20 DUP13 ADD MSTORE DUP11 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP6 PUSH1 0x40 DUP10 ADD MSTORE PUSH1 0x60 DUP9 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xE0 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1ED1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1EBB 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 0x1EB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1EEB DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F09 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x6 PUSH1 0x0 MSTORE PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1F4A JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F38 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1F8F DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1FAD JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x7 PUSH1 0x0 MSTORE PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1FEE JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1FDC JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2016 DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2034 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x8 PUSH1 0x0 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2075 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2063 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x209D DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x20BB JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x9 PUSH1 0x0 MSTORE PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x20FC JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x20EA JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0x2125 DUP4 PUSH2 0x1EA1 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x2187 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2147 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0x2173 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0x215C JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST PUSH2 0x140 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 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 SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x2212 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2202 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x223B DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x21C7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x226F DUP3 PUSH2 0x2247 JUMP JUMPDEST SWAP2 PUSH2 0x227D PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x21DD JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x2EF 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 0x2EF JUMPI DUP2 PUSH1 0x20 PUSH2 0x22B5 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 PUSH1 0x84 CALLDATALOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI PUSH2 0x22B5 SWAP2 PUSH1 0x4 ADD PUSH2 0x229A JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH2 0x32D PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x2EF JUMPI SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 DUP4 ISZERO PUSH2 0x2430 JUMPI AND SWAP3 DUP4 ISZERO PUSH2 0x2417 JUMPI PUSH1 0x0 SWAP1 DUP4 DUP3 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 SLOAD SWAP1 DUP4 DUP3 LT PUSH2 0x23E5 JUMPI POP SWAP2 PUSH1 0x40 DUP3 DUP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP6 DUP8 PUSH1 0x20 SWAP7 MSTORE DUP3 DUP7 MSTORE SUB DUP3 DUP3 KECCAK256 SSTORE DUP7 DUP2 MSTORE KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP4 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 SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x2456 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ISZERO PUSH2 0x2473 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4475726174696F6E206D75737420626520706F73697469766500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x24BF JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x10DA185A5B881B9BDD081CDD5C1C1BDC9D1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x2456 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x2517 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH2 0x2553 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH2 0x2548 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x253C JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH2 0x2533 JUMP JUMPDEST ISZERO PUSH2 0x2564 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20646F6573206E6F74206578697374000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x25B0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x5 SLOAD EQ PUSH2 0x2606 JUMPI PUSH1 0x2 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x261F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDE5B98D959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x2456 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x2683 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x3 PUSH1 0x2 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x26A9 PUSH1 0x2 SLOAD PUSH1 0x10 SLOAD SWAP1 PUSH2 0x2655 JUMP JUMPDEST DIV GT ISZERO SWAP3 DUP4 SWAP2 DUP3 PUSH2 0x26BB JUMPI JUMPDEST POP POP SWAP2 SWAP1 JUMP JUMPDEST GT SWAP1 POP CODESIZE DUP1 PUSH2 0x26B5 JUMP JUMPDEST ISZERO PUSH2 0x26CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20646F6573206E6F742065786973740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2718 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20616C7265616479206578656375746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x2777 DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH2 0x27A5 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x27B6 JUMPI POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x27D6 PUSH2 0x27C2 DUP3 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x27E9 JUMPI PUSH2 0x27E4 SWAP1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0x27A7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2857 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2851 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x284B JUMPI PUSH1 0x3 EQ PUSH2 0x2845 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x92DCECC2D8D2C840C6D0C2D2DC40D2DCC8CAF PUSH1 0x6B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0xA4B1 SWAP1 JUMP JUMPDEST POP PUSH1 0x38 SWAP1 JUMP JUMPDEST POP PUSH1 0x89 SWAP1 JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP3 PUSH1 0x40 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP2 ADD SWAP1 PUSH1 0x20 SWAP1 DUP1 DUP3 DUP5 ADD SWAP4 PUSH1 0x40 SWAP2 DUP3 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP3 SWAP1 DUP4 SWAP1 SUB PUSH2 0x2EF JUMPI DUP2 DUP2 ADD MLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI ADD SWAP2 DUP5 PUSH1 0x3F DUP5 ADD SLT ISZERO PUSH2 0x2EF JUMPI DUP4 DUP4 ADD MLOAD SWAP3 PUSH2 0x28E3 DUP5 PUSH2 0x2247 JUMP JUMPDEST SWAP4 PUSH2 0x28F0 DUP5 MLOAD SWAP6 DUP7 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP6 MSTORE DUP6 DUP6 ADD SWAP7 DUP5 DUP3 DUP5 ADD ADD GT PUSH2 0x2EF JUMPI DUP7 DUP5 PUSH2 0x290D SWAP4 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x2942 JUMPI POP POP SWAP2 PUSH2 0x2930 SWAP2 DUP4 PUSH2 0x2940 SWAP5 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH2 0x236B JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 SWAP1 PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x29D9 JUMPI POP SWAP1 DUP3 DUP3 PUSH2 0x2965 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 DUP4 ISZERO PUSH2 0x29C2 JUMPI SWAP2 DUP2 PUSH1 0x0 SWAP4 PUSH2 0x29A9 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP5 PUSH1 0x2 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x2 SSTORE DUP6 DUP6 MSTORE DUP5 DUP4 MSTORE DUP1 DUP6 KECCAK256 DUP3 DUP2 SLOAD ADD SWAP1 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP4 SWAP5 SWAP4 PUSH4 0x2770A7EB PUSH1 0xE2 SHL SUB PUSH2 0x2AA7 JUMPI SWAP1 DUP3 DUP3 PUSH2 0x29F9 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2A8F JUMPI PUSH1 0x0 SWAP3 DUP3 DUP5 MSTORE DUP4 DUP3 MSTORE DUP6 DUP5 KECCAK256 SLOAD SWAP6 DUP2 DUP8 LT PUSH2 0x2A61 JUMPI DUP2 DUP6 SWAP7 SWAP8 DUP6 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP7 SWAP8 MSTORE DUP8 DUP6 MSTORE SUB DUP2 DUP8 KECCAK256 SSTORE DUP2 PUSH1 0x2 SLOAD SUB PUSH1 0x2 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST 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 DUP8 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2AB735B737BBB71037B832B930BA34B7B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 PC BASEFEE 0xED 0x4B 0xF6 SAR STATICCALL RETURNDATACOPY 0xC9 0x4E 0x21 SGT DUP3 0xD3 0xB0 0xDD SLT PUSH13 0x64987ADF7329486DBA5A7A128 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"359:24426:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;1982:22;359:24426;;1982:22;359:24426;;1982:22;359:24426;;;1982:22;359:24426;;;;1982:22;359:24426;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2466:103:5;;;:::i;:::-;359:24426:6;;;;;12824:18;359:24426;;;;;;12866:74;359:24426;;12874:37;;12866:74;:::i;:::-;12976:18;;;359:24426;12958:15;:36;359:24426;;;13022:58;359:24426;13031:18;;;359:24426;;13030:19;13022:58;:::i;:::-;13099:19;;;13119:10;;359:24426;;;;;;;;;;;;;13119:10;359:24426;;;;;;;;;13167:25;359:24426;;13119:10;;13501:66;13119:10;13501:66;13119:10;;359:24426;;;;;;;;;;;;;;13315:4;359:24426;;;;;;;;13330:156;;;;;13315:4;13358:23;:41;359:24426;;;13358:41;:::i;:::-;359:24426;;13330:156;359:24426;;;;;;13119:10;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13501:66;;;;13315:4;3068:21:5;359:24426:6;;13330:156;13430:27;;:45;359:24426;;;13430:45;:::i;:::-;359:24426;;13330:156;;359:24426;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;:::i;:::-;2466:103:5;;;:::i;:::-;359:24426:6;;;;;7761:9;359:24426;;;;;;7793:62;359:24426;;;7801:26;7793:62;:::i;:::-;7891:17;;;359:24426;7873:15;:35;359:24426;;;7935:56;359:24426;7944:17;;;359:24426;;7943:18;7935:56;:::i;:::-;8010:17;;;8028:10;;359:24426;;;;;;;;;;;;;8028:10;359:24426;;;;;;;;;8075:25;359:24426;;8028:10;;8386:61;8028:10;8386:61;8028:10;;359:24426;;;;;;;;;;;;;;8218:4;359:24426;;;;;;;;8233:138;;;;;8261:17;;:32;359:24426;;;8261:32;:::i;8233:138::-;8324:21;;:36;359:24426;;;8324:36;:::i;359:24426::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;2386:63;359:24426;;;;;;;;2386:63;359:24426;2386:63;;359:24426;2386:63;;;;359:24426;;;2386:63;;359:24426;;2386:63;;;359:24426;;2386:63;359:24426;;;;;2386:63;;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2223:45;359:24426;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;6637:10;;359:24426;;;;;;;;;;;6627:25;359:24426;;6702:51;6710:13;;;6702:51;:::i;:::-;359:24426;;;6771:15;359:24426;;6763:67;359:24426;;;;;;6763:67;:::i;:::-;359:24426;;6771:15;359:24426;;;;;;;;;;;6944:17;359:24426;6944:17;;;;:::i;:::-;;359:24426;;;;6999:9;359:24426;;;;;;;;;7073:20;;;;359:24426;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;7317:18;359:24426;;;7239:27;359:24426;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;7118:17;;;359:24426;;;7149:21;;359:24426;7184:17;;;359:24426;;;;;;;7239:15;:27;:::i;:::-;7219:17;;;359:24426;7276:18;;;6637:10;-1:-1:-1;;;;;359:24426:6;;;;;;;;7317:18;359:24426;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;7364:53;359:24426;;;;;;;;;;10599:17:1;;;359:24426:6;;;;;;;;;;;;;;;;;;6637:10;359:24426;;;;;;;;;;;;;;:::i;:::-;7364:53;;;359:24426;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7364:53;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;10599:17:1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7317:18;359:24426;;;;;;7239:27;359:24426;;;;;;;;;;;;;;;;;;;;10599:17:1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2175:42;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;11848:10;359:24426;;;;;;;;;11838:25;359:24426;;;;11922:13;12335:19;11922:13;11914:51;12383:65;11922:13;;;11914:51;:::i;:::-;11998:17;359:24426;11998:17;;;;:::i;:::-;;359:24426;;;;12063:18;359:24426;;12298:27;359:24426;;;;;;;;;12163:23;;359:24426;;12200:27;;;359:24426;;12241:18;;359:24426;;;;;;;12298:15;:27;:::i;:::-;12277:18;;;359:24426;12335:19;11848:10;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;;;11848:10;359:24426;;;;;;;;12383:65;359:24426;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2669:48;359:24426;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;3459:5:1;359:24426:6;;:::i;:::-;;;735:10:4;;3459:5:1;:::i;:::-;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;2083:30;359:24426;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;16145:18;359:24426;;;;;;;;16195:37;16187:74;16195:37;;;16187:74;:::i;:::-;359:24426;16280:18;;359:24426;;;;;16271:58;359:24426;;;16279:19;16271:58;:::i;:::-;16366:18;359:24426;16347:15;:37;359:24426;;16453:33;;;:::i;:::-;16504:23;;;359:24426;;;;;16612:55;359:24426;;;;;;;;;;;;;;;;;;;;;16612:55;359:24426;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;16504:23;;;;;;359:24426;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;19462:31;;;;:::i;:::-;359:24426;;;20336:14;359:24426;;19641:28;;;;;;19811:26;359:24426;;;;;;;19811:26;359:24426;19671:3;19708:22;20299:62;;19708:22;19671:3;19708:22;;:::i;:::-;359:24426;;20299:62;;;;;;359:24426;;;;;;;;;;;;;;;;;;20299:62;;;;19671:3;:::i;:::-;19626:13;;359:24426;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;-1:-1:-1;;;;;359:24426:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;2119:29;359:24426;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2485:47;359:24426;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24426:6;;;;;2010:31;359:24426;;;;;;;;;;;9730:61;359:24426;;;:::i;:::-;;;;;;;;9103:9;359:24426;;9621:38;:21;359:24426;;;9135:62;359:24426;;;9143:26;9135:62;:::i;:::-;359:24426;;;9215:15;359:24426;;9207:61;359:24426;;;;;;9207:61;:::i;:::-;9287:24;;;359:24426;;;;;;;9278:66;359:24426;;;;;;9286:39;9278:66;:::i;:::-;9581:30;:17;;;359:24426;;;9581:30;:::i;:::-;359:24426;;9621:21;359:24426;;;9621:38;:::i;:::-;359:24426;;;;;;;;;;9710:4;359:24426;;;;;;;;9730:61;9776:14;359:24426;;;9730:61;;;;359:24426;;;;;;;;;;;;;;;;;;9730:61;;;;359:24426;;;;;;;;;;;;;;;;23335:10;;359:24426;;;;;;;;;23325:25;359:24426;;;;;23406:13;359:24426;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;23474:7;359:24426;;;;;;;;-1:-1:-1;;;;;;359:24426:6;;;23406:13;359:24426;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;23550:24;;;359:24426;;;;;;;;;;;;;;;23406:13;359:24426;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2538:49;359:24426;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;:::i;:::-;22825:10;359:24426;;;;;;;;;;;22815:25;359:24426;;-1:-1:-1;;;;;359:24426:6;;22893:28;;359:24426;;;;;22957:13;359:24426;;;;;;;;;;23110:38;359:24426;;;;;;;23018:7;359:24426;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;22957:13;359:24426;;;;;;;;;;;;;;;;;;;;;;23110:38;359:24426;;;;;;;;;;;;;;;22957:13;359:24426;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;2780:2:1;359:24426:6;;;;;;;14899:66;359:24426;;;:::i;:::-;;;;;;;;14273:18;359:24426;;14778:49;:27;359:24426;;;14315:74;359:24426;;14323:37;;14315:74;:::i;:::-;359:24426;;;14407:15;359:24426;;14399:61;359:24426;;;;;;14399:61;:::i;:::-;14479:25;;;359:24426;;;;;;;14470:67;359:24426;;;;;;14478:40;14470:67;:::i;:::-;14727:41;:23;;;359:24426;;;14727:41;:::i;359:24426::-;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;735:10:4;359:24426:6;;;;;;;;10599:17:1;;;10580:36;;10576:309;;359:24426:6;4986:5:1;;;;;;:::i;10576:309::-;10636:24;;;10632:130;;9813:19;;9809:89;;735:10:4;9911:21:1;9907:90;;359:24426:6;4986:5:1;359:24426:6;;;;;;;;;;;735:10:4;359:24426:6;;;;;;;;;10576:309:1;;;;9907:90;359:24426:6;;;;;9955:31:1;;;;;;;;359:24426:6;9955:31:1;9809:89;359:24426:6;;;;;9855:32:1;;;;;;;;359:24426:6;9855:32:1;10632:130;359:24426:6;;;-1:-1:-1;;;10687:60:1;;735:10:4;10687:60:1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;10687:60:1;;;359:24426:6;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;2927:12:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;10875:9;359:24426;;;;;;10907:62;359:24426;;;10915:26;10907:62;:::i;:::-;10988:17;;;359:24426;;;;10979:56;359:24426;;;10987:18;10979:56;:::i;:::-;11072:17;;;359:24426;11053:15;:36;359:24426;;11157:32;;;:::i;:::-;11207:23;;;359:24426;;;;;;11373:18;359:24426;;;;;;;;;;;;11373:18;359:24426;11355:37;359:24426;;;;;;;;:::i;:::-;11355:37;:::i;:::-;359:24426;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11416:49;;;;;;359:24426;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;-1:-1:-1;;;;359:24426:6;;;;;11416:49;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11416:49;359:24426;;;;;;;;;;;11072:17;359:24426;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;11207:23;;;;;;359:24426;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;2047:30;359:24426;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;:::i;:::-;;;735:10:4;;9813:19:1;9809:89;;-1:-1:-1;;;;;359:24426:6;;9911:21:1;;9907:90;;735:10:4;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;10085:31:1;359:24426:6;735:10:4;10085:31:1;;359:24426:6;;;;;;;9809:89:1;359:24426:6;;-1:-1:-1;;;9855:32:1;;359:24426:6;9855:32:1;;;359:24426:6;;;9855:32:1;359:24426:6;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;359:24426:6;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;-1:-1:-1;359:24426:6;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;17158:15;359:24426;;17150:61;359:24426;;;;;;17150:61;:::i;:::-;359:24426;;;17230:17;359:24426;;;;;;;;;;17769:66;359:24426;;;;;17230:17;359:24426;;;;;;;;;;;;;;17628:9;359:24426;;;;;;;;17664:26;17660:94;;359:24426;;17769:66;17820:14;359:24426;;;17769:66;;;;359:24426;;;;;;;;;;;;;;;;;;17660:94;17724:18;359:24426;17706:37;359:24426;;;;17724:18;;;;;359:24426;:::i;17706:37::-;17660:94;;;359:24426;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;2335:45;359:24426;;;;;;;2335:45;359:24426;;2335:45;359:24426;2335:45;359:24426;2335:45;359:24426;2335:45;;359:24426;:::i;:::-;;;;:::i;:::-;2335:45;;;359:24426;2335:45;359:24426;;2335:45;;359:24426;2335:45;;;359:24426;;2335:45;;;359:24426;;;;;;;;2335:45;;;359:24426;;;;;;2335:45;;;;;359:24426;:::i;:::-;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;23738:7;359:24426;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;23738:7;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24426:6;;;;-1:-1:-1;359:24426:6;;;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;359:24426:6;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24426:6;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;-1:-1:-1;;;;;359:24426:6;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;359:24426:6;;;;;;:::o;:::-;;-1:-1:-1;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24426:6;;;;;;;;-1:-1:-1;359:24426:6;18380:15;359:24426;;;;-1:-1:-1;359:24426:6;;;18041:371;;359:24426;;;;;;;;;;;;;;;;;;;;;;:::o;5393:300:1:-;;-1:-1:-1;;;;;359:24426:6;;;;5476:18:1;;5472:86;;359:24426:6;5571:16:1;;;5567:86;;6093:540;359:24426:6;;;;;;;;;;;6340:19:1;;;;6336:115;;359:24426:6;;;;;7083:25:1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;7083:25:1;5393:300::o;6336:115::-;359:24426:6;;-1:-1:-1;;;6386:50:1;;-1:-1:-1;;;;;359:24426:6;;;;6386:50:1;;;359:24426:6;;;;;;;;;;;;;;;;10687:60:1;5567:86;359:24426:6;;-1:-1:-1;;;5610:32:1;;5492:1;5610:32;;;359:24426:6;;;5610:32:1;5472:86;359:24426:6;;-1:-1:-1;;;5517:30:1;;5492:1;5517:30;;;359:24426:6;;;5517:30:1;359:24426:6;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;-1:-1:-1;;359:24426:6;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;-1:-1:-1;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;359:24426:6;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;2575:307:5;1899:1;2702:7;359:24426:6;2702:18:5;2698:86;;1899:1;2702:7;359:24426:6;2575:307:5:o;2698:86::-;359:24426:6;;-1:-1:-1;;;2743:30:5;;;;;359:24426:6;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;:::o;10074:580::-;;359:24426;-1:-1:-1;359:24426:6;10216:9;359:24426;;10248:62;359:24426;-1:-1:-1;359:24426:6;;;;10256:26;10248:62;:::i;:::-;10362:21;10342:17;;;359:24426;10362:21;;359:24426;10342:41;;;;;:::i;:::-;10455:3;10419:32;10342:17;359:24426;10435:16;359:24426;10419:32;;:::i;:::-;359:24426;-1:-1:-1;10493:28:6;;;;;10540:58;;10074:580;10617:30;;;10074:580;:::o;10540:58::-;10557:41;;-1:-1:-1;10540:58:6;;;;359:24426;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24426:6;;;;;;;;;;;;;;;;;;;;15241:647;-1:-1:-1;359:24426:6;15394:18;359:24426;;;-1:-1:-1;359:24426:6;;15436:74;359:24426;;15444:37;;15436:74;:::i;:::-;15573:27;15547:23;;;359:24426;15573:27;;359:24426;15547:53;;;;;:::i;18657:573::-;18818:62;-1:-1:-1;359:24426:6;;;;18786:9;359:24426;;;;;;18826:26;18818:62;:::i;:::-;18985:13;19000:28;20818:1;19000:28;;;;19212:11;;19219:4;18657:573;:::o;19030:3::-;19108:29;19067:22;;;:::i;:::-;-1:-1:-1;359:24426:6;18380:15;359:24426;;;;-1:-1:-1;359:24426:6;;;18041:371;;19108:29;19107:30;19103:81;;19030:3;;;:::i;:::-;18985:13;;19103:81;19157:12;;:::o;20993:323::-;21082:11;;21078:25;;21144:1;21134:11;;21130:27;;21195:1;21185:11;;21181:26;;21242:1;21232:11;21228:29;;359:24426;;-1:-1:-1;;;21280:29:6;;359:24426;21280:29;;;359:24426;;;;;;-1:-1:-1;;;359:24426:6;;;;;;21280:29;21228;21252:5;21245:12;:::o;21181:26::-;21198:9;21205:2;21198:9;:::o;21130:27::-;21147:10;21154:3;21147:10;:::o;21078:25::-;21095:8;21102:1;21095:8;:::o;359:24426::-;;;;;;;;;;;;-1:-1:-1;;;;;359:24426:6;;;;;;;;;;;;:::o;21456:1113::-;359:24426;;21615:39;;;;;;;;;359:24426;;;;;;;;;21615:39;;;359:24426;-1:-1:-1;;;;;;359:24426:6;;;21615:39;359:24426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;21677:58:6;;359:24426;;;;;21846:36;359:24426;;21922:6;359:24426;;21846:36;;;;:::i;:::-;359:24426;-1:-1:-1;;;;;359:24426:6;21906:10;21922:6;:::i;:::-;21456:1113::o;21673:890::-;359:24426;;;;-1:-1:-1;;;21950:54:6;;359:24426;;;;;;22115:36;359:24426;;22115:36;;;;:::i;:::-;-1:-1:-1;;;;;359:24426:6;;;;7528:21:1;;7524:91;;359:24426:6;;6643:425:1;359:24426:6;6233:21:1;7083:25;359:24426:6;6233:21:1;359:24426:6;6233:21:1;:::i;:::-;;359:24426:6;;;;;;;;;;;;;;;;;;;;7083:25:1;21456:1113:6:o;7524:91:1:-;359:24426:6;-1:-1:-1;;;7572:32:1;;-1:-1:-1;7572:32:1;;;359:24426:6;;;7572:32:1;21946:617:6;359:24426;;;-1:-1:-1;;;22203:54:6;359:24426;;;;;22370:36;359:24426;;22370:36;;;;:::i;:::-;359:24426;-1:-1:-1;;;;;359:24426:6;;;;8054:21:1;;8050:89;;6093:540;359:24426:6;;;;;;;;;;;6340:19:1;;;;6336:115;;359:24426:6;;;;;7083:25:1;359:24426:6;;;;;;;;;;;;6810:21:1;359:24426:6;;6810:21:1;359:24426:6;;;;;7083:25:1;21456:1113:6:o;6336:115:1:-;359:24426:6;-1:-1:-1;;;6386:50:1;;-1:-1:-1;;;;;359:24426:6;;6386:50:1;;;359:24426:6;;;;;;;;;;;;;;;;10687:60:1;8050:89;359:24426:6;;-1:-1:-1;;;8098:30:1;;-1:-1:-1;8098:30:1;;;359:24426:6;;;8098:30:1;22199:364:6;359:24426;;-1:-1:-1;;;22525:27:6;;;;;359:24426;;;;;;;;-1:-1:-1;;;359:24426:6;;;;;;22525:27"},"methodIdentifiers":{"activeModules(bytes32)":"b3fe8bcb","addModule(bytes32,address)":"35324eee","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","checkChainConnection(uint256)":"4de184f6","checkMultiSigResult(uint256)":"057b2074","checkProposalResult(uint256)":"7e5a9b47","checkSyncReadiness(uint256)":"e49a62e9","createMultiSigOperation(bytes32,uint256)":"b00e0730","createProposal(string,uint256,bytes,uint256)":"b3594510","currentChainId()":"6cbadbfa","decimals()":"313ce567","dleInfo()":"f2c26a47","executeMultiSigOperation(uint256)":"893d692a","executeProposal(uint256)":"0d61b519","executedMultiSig(uint256)":"af89d2c4","executedProposals(uint256)":"3b60288a","getCurrentChainId()":"5cf0e8a4","getDLEInfo()":"204c5d1f","getModuleAddress(bytes32)":"22dbefbb","getSupportedChainCount()":"eced3dfb","getSupportedChainId(uint256)":"9a49bdde","isChainSupported(uint256)":"5221c1f0","isModuleActive(bytes32)":"4b145793","modules(bytes32)":"b0b6cc1a","multiSigCounter()":"8c7b04c9","multiSigOperations(uint256)":"c51cab3a","name()":"06fdde03","proposalCounter()":"0c0512e9","proposals(uint256)":"013cf08b","quorumPercentage()":"4fa76ec9","removeModule(bytes32)":"4114509b","signMultiSigOperation(uint256,bool)":"ccd7a490","supportedChains(uint256)":"548d496f","symbol()":"95d89b41","syncExecutionFromChain(uint256,uint256,bytes)":"044bc2bd","syncMultiSigFromChain(uint256,uint256,uint256,uint256,bytes)":"2ee09598","syncToAllChains(uint256)":"7ce288ea","syncVoteFromChain(uint256,uint256,uint256,uint256,bytes)":"456d10c1","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","vote(uint256,bool)":"c9d27afe"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"initialPartners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"initialAmounts\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"supportedChainIds\",\"type\":\"uint256[]\"}],\"internalType\":\"struct DLE.DLEConfig\",\"name\":\"config\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_currentChainId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"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\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainExecutionSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainMultiSigSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainVoteSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"supportedChainIds\",\"type\":\"uint256[]\"}],\"name\":\"DLEInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"InitialTokensDistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"moduleId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"moduleAddress\",\"type\":\"address\"}],\"name\":\"ModuleAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"moduleId\",\"type\":\"bytes32\"}],\"name\":\"ModuleRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"}],\"name\":\"MultiSigExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"}],\"name\":\"MultiSigOperationCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"support\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturePower\",\"type\":\"uint256\"}],\"name\":\"MultiSigSigned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"support\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"votingPower\",\"type\":\"uint256\"}],\"name\":\"ProposalVoted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"SyncCompleted\",\"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\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"activeModules\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_moduleAddress\",\"type\":\"address\"}],\"name\":\"addModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"uint256\",\"name\":\"_chainId\",\"type\":\"uint256\"}],\"name\":\"checkChainConnection\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isAvailable\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"}],\"name\":\"checkMultiSigResult\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"passed\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"quorumReached\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"checkProposalResult\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"passed\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"quorumReached\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"checkSyncReadiness\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"allChainsReady\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_operationHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"_duration\",\"type\":\"uint256\"}],\"name\":\"createMultiSigOperation\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_duration\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_governanceChainId\",\"type\":\"uint256\"}],\"name\":\"createProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentChainId\",\"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\":\"dleInfo\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"}],\"name\":\"executeMultiSigOperation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"executeProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"executedMultiSig\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"executedProposals\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCurrentChainId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDLEInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"internalType\":\"struct DLE.DLEInfo\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"getModuleAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSupportedChainCount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_index\",\"type\":\"uint256\"}],\"name\":\"getSupportedChainId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_chainId\",\"type\":\"uint256\"}],\"name\":\"isChainSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"isModuleActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"modules\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"multiSigCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"multiSigOperations\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"forSignatures\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"againstSignatures\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumPercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"removeModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_support\",\"type\":\"bool\"}],\"name\":\"signMultiSigOperation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"supportedChains\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_proof\",\"type\":\"bytes\"}],\"name\":\"syncExecutionFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_forSignatures\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_againstSignatures\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_proof\",\"type\":\"bytes\"}],\"name\":\"syncMultiSigFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"syncToAllChains\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_proof\",\"type\":\"bytes\"}],\"name\":\"syncVoteFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_support\",\"type\":\"bool\"}],\"name\":\"vote\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"\\u041e\\u0441\\u043d\\u043e\\u0432\\u043d\\u043e\\u0439 \\u043a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 DLE \\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\\u043d\\u043e\\u0439 \\u0430\\u0440\\u0445\\u0438\\u0442\\u0435\\u043a\\u0442\\u0443\\u0440\\u043e\\u0439 \\u0438 \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438-\\u0447\\u0435\\u0439\\u043d \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u043e\\u0439\",\"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.\"}}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"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\":{\"addModule(bytes32,address)\":{\"details\":\"\\u0414\\u043e\\u0431\\u0430\\u0432\\u0438\\u0442\\u044c \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleAddress\":\"\\u0410\\u0434\\u0440\\u0435\\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\",\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"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}.\"},\"checkChainConnection(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u043f\\u043e\\u0434\\u043a\\u043b\\u044e\\u0447\\u0435\\u043d\\u0438\\u0435 \\u043a \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0435\",\"params\":{\"_chainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"},\"returns\":{\"isAvailable\":\"\\u0414\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u0430 \\u043b\\u0438 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0430\"}},\"checkMultiSigResult(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442 \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"},\"returns\":{\"passed\":\"\\u041f\\u0440\\u043e\\u0448\\u043b\\u0430 \\u043b\\u0438 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044f\",\"quorumReached\":\"\\u0414\\u043e\\u0441\\u0442\\u0438\\u0433\\u043d\\u0443\\u0442 \\u043b\\u0438 \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\"}},\"checkProposalResult(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"},\"returns\":{\"passed\":\"\\u041f\\u0440\\u043e\\u0448\\u043b\\u043e \\u043b\\u0438 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"quorumReached\":\"\\u0414\\u043e\\u0441\\u0442\\u0438\\u0433\\u043d\\u0443\\u0442 \\u043b\\u0438 \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\"}},\"checkSyncReadiness(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0432\\u0441\\u0435 \\u043f\\u043e\\u0434\\u043a\\u043b\\u044e\\u0447\\u0435\\u043d\\u0438\\u044f \\u043f\\u0435\\u0440\\u0435\\u0434 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0435\\u0439\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"},\"returns\":{\"allChainsReady\":\"\\u0413\\u043e\\u0442\\u043e\\u0432\\u044b \\u043b\\u0438 \\u0432\\u0441\\u0435 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"createMultiSigOperation(bytes32,uint256)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_duration\":\"\\u0414\\u043b\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c \\u0441\\u0431\\u043e\\u0440\\u0430 \\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0435\\u0439\",\"_operationHash\":\"\\u0425\\u0435\\u0448 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"createProposal(string,uint256,bytes,uint256)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u0441 \\u0432\\u044b\\u0431\\u043e\\u0440\\u043e\\u043c \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u0434\\u043b\\u044f \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\\u0430\",\"params\":{\"_description\":\"\\u041e\\u043f\\u0438\\u0441\\u0430\\u043d\\u0438\\u0435 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_duration\":\"\\u0414\\u043b\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c \\u0433\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f \\u0432 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\\u0445\",\"_governanceChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u0434\\u043b\\u044f \\u0441\\u0431\\u043e\\u0440\\u0430 \\u0433\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\",\"_operation\":\"\\u041e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044f \\u0434\\u043b\\u044f \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f\"}},\"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}.\"},\"executeMultiSigOperation(uint256)\":{\"details\":\"\\u0418\\u0441\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"executeProposal(uint256)\":{\"details\":\"\\u0418\\u0441\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"getCurrentChainId()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0442\\u0435\\u043a\\u0443\\u0449\\u0438\\u0439 ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"},\"getDLEInfo()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u044e \\u043e DLE\"},\"getModuleAddress(bytes32)\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"getSupportedChainCount()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u043c\\u044b\\u0445 \\u0446\\u0435\\u043f\\u043e\\u0447\\u0435\\u043a\"},\"getSupportedChainId(uint256)\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c ID \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u043c\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043f\\u043e \\u0438\\u043d\\u0434\\u0435\\u043a\\u0441\\u0443\",\"params\":{\"_index\":\"\\u0418\\u043d\\u0434\\u0435\\u043a\\u0441 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"isChainSupported(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c, \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u0442\\u0441\\u044f \\u043b\\u0438 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0430\",\"params\":{\"_chainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"isModuleActive(bytes32)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c, \\u0430\\u043a\\u0442\\u0438\\u0432\\u0435\\u043d \\u043b\\u0438 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"name()\":{\"details\":\"Returns the name of the token.\"},\"removeModule(bytes32)\":{\"details\":\"\\u0423\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"signMultiSigOperation(uint256,bool)\":{\"details\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\",\"_support\":\"\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"syncExecutionFromChain(uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u0435 \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_proof\":\"\\u0414\\u043e\\u043a\\u0430\\u0437\\u0430\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f\",\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"syncMultiSigFromChain(uint256,uint256,uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_againstSignatures\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438 \\u043f\\u0440\\u043e\\u0442\\u0438\\u0432\",\"_forSignatures\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438 \\u0437\\u0430\",\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\",\"_proof\":\"\\u0414\\u043e\\u043a\\u0430\\u0437\\u0430\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0438\"}},\"syncToAllChains(uint256)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u044f \\u0442\\u043e\\u043b\\u044c\\u043a\\u043e \\u043f\\u0440\\u0438 100% \\u0433\\u043e\\u0442\\u043e\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"syncVoteFromChain(uint256,uint256,uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u0433\\u043e\\u043b\\u043e\\u0441 \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_againstVotes\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u0430 \\u043f\\u0440\\u043e\\u0442\\u0438\\u0432\",\"_forVotes\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u0430 \\u0437\\u0430\",\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_proof\":\"\\u0414\\u043e\\u043a\\u0430\\u0437\\u0430\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0438\",\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"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`.\"},\"vote(uint256,bool)\":{\"details\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\\u0430\\u0442\\u044c \\u0437\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_support\":\"\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}}},\"title\":\"DLE (Digital Legal Entity)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DLE.sol\":\"DLE\"},\"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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]},\"contracts/DLE.sol\":{\"keccak256\":\"0xff3d729678b7040785e48da1d96f359342e7738f7e4e2b997cd9f499cb010c04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://dd6f14aa2443ee79475ce12de339336e859f4677de04ac4761bfc23c1511f1ee\",\"dweb:/ipfs/QmZ2RgWHLbYEd2EmaKMSrRUzSns1jAHnF9fZH4aK3WssAv\"]}},\"version\":1}"}}}}} \ No newline at end of file diff --git a/backend/artifacts/build-info/f60ede94c341608b6f6d2f67c953fa04.json b/backend/artifacts/build-info/f60ede94c341608b6f6d2f67c953fa04.json new file mode 100644 index 0000000..3a1f744 --- /dev/null +++ b/backend/artifacts/build-info/f60ede94c341608b6f6d2f67c953fa04.json @@ -0,0 +1 @@ +{"id":"f60ede94c341608b6f6d2f67c953fa04","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@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/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.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 * All two of these values are immutable: they can only be set once during\n * 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/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/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/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/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n * consider using {ReentrancyGuardTransient} instead.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant NOT_ENTERED = 1;\n uint256 private constant ENTERED = 2;\n\n uint256 private _status;\n\n /**\n * @dev Unauthorized reentrant call.\n */\n error ReentrancyGuardReentrantCall();\n\n constructor() {\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be NOT_ENTERED\n if (_status == ENTERED) {\n revert ReentrancyGuardReentrantCall();\n }\n\n // Any calls to nonReentrant after this point will fail\n _status = ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == ENTERED;\n }\n}\n"},"contracts/DLE.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/utils/ReentrancyGuard.sol\";\n\n/**\n * @title DLE (Digital Legal Entity)\n * @dev Основной контракт DLE с модульной архитектурой и мульти-чейн поддержкой\n */\ncontract DLE is ERC20, ReentrancyGuard {\n struct DLEInfo {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 creationTimestamp;\n bool isActive;\n }\n\n struct DLEConfig {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 quorumPercentage;\n address[] initialPartners;\n uint256[] initialAmounts;\n uint256[] supportedChainIds; // Поддерживаемые цепочки\n }\n\n struct Proposal {\n uint256 id;\n string description;\n uint256 forVotes;\n uint256 againstVotes;\n bool executed;\n uint256 deadline;\n address initiator;\n bytes operation; // Операция для исполнения\n mapping(address => bool) hasVoted;\n mapping(uint256 => bool) chainVoteSynced; // Синхронизация голосов между цепочками\n }\n\n struct MultiSigOperation {\n bytes32 operationHash;\n uint256 forSignatures;\n uint256 againstSignatures;\n bool executed;\n uint256 deadline;\n address initiator;\n mapping(address => bool) hasSigned;\n mapping(uint256 => bool) chainSignSynced; // Синхронизация подписей между цепочками\n }\n\n // Основные настройки\n DLEInfo public dleInfo;\n uint256 public quorumPercentage;\n uint256 public proposalCounter;\n uint256 public multiSigCounter;\n uint256 public currentChainId;\n\n // Модули\n mapping(bytes32 => address) public modules;\n mapping(bytes32 => bool) public activeModules;\n\n // Предложения и мультиподписи\n mapping(uint256 => Proposal) public proposals;\n mapping(uint256 => MultiSigOperation) public multiSigOperations;\n\n // Мульти-чейн\n mapping(uint256 => bool) public supportedChains;\n mapping(uint256 => bool) public executedProposals; // Синхронизация исполненных предложений\n mapping(uint256 => bool) public executedMultiSig; // Синхронизация исполненных мультиподписей\n\n // События\n event DLEInitialized(\n string name,\n string symbol,\n string location,\n string coordinates,\n uint256 jurisdiction,\n uint256 oktmo,\n string[] okvedCodes,\n uint256 kpp,\n address tokenAddress,\n uint256[] supportedChainIds\n );\n event InitialTokensDistributed(address[] partners, uint256[] amounts);\n event ProposalCreated(uint256 proposalId, address initiator, string description);\n event ProposalVoted(uint256 proposalId, address voter, bool support, uint256 votingPower);\n event ProposalExecuted(uint256 proposalId, bytes operation);\n event MultiSigOperationCreated(uint256 operationId, address initiator, bytes32 operationHash);\n event MultiSigSigned(uint256 operationId, address signer, bool support, uint256 signaturePower);\n event MultiSigExecuted(uint256 operationId, bytes32 operationHash);\n event ModuleAdded(bytes32 moduleId, address moduleAddress);\n event ModuleRemoved(bytes32 moduleId);\n event CrossChainExecutionSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId);\n event CrossChainVoteSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId);\n event CrossChainMultiSigSync(uint256 operationId, uint256 fromChainId, uint256 toChainId);\n\n constructor(\n DLEConfig memory config,\n uint256 _currentChainId\n ) ERC20(config.name, config.symbol) {\n dleInfo = DLEInfo({\n name: config.name,\n symbol: config.symbol,\n location: config.location,\n coordinates: config.coordinates,\n jurisdiction: config.jurisdiction,\n oktmo: config.oktmo,\n okvedCodes: config.okvedCodes,\n kpp: config.kpp,\n creationTimestamp: block.timestamp,\n isActive: true\n });\n \n quorumPercentage = config.quorumPercentage;\n currentChainId = _currentChainId;\n\n // Настраиваем поддерживаемые цепочки\n for (uint256 i = 0; i < config.supportedChainIds.length; i++) {\n supportedChains[config.supportedChainIds[i]] = true;\n }\n\n // Распределяем начальные токены партнерам\n require(config.initialPartners.length == config.initialAmounts.length, \"Arrays length mismatch\");\n require(config.initialPartners.length > 0, \"No initial partners\");\n \n for (uint256 i = 0; i < config.initialPartners.length; i++) {\n require(config.initialPartners[i] != address(0), \"Zero address\");\n require(config.initialAmounts[i] > 0, \"Zero amount\");\n _mint(config.initialPartners[i], config.initialAmounts[i]);\n }\n \n emit InitialTokensDistributed(config.initialPartners, config.initialAmounts);\n emit DLEInitialized(\n config.name,\n config.symbol,\n config.location,\n config.coordinates,\n config.jurisdiction,\n config.oktmo,\n config.okvedCodes,\n config.kpp,\n address(this),\n config.supportedChainIds\n );\n }\n\n /**\n * @dev Создать предложение с выбором цепочки для кворума\n * @param _description Описание предложения\n * @param _duration Длительность голосования в секундах\n * @param _operation Операция для исполнения\n * @param _governanceChainId ID цепочки для сбора голосов\n */\n function createProposal(\n string memory _description, \n uint256 _duration,\n bytes memory _operation,\n uint256 _governanceChainId\n ) external returns (uint256) {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create proposal\");\n require(_duration > 0, \"Duration must be positive\");\n require(supportedChains[_governanceChainId], \"Chain not supported\");\n require(checkChainConnection(_governanceChainId), \"Chain not available\");\n\n uint256 proposalId = proposalCounter++;\n Proposal storage proposal = proposals[proposalId];\n \n proposal.id = proposalId;\n proposal.description = _description;\n proposal.forVotes = 0;\n proposal.againstVotes = 0;\n proposal.executed = false;\n proposal.deadline = block.timestamp + _duration;\n proposal.initiator = msg.sender;\n proposal.operation = _operation;\n\n emit ProposalCreated(proposalId, msg.sender, _description);\n return proposalId;\n }\n\n /**\n * @dev Голосовать за предложение\n * @param _proposalId ID предложения\n * @param _support Поддержка предложения\n */\n function vote(uint256 _proposalId, bool _support) external nonReentrant {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(block.timestamp < proposal.deadline, \"Voting ended\");\n require(!proposal.executed, \"Proposal already executed\");\n require(!proposal.hasVoted[msg.sender], \"Already voted\");\n require(balanceOf(msg.sender) > 0, \"No tokens to vote\");\n\n uint256 votingPower = balanceOf(msg.sender);\n proposal.hasVoted[msg.sender] = true;\n\n if (_support) {\n proposal.forVotes += votingPower;\n } else {\n proposal.againstVotes += votingPower;\n }\n\n emit ProposalVoted(_proposalId, msg.sender, _support, votingPower);\n }\n\n /**\n * @dev Синхронизировать голос из другой цепочки\n * @param _proposalId ID предложения\n * @param _fromChainId ID цепочки откуда синхронизируем\n * @param _forVotes Голоса за\n * @param _againstVotes Голоса против\n */\n function syncVoteFromChain(\n uint256 _proposalId,\n uint256 _fromChainId,\n uint256 _forVotes,\n uint256 _againstVotes,\n bytes memory /* _proof */\n ) external {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!proposal.chainVoteSynced[_fromChainId], \"Already synced\");\n\n // Здесь должна быть проверка proof (для простоты пропускаем)\n // В реальной реализации нужно проверять доказательство\n\n proposal.forVotes += _forVotes;\n proposal.againstVotes += _againstVotes;\n proposal.chainVoteSynced[_fromChainId] = true;\n\n emit CrossChainVoteSync(_proposalId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить результат предложения\n * @param _proposalId ID предложения\n * @return passed Прошло ли предложение\n * @return quorumReached Достигнут ли кворум\n */\n function checkProposalResult(uint256 _proposalId) public view returns (bool passed, bool quorumReached) {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n\n uint256 totalVotes = proposal.forVotes + proposal.againstVotes;\n uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100;\n \n quorumReached = totalVotes >= quorumRequired;\n passed = quorumReached && proposal.forVotes > proposal.againstVotes;\n \n return (passed, quorumReached);\n }\n\n /**\n * @dev Исполнить предложение\n * @param _proposalId ID предложения\n */\n function executeProposal(uint256 _proposalId) external {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp >= proposal.deadline, \"Voting not ended\");\n\n (bool passed, bool quorumReached) = checkProposalResult(_proposalId);\n require(passed && quorumReached, \"Proposal not passed\");\n\n proposal.executed = true;\n \n // Исполняем операцию\n _executeOperation(proposal.operation);\n \n emit ProposalExecuted(_proposalId, proposal.operation);\n }\n\n /**\n * @dev Создать мультиподпись операцию\n * @param _operationHash Хеш операции\n * @param _duration Длительность сбора подписей\n */\n function createMultiSigOperation(\n bytes32 _operationHash,\n uint256 _duration\n ) external returns (uint256) {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to create operation\");\n require(_duration > 0, \"Duration must be positive\");\n\n uint256 operationId = multiSigCounter++;\n MultiSigOperation storage operation = multiSigOperations[operationId];\n \n operation.operationHash = _operationHash;\n operation.forSignatures = 0;\n operation.againstSignatures = 0;\n operation.executed = false;\n operation.deadline = block.timestamp + _duration;\n operation.initiator = msg.sender;\n\n emit MultiSigOperationCreated(operationId, msg.sender, _operationHash);\n return operationId;\n }\n\n /**\n * @dev Подписать мультиподпись операцию\n * @param _operationId ID операции\n * @param _support Поддержка операции\n */\n function signMultiSigOperation(uint256 _operationId, bool _support) external nonReentrant {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(block.timestamp < operation.deadline, \"Signing ended\");\n require(!operation.executed, \"Operation already executed\");\n require(!operation.hasSigned[msg.sender], \"Already signed\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n\n uint256 signaturePower = balanceOf(msg.sender);\n operation.hasSigned[msg.sender] = true;\n\n if (_support) {\n operation.forSignatures += signaturePower;\n } else {\n operation.againstSignatures += signaturePower;\n }\n\n emit MultiSigSigned(_operationId, msg.sender, _support, signaturePower);\n }\n\n /**\n * @dev Синхронизировать мультиподпись из другой цепочки\n * @param _operationId ID операции\n * @param _fromChainId ID цепочки откуда синхронизируем\n * @param _forSignatures Подписи за\n * @param _againstSignatures Подписи против\n */\n function syncMultiSigFromChain(\n uint256 _operationId,\n uint256 _fromChainId,\n uint256 _forSignatures,\n uint256 _againstSignatures,\n bytes memory /* _proof */\n ) external {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!operation.chainSignSynced[_fromChainId], \"Already synced\");\n\n // Здесь должна быть проверка proof\n // В реальной реализации нужно проверять доказательство\n\n operation.forSignatures += _forSignatures;\n operation.againstSignatures += _againstSignatures;\n operation.chainSignSynced[_fromChainId] = true;\n\n emit CrossChainMultiSigSync(_operationId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить результат мультиподписи\n * @param _operationId ID операции\n * @return passed Прошла ли операция\n * @return quorumReached Достигнут ли кворум\n */\n function checkMultiSigResult(uint256 _operationId) public view returns (bool passed, bool quorumReached) {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n\n uint256 totalSignatures = operation.forSignatures + operation.againstSignatures;\n uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100;\n \n quorumReached = totalSignatures >= quorumRequired;\n passed = quorumReached && operation.forSignatures > operation.againstSignatures;\n \n return (passed, quorumReached);\n }\n\n /**\n * @dev Исполнить мультиподпись операцию\n * @param _operationId ID операции\n */\n function executeMultiSigOperation(uint256 _operationId) external {\n MultiSigOperation storage operation = multiSigOperations[_operationId];\n require(operation.operationHash != bytes32(0), \"Operation does not exist\");\n require(!operation.executed, \"Operation already executed\");\n require(block.timestamp >= operation.deadline, \"Signing not ended\");\n\n (bool passed, bool quorumReached) = checkMultiSigResult(_operationId);\n require(passed && quorumReached, \"Operation not passed\");\n\n operation.executed = true;\n \n emit MultiSigExecuted(_operationId, operation.operationHash);\n }\n\n /**\n * @dev Синхронизировать исполнение из другой цепочки\n * @param _proposalId ID предложения\n * @param _fromChainId ID цепочки откуда синхронизируем\n */\n function syncExecutionFromChain(\n uint256 _proposalId,\n uint256 _fromChainId,\n bytes memory /* _proof */\n ) external {\n require(supportedChains[_fromChainId], \"Chain not supported\");\n require(!executedProposals[_proposalId], \"Already executed\");\n\n // Здесь должна быть проверка proof\n // В реальной реализации нужно проверять доказательство\n\n executedProposals[_proposalId] = true;\n \n // Получаем операцию из предложения\n Proposal storage proposal = proposals[_proposalId];\n if (proposal.id == _proposalId) {\n _executeOperation(proposal.operation);\n }\n\n emit CrossChainExecutionSync(_proposalId, _fromChainId, currentChainId);\n }\n\n /**\n * @dev Проверить подключение к цепочке\n * @param _chainId ID цепочки\n * @return isAvailable Доступна ли цепочка\n */\n function checkChainConnection(uint256 _chainId) public view returns (bool isAvailable) {\n // В реальной реализации здесь должна быть проверка подключения\n // Для примера возвращаем true для поддерживаемых цепочек\n return supportedChains[_chainId];\n }\n\n /**\n * @dev Проверить все подключения перед синхронизацией\n * @param _proposalId ID предложения\n * @return allChainsReady Готовы ли все цепочки\n */\n function checkSyncReadiness(uint256 _proposalId) public view returns (bool allChainsReady) {\n Proposal storage proposal = proposals[_proposalId];\n require(proposal.id == _proposalId, \"Proposal does not exist\");\n \n // Проверяем все поддерживаемые цепочки\n for (uint256 i = 0; i < getSupportedChainCount(); i++) {\n uint256 chainId = getSupportedChainId(i);\n if (!checkChainConnection(chainId)) {\n return false;\n }\n }\n \n return true;\n }\n\n /**\n * @dev Синхронизация только при 100% готовности\n * @param _proposalId ID предложения\n */\n function syncToAllChains(uint256 _proposalId) external {\n require(checkSyncReadiness(_proposalId), \"Not all chains ready\");\n \n // Выполняем синхронизацию во все цепочки\n for (uint256 i = 0; i < getSupportedChainCount(); i++) {\n uint256 chainId = getSupportedChainId(i);\n syncToChain(_proposalId, chainId);\n }\n \n emit SyncCompleted(_proposalId);\n }\n\n /**\n * @dev Синхронизация в конкретную цепочку\n * @param _proposalId ID предложения\n * @param _chainId ID цепочки\n */\n function syncToChain(uint256 _proposalId, uint256 _chainId) internal {\n // В реальной реализации здесь будет вызов cross-chain bridge\n // Для примера просто эмитим событие\n emit CrossChainExecutionSync(_proposalId, currentChainId, _chainId);\n }\n\n /**\n * @dev Получить количество поддерживаемых цепочек\n */\n function getSupportedChainCount() public pure returns (uint256) {\n // В реальной реализации нужно хранить массив поддерживаемых цепочек\n // Для примера возвращаем 4 (Ethereum, Polygon, BSC, Arbitrum)\n return 4;\n }\n\n /**\n * @dev Получить ID поддерживаемой цепочки по индексу\n * @param _index Индекс цепочки\n */\n function getSupportedChainId(uint256 _index) public pure returns (uint256) {\n if (_index == 0) return 1; // Ethereum\n if (_index == 1) return 137; // Polygon\n if (_index == 2) return 56; // BSC\n if (_index == 3) return 42161; // Arbitrum\n revert(\"Invalid chain index\");\n }\n\n /**\n * @dev Исполнить операцию\n * @param _operation Операция для исполнения\n */\n function _executeOperation(bytes memory _operation) internal {\n // Декодируем операцию\n (bytes4 selector, bytes memory data) = abi.decode(_operation, (bytes4, bytes));\n \n if (selector == bytes4(keccak256(\"transfer(address,uint256)\"))) {\n // Операция передачи токенов\n (address to, uint256 amount) = abi.decode(data, (address, uint256));\n _transfer(msg.sender, to, amount);\n } else if (selector == bytes4(keccak256(\"mint(address,uint256)\"))) {\n // Операция минтинга токенов\n (address to, uint256 amount) = abi.decode(data, (address, uint256));\n _mint(to, amount);\n } else if (selector == bytes4(keccak256(\"burn(address,uint256)\"))) {\n // Операция сжигания токенов\n (address from, uint256 amount) = abi.decode(data, (address, uint256));\n _burn(from, amount);\n } else {\n // Неизвестная операция\n revert(\"Unknown operation\");\n }\n }\n\n /**\n * @dev Добавить модуль\n * @param _moduleId ID модуля\n * @param _moduleAddress Адрес модуля\n */\n function addModule(bytes32 _moduleId, address _moduleAddress) external {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to add module\");\n require(_moduleAddress != address(0), \"Zero address\");\n require(!activeModules[_moduleId], \"Module already exists\");\n\n modules[_moduleId] = _moduleAddress;\n activeModules[_moduleId] = true;\n\n emit ModuleAdded(_moduleId, _moduleAddress);\n }\n\n /**\n * @dev Удалить модуль\n * @param _moduleId ID модуля\n */\n function removeModule(bytes32 _moduleId) external {\n require(balanceOf(msg.sender) > 0, \"Must hold tokens to remove module\");\n require(activeModules[_moduleId], \"Module does not exist\");\n\n delete modules[_moduleId];\n activeModules[_moduleId] = false;\n\n emit ModuleRemoved(_moduleId);\n }\n\n /**\n * @dev Получить информацию о DLE\n */\n function getDLEInfo() external view returns (DLEInfo memory) {\n return dleInfo;\n }\n\n /**\n * @dev Проверить, активен ли модуль\n * @param _moduleId ID модуля\n */\n function isModuleActive(bytes32 _moduleId) external view returns (bool) {\n return activeModules[_moduleId];\n }\n\n /**\n * @dev Получить адрес модуля\n * @param _moduleId ID модуля\n */\n function getModuleAddress(bytes32 _moduleId) external view returns (address) {\n return modules[_moduleId];\n }\n\n /**\n * @dev Проверить, поддерживается ли цепочка\n * @param _chainId ID цепочки\n */\n function isChainSupported(uint256 _chainId) external view returns (bool) {\n return supportedChains[_chainId];\n }\n\n /**\n * @dev Получить текущий ID цепочки\n */\n function getCurrentChainId() external view returns (uint256) {\n return currentChainId;\n }\n\n // События для новых функций\n event SyncCompleted(uint256 proposalId);\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/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[136],"IERC20Errors":[41],"IERC721Errors":[89]},"id":137,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"138:141:0","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":41,"linearizedBaseContracts":[41],"name":"IERC20Errors","nameLocation":"290:12:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"309:309:0","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":11,"name":"ERC20InsufficientBalance","nameLocation":"629:24:0","nodeType":"ErrorDefinition","parameters":{"id":10,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"mutability":"mutable","name":"sender","nameLocation":"662:6:0","nodeType":"VariableDeclaration","scope":11,"src":"654:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7,"mutability":"mutable","name":"balance","nameLocation":"678:7:0","nodeType":"VariableDeclaration","scope":11,"src":"670:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9,"mutability":"mutable","name":"needed","nameLocation":"695:6:0","nodeType":"VariableDeclaration","scope":11,"src":"687:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:0"},"src":"623:80:0"},{"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"709:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":16,"name":"ERC20InvalidSender","nameLocation":"872:18:0","nodeType":"ErrorDefinition","parameters":{"id":15,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14,"mutability":"mutable","name":"sender","nameLocation":"899:6:0","nodeType":"VariableDeclaration","scope":16,"src":"891:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:0"},"src":"866:41:0"},{"documentation":{"id":17,"nodeType":"StructuredDocumentation","src":"913:159:0","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":21,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:0","nodeType":"ErrorDefinition","parameters":{"id":20,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:0","nodeType":"VariableDeclaration","scope":21,"src":"1104:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:0"},"src":"1077:45:0"},{"documentation":{"id":22,"nodeType":"StructuredDocumentation","src":"1128:345:0","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":30,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:0","nodeType":"ErrorDefinition","parameters":{"id":29,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24,"mutability":"mutable","name":"spender","nameLocation":"1519:7:0","nodeType":"VariableDeclaration","scope":30,"src":"1511:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:0","nodeType":"VariableDeclaration","scope":30,"src":"1528:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28,"mutability":"mutable","name":"needed","nameLocation":"1555:6:0","nodeType":"VariableDeclaration","scope":30,"src":"1547:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:0"},"src":"1478:85:0"},{"documentation":{"id":31,"nodeType":"StructuredDocumentation","src":"1569:174:0","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":35,"name":"ERC20InvalidApprover","nameLocation":"1754:20:0","nodeType":"ErrorDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33,"mutability":"mutable","name":"approver","nameLocation":"1783:8:0","nodeType":"VariableDeclaration","scope":35,"src":"1775:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:0"},"src":"1748:45:0"},{"documentation":{"id":36,"nodeType":"StructuredDocumentation","src":"1799:195:0","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":40,"name":"ERC20InvalidSpender","nameLocation":"2005:19:0","nodeType":"ErrorDefinition","parameters":{"id":39,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38,"mutability":"mutable","name":"spender","nameLocation":"2033:7:0","nodeType":"VariableDeclaration","scope":40,"src":"2025:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:0"},"src":"1999:43:0"}],"scope":137,"src":"280:1764:0","usedErrors":[11,16,21,30,35,40],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"2046:143:0","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":89,"linearizedBaseContracts":[89],"name":"IERC721Errors","nameLocation":"2200:13:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":43,"nodeType":"StructuredDocumentation","src":"2220:219:0","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":47,"name":"ERC721InvalidOwner","nameLocation":"2450:18:0","nodeType":"ErrorDefinition","parameters":{"id":46,"nodeType":"ParameterList","parameters":[{"constant":false,"id":45,"mutability":"mutable","name":"owner","nameLocation":"2477:5:0","nodeType":"VariableDeclaration","scope":47,"src":"2469:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":44,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:0"},"src":"2444:40:0"},{"documentation":{"id":48,"nodeType":"StructuredDocumentation","src":"2490:132:0","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":52,"name":"ERC721NonexistentToken","nameLocation":"2633:22:0","nodeType":"ErrorDefinition","parameters":{"id":51,"nodeType":"ParameterList","parameters":[{"constant":false,"id":50,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:0","nodeType":"VariableDeclaration","scope":52,"src":"2656:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":49,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:0"},"src":"2627:46:0"},{"documentation":{"id":53,"nodeType":"StructuredDocumentation","src":"2679:289:0","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":61,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:0","nodeType":"ErrorDefinition","parameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":55,"mutability":"mutable","name":"sender","nameLocation":"3008:6:0","nodeType":"VariableDeclaration","scope":61,"src":"3000:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":54,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":57,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:0","nodeType":"VariableDeclaration","scope":61,"src":"3016:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":56,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":59,"mutability":"mutable","name":"owner","nameLocation":"3041:5:0","nodeType":"VariableDeclaration","scope":61,"src":"3033:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":58,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:0"},"src":"2973:75:0"},{"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"3054:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":66,"name":"ERC721InvalidSender","nameLocation":"3217:19:0","nodeType":"ErrorDefinition","parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"sender","nameLocation":"3245:6:0","nodeType":"VariableDeclaration","scope":66,"src":"3237:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:0"},"src":"3211:42:0"},{"documentation":{"id":67,"nodeType":"StructuredDocumentation","src":"3259:159:0","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":71,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:0","nodeType":"ErrorDefinition","parameters":{"id":70,"nodeType":"ParameterList","parameters":[{"constant":false,"id":69,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:0","nodeType":"VariableDeclaration","scope":71,"src":"3451:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":68,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:0"},"src":"3423:46:0"},{"documentation":{"id":72,"nodeType":"StructuredDocumentation","src":"3475:247:0","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":78,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:0","nodeType":"ErrorDefinition","parameters":{"id":77,"nodeType":"ParameterList","parameters":[{"constant":false,"id":74,"mutability":"mutable","name":"operator","nameLocation":"3768:8:0","nodeType":"VariableDeclaration","scope":78,"src":"3760:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":73,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":76,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:0","nodeType":"VariableDeclaration","scope":78,"src":"3778:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":75,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:0"},"src":"3727:68:0"},{"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"3801:174:0","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":83,"name":"ERC721InvalidApprover","nameLocation":"3986:21:0","nodeType":"ErrorDefinition","parameters":{"id":82,"nodeType":"ParameterList","parameters":[{"constant":false,"id":81,"mutability":"mutable","name":"approver","nameLocation":"4016:8:0","nodeType":"VariableDeclaration","scope":83,"src":"4008:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":80,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:0"},"src":"3980:46:0"},{"documentation":{"id":84,"nodeType":"StructuredDocumentation","src":"4032:197:0","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":88,"name":"ERC721InvalidOperator","nameLocation":"4240:21:0","nodeType":"ErrorDefinition","parameters":{"id":87,"nodeType":"ParameterList","parameters":[{"constant":false,"id":86,"mutability":"mutable","name":"operator","nameLocation":"4270:8:0","nodeType":"VariableDeclaration","scope":88,"src":"4262:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":85,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:0"},"src":"4234:46:0"}],"scope":137,"src":"2190:2092:0","usedErrors":[47,52,61,66,71,78,83,88],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":90,"nodeType":"StructuredDocumentation","src":"4284:145:0","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":136,"linearizedBaseContracts":[136],"name":"IERC1155Errors","nameLocation":"4440:14:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":91,"nodeType":"StructuredDocumentation","src":"4461:361:0","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":101,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:0","nodeType":"ErrorDefinition","parameters":{"id":100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":93,"mutability":"mutable","name":"sender","nameLocation":"4868:6:0","nodeType":"VariableDeclaration","scope":101,"src":"4860:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":92,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":95,"mutability":"mutable","name":"balance","nameLocation":"4884:7:0","nodeType":"VariableDeclaration","scope":101,"src":"4876:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":94,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":97,"mutability":"mutable","name":"needed","nameLocation":"4901:6:0","nodeType":"VariableDeclaration","scope":101,"src":"4893:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":96,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":99,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:0","nodeType":"VariableDeclaration","scope":101,"src":"4909:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":98,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:0"},"src":"4827:99:0"},{"documentation":{"id":102,"nodeType":"StructuredDocumentation","src":"4932:152:0","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":106,"name":"ERC1155InvalidSender","nameLocation":"5095:20:0","nodeType":"ErrorDefinition","parameters":{"id":105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":104,"mutability":"mutable","name":"sender","nameLocation":"5124:6:0","nodeType":"VariableDeclaration","scope":106,"src":"5116:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":103,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:0"},"src":"5089:43:0"},{"documentation":{"id":107,"nodeType":"StructuredDocumentation","src":"5138:159:0","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":111,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:0","nodeType":"ErrorDefinition","parameters":{"id":110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":109,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:0","nodeType":"VariableDeclaration","scope":111,"src":"5331:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":108,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:0"},"src":"5302:47:0"},{"documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"5355:256:0","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":118,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:0","nodeType":"ErrorDefinition","parameters":{"id":117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":114,"mutability":"mutable","name":"operator","nameLocation":"5659:8:0","nodeType":"VariableDeclaration","scope":118,"src":"5651:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":113,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":116,"mutability":"mutable","name":"owner","nameLocation":"5677:5:0","nodeType":"VariableDeclaration","scope":118,"src":"5669:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":115,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:0"},"src":"5616:68:0"},{"documentation":{"id":119,"nodeType":"StructuredDocumentation","src":"5690:174:0","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":123,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:0","nodeType":"ErrorDefinition","parameters":{"id":122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":121,"mutability":"mutable","name":"approver","nameLocation":"5906:8:0","nodeType":"VariableDeclaration","scope":123,"src":"5898:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":120,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:0"},"src":"5869:47:0"},{"documentation":{"id":124,"nodeType":"StructuredDocumentation","src":"5922:197:0","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":128,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:0","nodeType":"ErrorDefinition","parameters":{"id":127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":126,"mutability":"mutable","name":"operator","nameLocation":"6161:8:0","nodeType":"VariableDeclaration","scope":128,"src":"6153:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":125,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:0"},"src":"6124:47:0"},{"documentation":{"id":129,"nodeType":"StructuredDocumentation","src":"6177:280:0","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":135,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:0","nodeType":"ErrorDefinition","parameters":{"id":134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":131,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:0","nodeType":"VariableDeclaration","scope":135,"src":"6494:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":130,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":133,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:0","nodeType":"VariableDeclaration","scope":135,"src":"6513:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":132,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:0"},"src":"6462:73:0"}],"scope":137,"src":"4430:2107:0","usedErrors":[101,106,111,118,123,128,135],"usedEvents":[]}],"src":"112:6426:0"},"id":0},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[785],"ERC20":[651],"IERC20":[729],"IERC20Errors":[41],"IERC20Metadata":[755]},"id":652,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":138,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:1"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":730,"src":"131:36:1","symbolAliases":[{"foreign":{"id":139,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"139:6:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":142,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":756,"src":"168:63:1","symbolAliases":[{"foreign":{"id":141,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"176:14:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":144,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":786,"src":"232:48:1","symbolAliases":[{"foreign":{"id":143,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"240:7:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":146,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":652,"sourceUnit":137,"src":"281:65:1","symbolAliases":[{"foreign":{"id":145,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"289:12:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":148,"name":"Context","nameLocations":["1133:7:1"],"nodeType":"IdentifierPath","referencedDeclaration":785,"src":"1133:7:1"},"id":149,"nodeType":"InheritanceSpecifier","src":"1133:7:1"},{"baseName":{"id":150,"name":"IERC20","nameLocations":["1142:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":729,"src":"1142:6:1"},"id":151,"nodeType":"InheritanceSpecifier","src":"1142:6:1"},{"baseName":{"id":152,"name":"IERC20Metadata","nameLocations":["1150:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":755,"src":"1150:14:1"},"id":153,"nodeType":"InheritanceSpecifier","src":"1150:14:1"},{"baseName":{"id":154,"name":"IERC20Errors","nameLocations":["1166:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":41,"src":"1166:12:1"},"id":155,"nodeType":"InheritanceSpecifier","src":"1166:12:1"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":147,"nodeType":"StructuredDocumentation","src":"348:757:1","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":651,"linearizedBaseContracts":[651,41,755,729,785],"name":"ERC20","nameLocation":"1124:5:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":159,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:1","nodeType":"VariableDeclaration","scope":651,"src":"1185:53:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":158,"keyName":"account","keyNameLocation":"1201:7:1","keyType":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":157,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":165,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:1","nodeType":"VariableDeclaration","scope":651,"src":"1245:83:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":164,"keyName":"account","keyNameLocation":"1261:7:1","keyType":{"id":160,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:1","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":163,"keyName":"spender","keyNameLocation":"1288:7:1","keyType":{"id":161,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":162,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":167,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:1","nodeType":"VariableDeclaration","scope":651,"src":"1335:28:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":166,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":169,"mutability":"mutable","name":"_name","nameLocation":"1385:5:1","nodeType":"VariableDeclaration","scope":651,"src":"1370:20:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":168,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":171,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:1","nodeType":"VariableDeclaration","scope":651,"src":"1396:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":170,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":187,"nodeType":"Block","src":"1657:57:1","statements":[{"expression":{"id":181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":179,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"1667:5:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":180,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1675:5:1","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":182,"nodeType":"ExpressionStatement","src":"1667:13:1"},{"expression":{"id":185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":183,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"1690:7:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":184,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1700:7:1","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":186,"nodeType":"ExpressionStatement","src":"1690:17:1"}]},"documentation":{"id":172,"nodeType":"StructuredDocumentation","src":"1425:171:1","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":188,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":174,"mutability":"mutable","name":"name_","nameLocation":"1627:5:1","nodeType":"VariableDeclaration","scope":188,"src":"1613:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":173,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":176,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:1","nodeType":"VariableDeclaration","scope":188,"src":"1634:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":175,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:1"},"returnParameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"1657:0:1"},"scope":651,"src":"1601:113:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[742],"body":{"id":196,"nodeType":"Block","src":"1839:29:1","statements":[{"expression":{"id":194,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"1856:5:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":193,"id":195,"nodeType":"Return","src":"1849:12:1"}]},"documentation":{"id":189,"nodeType":"StructuredDocumentation","src":"1720:54:1","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":197,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:1","nodeType":"FunctionDefinition","parameters":{"id":190,"nodeType":"ParameterList","parameters":[],"src":"1792:2:1"},"returnParameters":{"id":193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":197,"src":"1824:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":191,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:1"},"scope":651,"src":"1779:89:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[748],"body":{"id":205,"nodeType":"Block","src":"2043:31:1","statements":[{"expression":{"id":203,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"2060:7:1","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":202,"id":204,"nodeType":"Return","src":"2053:14:1"}]},"documentation":{"id":198,"nodeType":"StructuredDocumentation","src":"1874:102:1","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":206,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:1","nodeType":"FunctionDefinition","parameters":{"id":199,"nodeType":"ParameterList","parameters":[],"src":"1996:2:1"},"returnParameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":206,"src":"2028:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":200,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:1"},"scope":651,"src":"1981:93:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[754],"body":{"id":214,"nodeType":"Block","src":"2763:26:1","statements":[{"expression":{"hexValue":"3138","id":212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:1","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":211,"id":213,"nodeType":"Return","src":"2773:9:1"}]},"documentation":{"id":207,"nodeType":"StructuredDocumentation","src":"2080:622:1","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":215,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:1","nodeType":"FunctionDefinition","parameters":{"id":208,"nodeType":"ParameterList","parameters":[],"src":"2724:2:1"},"returnParameters":{"id":211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":215,"src":"2756:5:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":209,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:1"},"scope":651,"src":"2707:82:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[678],"body":{"id":223,"nodeType":"Block","src":"2910:36:1","statements":[{"expression":{"id":221,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"2927:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":220,"id":222,"nodeType":"Return","src":"2920:19:1"}]},"documentation":{"id":216,"nodeType":"StructuredDocumentation","src":"2795:49:1","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":224,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[],"src":"2869:2:1"},"returnParameters":{"id":220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":224,"src":"2901:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":218,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:1"},"scope":651,"src":"2849:97:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[686],"body":{"id":236,"nodeType":"Block","src":"3078:42:1","statements":[{"expression":{"baseExpression":{"id":232,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"3095:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":234,"indexExpression":{"id":233,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":227,"src":"3105:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":231,"id":235,"nodeType":"Return","src":"3088:25:1"}]},"documentation":{"id":225,"nodeType":"StructuredDocumentation","src":"2952:47:1","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":237,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:1","nodeType":"FunctionDefinition","parameters":{"id":228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":227,"mutability":"mutable","name":"account","nameLocation":"3031:7:1","nodeType":"VariableDeclaration","scope":237,"src":"3023:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":226,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:1"},"returnParameters":{"id":231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":237,"src":"3069:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":229,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:1"},"scope":651,"src":"3004:116:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[696],"body":{"id":260,"nodeType":"Block","src":"3390:103:1","statements":[{"assignments":[248],"declarations":[{"constant":false,"id":248,"mutability":"mutable","name":"owner","nameLocation":"3408:5:1","nodeType":"VariableDeclaration","scope":260,"src":"3400:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":247,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":251,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":249,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"3416:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:1"},{"expression":{"arguments":[{"id":253,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":248,"src":"3448:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":254,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"3455:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":242,"src":"3459:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":252,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"3438:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":257,"nodeType":"ExpressionStatement","src":"3438:27:1"},{"expression":{"hexValue":"74727565","id":258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":246,"id":259,"nodeType":"Return","src":"3475:11:1"}]},"documentation":{"id":238,"nodeType":"StructuredDocumentation","src":"3126:184:1","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":261,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:1","nodeType":"FunctionDefinition","parameters":{"id":243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":240,"mutability":"mutable","name":"to","nameLocation":"3341:2:1","nodeType":"VariableDeclaration","scope":261,"src":"3333:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":239,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":242,"mutability":"mutable","name":"value","nameLocation":"3353:5:1","nodeType":"VariableDeclaration","scope":261,"src":"3345:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":241,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:1"},"returnParameters":{"id":246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":261,"src":"3384:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":244,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:1"},"scope":651,"src":"3315:178:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[706],"body":{"id":277,"nodeType":"Block","src":"3640:51:1","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":271,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":165,"src":"3657:11:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":273,"indexExpression":{"id":272,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":264,"src":"3669:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":275,"indexExpression":{"id":274,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"3676:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":270,"id":276,"nodeType":"Return","src":"3650:34:1"}]},"documentation":{"id":262,"nodeType":"StructuredDocumentation","src":"3499:47:1","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":278,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:1","nodeType":"FunctionDefinition","parameters":{"id":267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"owner","nameLocation":"3578:5:1","nodeType":"VariableDeclaration","scope":278,"src":"3570:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":263,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":266,"mutability":"mutable","name":"spender","nameLocation":"3593:7:1","nodeType":"VariableDeclaration","scope":278,"src":"3585:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":265,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:1"},"returnParameters":{"id":270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":278,"src":"3631:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:1"},"scope":651,"src":"3551:140:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[716],"body":{"id":301,"nodeType":"Block","src":"4077:107:1","statements":[{"assignments":[289],"declarations":[{"constant":false,"id":289,"mutability":"mutable","name":"owner","nameLocation":"4095:5:1","nodeType":"VariableDeclaration","scope":301,"src":"4087:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":288,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":292,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":290,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"4103:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:1"},{"expression":{"arguments":[{"id":294,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":289,"src":"4134:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":295,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":281,"src":"4141:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":296,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":283,"src":"4150:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":293,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":542,"src":"4125:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":298,"nodeType":"ExpressionStatement","src":"4125:31:1"},{"expression":{"hexValue":"74727565","id":299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":287,"id":300,"nodeType":"Return","src":"4166:11:1"}]},"documentation":{"id":279,"nodeType":"StructuredDocumentation","src":"3697:296:1","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":302,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:1","nodeType":"FunctionDefinition","parameters":{"id":284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":281,"mutability":"mutable","name":"spender","nameLocation":"4023:7:1","nodeType":"VariableDeclaration","scope":302,"src":"4015:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":280,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":283,"mutability":"mutable","name":"value","nameLocation":"4040:5:1","nodeType":"VariableDeclaration","scope":302,"src":"4032:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":282,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:1"},"returnParameters":{"id":287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":286,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":302,"src":"4071:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":285,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:1"},"scope":651,"src":"3998:186:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[728],"body":{"id":333,"nodeType":"Block","src":"4869:151:1","statements":[{"assignments":[315],"declarations":[{"constant":false,"id":315,"mutability":"mutable","name":"spender","nameLocation":"4887:7:1","nodeType":"VariableDeclaration","scope":333,"src":"4879:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":314,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":318,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":316,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"4897:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:1"},{"expression":{"arguments":[{"id":320,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4935:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":321,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":315,"src":"4941:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":309,"src":"4950:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":319,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":650,"src":"4919:15:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4919:37:1"},{"expression":{"arguments":[{"id":326,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4976:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":327,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":307,"src":"4982:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":309,"src":"4986:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":325,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"4966:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":330,"nodeType":"ExpressionStatement","src":"4966:26:1"},{"expression":{"hexValue":"74727565","id":331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":313,"id":332,"nodeType":"Return","src":"5002:11:1"}]},"documentation":{"id":303,"nodeType":"StructuredDocumentation","src":"4190:581:1","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":334,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:1","nodeType":"FunctionDefinition","parameters":{"id":310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":305,"mutability":"mutable","name":"from","nameLocation":"4806:4:1","nodeType":"VariableDeclaration","scope":334,"src":"4798:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":304,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":307,"mutability":"mutable","name":"to","nameLocation":"4820:2:1","nodeType":"VariableDeclaration","scope":334,"src":"4812:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":306,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":309,"mutability":"mutable","name":"value","nameLocation":"4832:5:1","nodeType":"VariableDeclaration","scope":334,"src":"4824:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":308,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:1"},"returnParameters":{"id":313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":334,"src":"4863:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":311,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:1"},"scope":651,"src":"4776:244:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":380,"nodeType":"Block","src":"5462:231:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":344,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"5476:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:1","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":346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":345,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:1","typeDescriptions":{}}},"id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":358,"nodeType":"IfStatement","src":"5472:86:1","trueBody":{"id":357,"nodeType":"Block","src":"5496:62:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:1","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":352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":351,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:1","typeDescriptions":{}}},"id":354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":350,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"5517:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":356,"nodeType":"RevertStatement","src":"5510:37:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":359,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"5571:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:1","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":361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":360,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:1","typeDescriptions":{}}},"id":363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":373,"nodeType":"IfStatement","src":"5567:86:1","trueBody":{"id":372,"nodeType":"Block","src":"5589:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:1","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":367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":366,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:1","typeDescriptions":{}}},"id":369,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":365,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"5610:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":371,"nodeType":"RevertStatement","src":"5603:39:1"}]}},{"expression":{"arguments":[{"id":375,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"5670:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":376,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"5676:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":377,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":341,"src":"5680:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":374,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"5662:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":379,"nodeType":"ExpressionStatement","src":"5662:24:1"}]},"documentation":{"id":335,"nodeType":"StructuredDocumentation","src":"5026:362:1","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":381,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:1","nodeType":"FunctionDefinition","parameters":{"id":342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":337,"mutability":"mutable","name":"from","nameLocation":"5420:4:1","nodeType":"VariableDeclaration","scope":381,"src":"5412:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":336,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":339,"mutability":"mutable","name":"to","nameLocation":"5434:2:1","nodeType":"VariableDeclaration","scope":381,"src":"5426:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":338,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":341,"mutability":"mutable","name":"value","nameLocation":"5446:5:1","nodeType":"VariableDeclaration","scope":381,"src":"5438:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":340,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:1"},"returnParameters":{"id":343,"nodeType":"ParameterList","parameters":[],"src":"5462:0:1"},"scope":651,"src":"5393:300:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"6083:1032:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":391,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6097:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:1","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":393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":392,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:1","typeDescriptions":{}}},"id":395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":428,"nodeType":"Block","src":"6271:362:1","statements":[{"assignments":[403],"declarations":[{"constant":false,"id":403,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:1","nodeType":"VariableDeclaration","scope":428,"src":"6285:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":402,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":407,"initialValue":{"baseExpression":{"id":404,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"6307:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":406,"indexExpression":{"id":405,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6317:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":408,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6340:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":409,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6354:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":418,"nodeType":"IfStatement","src":"6336:115:1","trueBody":{"id":417,"nodeType":"Block","src":"6361:90:1","statements":[{"errorCall":{"arguments":[{"id":412,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6411:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":413,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6417:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6430:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":411,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"6386:24:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":416,"nodeType":"RevertStatement","src":"6379:57:1"}]}},{"id":427,"nodeType":"UncheckedBlock","src":"6464:159:1","statements":[{"expression":{"id":425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":419,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"6571:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":421,"indexExpression":{"id":420,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"6581:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":422,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"6589:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6603:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":426,"nodeType":"ExpressionStatement","src":"6571:37:1"}]}]},"id":429,"nodeType":"IfStatement","src":"6093:540:1","trueBody":{"id":401,"nodeType":"Block","src":"6117:148:1","statements":[{"expression":{"id":399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":397,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"6233:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":398,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6249:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":400,"nodeType":"ExpressionStatement","src":"6233:21:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":430,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"6647:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:1","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":432,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":431,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:1","typeDescriptions":{}}},"id":434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":449,"nodeType":"Block","src":"6862:206:1","statements":[{"id":448,"nodeType":"UncheckedBlock","src":"6876:182:1","statements":[{"expression":{"id":446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":442,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"7021:9:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":444,"indexExpression":{"id":443,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"7031:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":445,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"7038:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":447,"nodeType":"ExpressionStatement","src":"7021:22:1"}]}]},"id":450,"nodeType":"IfStatement","src":"6643:425:1","trueBody":{"id":441,"nodeType":"Block","src":"6665:191:1","statements":[{"id":440,"nodeType":"UncheckedBlock","src":"6679:167:1","statements":[{"expression":{"id":438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":436,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":167,"src":"6810:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"6826:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":439,"nodeType":"ExpressionStatement","src":"6810:21:1"}]}]}},{"eventCall":{"arguments":[{"id":452,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":384,"src":"7092:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":453,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":386,"src":"7098:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"7102:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"7083:8:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":456,"nodeType":"EmitStatement","src":"7078:30:1"}]},"documentation":{"id":382,"nodeType":"StructuredDocumentation","src":"5699:304:1","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":458,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:1","nodeType":"FunctionDefinition","parameters":{"id":389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":384,"mutability":"mutable","name":"from","nameLocation":"6033:4:1","nodeType":"VariableDeclaration","scope":458,"src":"6025:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":383,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":386,"mutability":"mutable","name":"to","nameLocation":"6047:2:1","nodeType":"VariableDeclaration","scope":458,"src":"6039:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":385,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":388,"mutability":"mutable","name":"value","nameLocation":"6059:5:1","nodeType":"VariableDeclaration","scope":458,"src":"6051:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":387,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:1"},"returnParameters":{"id":390,"nodeType":"ParameterList","parameters":[],"src":"6083:0:1"},"scope":651,"src":"6008:1107:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":490,"nodeType":"Block","src":"7514:152:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":466,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"7528:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:1","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":468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":467,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:1","typeDescriptions":{}}},"id":470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":480,"nodeType":"IfStatement","src":"7524:91:1","trueBody":{"id":479,"nodeType":"Block","src":"7551:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:1","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":474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":473,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:1","typeDescriptions":{}}},"id":476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":472,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"7572:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":478,"nodeType":"RevertStatement","src":"7565:39:1"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:1","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":483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":482,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:1","typeDescriptions":{}}},"id":485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":486,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"7644:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":487,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":463,"src":"7653:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":481,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"7624:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":489,"nodeType":"ExpressionStatement","src":"7624:35:1"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"7121:332:1","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":491,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:1","nodeType":"FunctionDefinition","parameters":{"id":464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"account","nameLocation":"7481:7:1","nodeType":"VariableDeclaration","scope":491,"src":"7473:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":460,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":463,"mutability":"mutable","name":"value","nameLocation":"7498:5:1","nodeType":"VariableDeclaration","scope":491,"src":"7490:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":462,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:1"},"returnParameters":{"id":465,"nodeType":"ParameterList","parameters":[],"src":"7514:0:1"},"scope":651,"src":"7458:208:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":523,"nodeType":"Block","src":"8040:150:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":499,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":494,"src":"8054:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:1","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":501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":500,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:1","typeDescriptions":{}}},"id":503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":513,"nodeType":"IfStatement","src":"8050:89:1","trueBody":{"id":512,"nodeType":"Block","src":"8077:62:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:1","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":507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":506,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:1","typeDescriptions":{}}},"id":509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":505,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"8098:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":511,"nodeType":"RevertStatement","src":"8091:37:1"}]}},{"expression":{"arguments":[{"id":515,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":494,"src":"8156:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:1","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":517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":516,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:1","typeDescriptions":{}}},"id":519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":496,"src":"8177:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":514,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":458,"src":"8148:7:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":522,"nodeType":"ExpressionStatement","src":"8148:35:1"}]},"documentation":{"id":492,"nodeType":"StructuredDocumentation","src":"7672:307:1","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":524,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:1","nodeType":"FunctionDefinition","parameters":{"id":497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":494,"mutability":"mutable","name":"account","nameLocation":"8007:7:1","nodeType":"VariableDeclaration","scope":524,"src":"7999:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":493,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":496,"mutability":"mutable","name":"value","nameLocation":"8024:5:1","nodeType":"VariableDeclaration","scope":524,"src":"8016:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":495,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:1"},"returnParameters":{"id":498,"nodeType":"ParameterList","parameters":[],"src":"8040:0:1"},"scope":651,"src":"7984:206:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":541,"nodeType":"Block","src":"8800:54:1","statements":[{"expression":{"arguments":[{"id":535,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"8819:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":536,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":529,"src":"8826:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"8835:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:1","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":534,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":602,"src":"8810:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":540,"nodeType":"ExpressionStatement","src":"8810:37:1"}]},"documentation":{"id":525,"nodeType":"StructuredDocumentation","src":"8196:525:1","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":542,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:1","nodeType":"FunctionDefinition","parameters":{"id":532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":527,"mutability":"mutable","name":"owner","nameLocation":"8752:5:1","nodeType":"VariableDeclaration","scope":542,"src":"8744:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":526,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":529,"mutability":"mutable","name":"spender","nameLocation":"8767:7:1","nodeType":"VariableDeclaration","scope":542,"src":"8759:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":528,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":531,"mutability":"mutable","name":"value","nameLocation":"8784:5:1","nodeType":"VariableDeclaration","scope":542,"src":"8776:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":530,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:1"},"returnParameters":{"id":533,"nodeType":"ParameterList","parameters":[],"src":"8800:0:1"},"scope":651,"src":"8726:128:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":601,"nodeType":"Block","src":"9799:334:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":554,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"9813:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:1","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":556,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":555,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:1","typeDescriptions":{}}},"id":558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":568,"nodeType":"IfStatement","src":"9809:89:1","trueBody":{"id":567,"nodeType":"Block","src":"9834:64:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:1","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":562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":561,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:1","typeDescriptions":{}}},"id":564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":560,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"9855:20:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":566,"nodeType":"RevertStatement","src":"9848:39:1"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":569,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"9911:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:1","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":571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":570,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:1","typeDescriptions":{}}},"id":573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":583,"nodeType":"IfStatement","src":"9907:90:1","trueBody":{"id":582,"nodeType":"Block","src":"9934:63:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:1","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":577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":576,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:1","typeDescriptions":{}}},"id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":575,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"9955:19:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":581,"nodeType":"RevertStatement","src":"9948:38:1"}]}},{"expression":{"id":590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":584,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":165,"src":"10006:11:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":587,"indexExpression":{"id":585,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"10018:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":588,"indexExpression":{"id":586,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"10025:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":549,"src":"10036:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":591,"nodeType":"ExpressionStatement","src":"10006:35:1"},{"condition":{"id":592,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":551,"src":"10055:9:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":600,"nodeType":"IfStatement","src":"10051:76:1","trueBody":{"id":599,"nodeType":"Block","src":"10066:61:1","statements":[{"eventCall":{"arguments":[{"id":594,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"10094:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":595,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":547,"src":"10101:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":596,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":549,"src":"10110:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":593,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"10085:8:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":598,"nodeType":"EmitStatement","src":"10080:36:1"}]}}]},"documentation":{"id":543,"nodeType":"StructuredDocumentation","src":"8860:836:1","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":602,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:1","nodeType":"FunctionDefinition","parameters":{"id":552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"owner","nameLocation":"9727:5:1","nodeType":"VariableDeclaration","scope":602,"src":"9719:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":544,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":547,"mutability":"mutable","name":"spender","nameLocation":"9742:7:1","nodeType":"VariableDeclaration","scope":602,"src":"9734:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":546,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":549,"mutability":"mutable","name":"value","nameLocation":"9759:5:1","nodeType":"VariableDeclaration","scope":602,"src":"9751:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":548,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":551,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:1","nodeType":"VariableDeclaration","scope":602,"src":"9766:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":550,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:1"},"returnParameters":{"id":553,"nodeType":"ParameterList","parameters":[],"src":"9799:0:1"},"scope":651,"src":"9701:432:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":649,"nodeType":"Block","src":"10504:387:1","statements":[{"assignments":[613],"declarations":[{"constant":false,"id":613,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:1","nodeType":"VariableDeclaration","scope":649,"src":"10514:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":612,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":618,"initialValue":{"arguments":[{"id":615,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":605,"src":"10551:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":616,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10558:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":614,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":278,"src":"10541:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":619,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10580:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":621,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:1","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":620,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:1","memberName":"max","nodeType":"MemberAccess","src":"10599:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":648,"nodeType":"IfStatement","src":"10576:309:1","trueBody":{"id":647,"nodeType":"Block","src":"10618:267:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":626,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10636:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":627,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10655:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":636,"nodeType":"IfStatement","src":"10632:130:1","trueBody":{"id":635,"nodeType":"Block","src":"10662:100:1","statements":[{"errorCall":{"arguments":[{"id":630,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10714:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":631,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10723:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10741:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":629,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30,"src":"10687:26:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":634,"nodeType":"RevertStatement","src":"10680:67:1"}]}},{"id":646,"nodeType":"UncheckedBlock","src":"10775:100:1","statements":[{"expression":{"arguments":[{"id":638,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":605,"src":"10812:5:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":639,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10819:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":640,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"10828:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"10847:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:1","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":637,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[542,602],"referencedDeclaration":602,"src":"10803:8:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":645,"nodeType":"ExpressionStatement","src":"10803:57:1"}]}]}}]},"documentation":{"id":603,"nodeType":"StructuredDocumentation","src":"10139:271:1","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":650,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:1","nodeType":"FunctionDefinition","parameters":{"id":610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":605,"mutability":"mutable","name":"owner","nameLocation":"10448:5:1","nodeType":"VariableDeclaration","scope":650,"src":"10440:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":604,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":607,"mutability":"mutable","name":"spender","nameLocation":"10463:7:1","nodeType":"VariableDeclaration","scope":650,"src":"10455:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":606,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":609,"mutability":"mutable","name":"value","nameLocation":"10480:5:1","nodeType":"VariableDeclaration","scope":650,"src":"10472:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":608,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:1"},"returnParameters":{"id":611,"nodeType":"ParameterList","parameters":[],"src":"10504:0:1"},"scope":651,"src":"10415:476:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":652,"src":"1106:9787:1","usedErrors":[11,16,21,30,35,40],"usedEvents":[663,672]}],"src":"105:10789:1"},"id":1},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[729]},"id":730,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":653,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:2"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":654,"nodeType":"StructuredDocumentation","src":"132:71:2","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":729,"linearizedBaseContracts":[729],"name":"IERC20","nameLocation":"214:6:2","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":655,"nodeType":"StructuredDocumentation","src":"227:158:2","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":663,"name":"Transfer","nameLocation":"396:8:2","nodeType":"EventDefinition","parameters":{"id":662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":657,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:2","nodeType":"VariableDeclaration","scope":663,"src":"405:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":656,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":659,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:2","nodeType":"VariableDeclaration","scope":663,"src":"427:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":658,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":661,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:2","nodeType":"VariableDeclaration","scope":663,"src":"447:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":660,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:2"},"src":"390:72:2"},{"anonymous":false,"documentation":{"id":664,"nodeType":"StructuredDocumentation","src":"468:148:2","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":672,"name":"Approval","nameLocation":"627:8:2","nodeType":"EventDefinition","parameters":{"id":671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":666,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:2","nodeType":"VariableDeclaration","scope":672,"src":"636:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":665,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":668,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:2","nodeType":"VariableDeclaration","scope":672,"src":"659:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":667,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":670,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:2","nodeType":"VariableDeclaration","scope":672,"src":"684:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":669,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:2"},"src":"621:78:2"},{"documentation":{"id":673,"nodeType":"StructuredDocumentation","src":"705:65:2","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":678,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:2","nodeType":"FunctionDefinition","parameters":{"id":674,"nodeType":"ParameterList","parameters":[],"src":"795:2:2"},"returnParameters":{"id":677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":676,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":678,"src":"821:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":675,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:2"},"scope":729,"src":"775:55:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":679,"nodeType":"StructuredDocumentation","src":"836:71:2","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":686,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:2","nodeType":"FunctionDefinition","parameters":{"id":682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":681,"mutability":"mutable","name":"account","nameLocation":"939:7:2","nodeType":"VariableDeclaration","scope":686,"src":"931:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":680,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:2"},"returnParameters":{"id":685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":684,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":686,"src":"971:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":683,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:2"},"scope":729,"src":"912:68:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":687,"nodeType":"StructuredDocumentation","src":"986:213:2","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":696,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:2","nodeType":"FunctionDefinition","parameters":{"id":692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":689,"mutability":"mutable","name":"to","nameLocation":"1230:2:2","nodeType":"VariableDeclaration","scope":696,"src":"1222:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":688,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":691,"mutability":"mutable","name":"value","nameLocation":"1242:5:2","nodeType":"VariableDeclaration","scope":696,"src":"1234:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":690,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:2"},"returnParameters":{"id":695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":696,"src":"1267:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":693,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:2"},"scope":729,"src":"1204:69:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":697,"nodeType":"StructuredDocumentation","src":"1279:264:2","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":706,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:2","nodeType":"FunctionDefinition","parameters":{"id":702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":699,"mutability":"mutable","name":"owner","nameLocation":"1575:5:2","nodeType":"VariableDeclaration","scope":706,"src":"1567:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":698,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":701,"mutability":"mutable","name":"spender","nameLocation":"1590:7:2","nodeType":"VariableDeclaration","scope":706,"src":"1582:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":700,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:2"},"returnParameters":{"id":705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":704,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":706,"src":"1622:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":703,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:2"},"scope":729,"src":"1548:83:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":707,"nodeType":"StructuredDocumentation","src":"1637:667:2","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":716,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:2","nodeType":"FunctionDefinition","parameters":{"id":712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":709,"mutability":"mutable","name":"spender","nameLocation":"2334:7:2","nodeType":"VariableDeclaration","scope":716,"src":"2326:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":708,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":711,"mutability":"mutable","name":"value","nameLocation":"2351:5:2","nodeType":"VariableDeclaration","scope":716,"src":"2343:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":710,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:2"},"returnParameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":716,"src":"2376:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":713,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:2"},"scope":729,"src":"2309:73:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":717,"nodeType":"StructuredDocumentation","src":"2388:297:2","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":728,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:2","nodeType":"FunctionDefinition","parameters":{"id":724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":719,"mutability":"mutable","name":"from","nameLocation":"2720:4:2","nodeType":"VariableDeclaration","scope":728,"src":"2712:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":718,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":721,"mutability":"mutable","name":"to","nameLocation":"2734:2:2","nodeType":"VariableDeclaration","scope":728,"src":"2726:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":720,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":723,"mutability":"mutable","name":"value","nameLocation":"2746:5:2","nodeType":"VariableDeclaration","scope":728,"src":"2738:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":722,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:2"},"returnParameters":{"id":727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":726,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":728,"src":"2771:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":725,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:2"},"scope":729,"src":"2690:87:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":730,"src":"204:2575:2","usedErrors":[],"usedEvents":[663,672]}],"src":"106:2674:2"},"id":2},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[729],"IERC20Metadata":[755]},"id":756,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":731,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:3"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":733,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":756,"sourceUnit":730,"src":"151:37:3","symbolAliases":[{"foreign":{"id":732,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"159:6:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":735,"name":"IERC20","nameLocations":["306:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":729,"src":"306:6:3"},"id":736,"nodeType":"InheritanceSpecifier","src":"306:6:3"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":734,"nodeType":"StructuredDocumentation","src":"190:87:3","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":755,"linearizedBaseContracts":[755,729],"name":"IERC20Metadata","nameLocation":"288:14:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"319:54:3","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":742,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:3","nodeType":"FunctionDefinition","parameters":{"id":738,"nodeType":"ParameterList","parameters":[],"src":"391:2:3"},"returnParameters":{"id":741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":740,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":742,"src":"417:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":739,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:3"},"scope":755,"src":"378:54:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":743,"nodeType":"StructuredDocumentation","src":"438:56:3","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":748,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:3","nodeType":"FunctionDefinition","parameters":{"id":744,"nodeType":"ParameterList","parameters":[],"src":"514:2:3"},"returnParameters":{"id":747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":748,"src":"540:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":745,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:3"},"scope":755,"src":"499:56:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":749,"nodeType":"StructuredDocumentation","src":"561:65:3","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":754,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:3","nodeType":"FunctionDefinition","parameters":{"id":750,"nodeType":"ParameterList","parameters":[],"src":"648:2:3"},"returnParameters":{"id":753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":754,"src":"674:5:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":751,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:3"},"scope":755,"src":"631:50:3","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":756,"src":"278:405:3","usedErrors":[],"usedEvents":[663,672]}],"src":"125:559:3"},"id":3},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[785]},"id":786,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":757,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:4"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":758,"nodeType":"StructuredDocumentation","src":"127:496:4","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":785,"linearizedBaseContracts":[785],"name":"Context","nameLocation":"642:7:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":766,"nodeType":"Block","src":"718:34:4","statements":[{"expression":{"expression":{"id":763,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:4","memberName":"sender","nodeType":"MemberAccess","src":"735:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":762,"id":765,"nodeType":"Return","src":"728:17:4"}]},"id":767,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:4","nodeType":"FunctionDefinition","parameters":{"id":759,"nodeType":"ParameterList","parameters":[],"src":"675:2:4"},"returnParameters":{"id":762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":761,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":767,"src":"709:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":760,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:4"},"scope":785,"src":"656:96:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":775,"nodeType":"Block","src":"825:32:4","statements":[{"expression":{"expression":{"id":772,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:4","memberName":"data","nodeType":"MemberAccess","src":"842:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":771,"id":774,"nodeType":"Return","src":"835:15:4"}]},"id":776,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:4","nodeType":"FunctionDefinition","parameters":{"id":768,"nodeType":"ParameterList","parameters":[],"src":"775:2:4"},"returnParameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":776,"src":"809:14:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":769,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:4"},"scope":785,"src":"758:99:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":783,"nodeType":"Block","src":"935:25:4","statements":[{"expression":{"hexValue":"30","id":781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":780,"id":782,"nodeType":"Return","src":"945:8:4"}]},"id":784,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:4","nodeType":"FunctionDefinition","parameters":{"id":777,"nodeType":"ParameterList","parameters":[],"src":"892:2:4"},"returnParameters":{"id":780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":784,"src":"926:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":778,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:4"},"scope":785,"src":"863:97:4","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":786,"src":"624:338:4","usedErrors":[],"usedEvents":[]}],"src":"101:862:4"},"id":4},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[854]},"id":855,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":787,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:5"},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":788,"nodeType":"StructuredDocumentation","src":"135:894:5","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n consider using {ReentrancyGuardTransient} instead.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."},"fullyImplemented":true,"id":854,"linearizedBaseContracts":[854],"name":"ReentrancyGuard","nameLocation":"1048:15:5","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":791,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"1843:11:5","nodeType":"VariableDeclaration","scope":854,"src":"1818:40:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":789,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1857:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":794,"mutability":"constant","name":"ENTERED","nameLocation":"1889:7:5","nodeType":"VariableDeclaration","scope":854,"src":"1864:36:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":792,"name":"uint256","nodeType":"ElementaryTypeName","src":"1864:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1899:1:5","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":796,"mutability":"mutable","name":"_status","nameLocation":"1923:7:5","nodeType":"VariableDeclaration","scope":854,"src":"1907:23:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"1907:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"documentation":{"id":797,"nodeType":"StructuredDocumentation","src":"1937:52:5","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":799,"name":"ReentrancyGuardReentrantCall","nameLocation":"2000:28:5","nodeType":"ErrorDefinition","parameters":{"id":798,"nodeType":"ParameterList","parameters":[],"src":"2028:2:5"},"src":"1994:37:5"},{"body":{"id":806,"nodeType":"Block","src":"2051:38:5","statements":[{"expression":{"id":804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":802,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2061:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":803,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"2071:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2061:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":805,"nodeType":"ExpressionStatement","src":"2061:21:5"}]},"id":807,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":800,"nodeType":"ParameterList","parameters":[],"src":"2048:2:5"},"returnParameters":{"id":801,"nodeType":"ParameterList","parameters":[],"src":"2051:0:5"},"scope":854,"src":"2037:52:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":817,"nodeType":"Block","src":"2490:79:5","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":810,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"2500:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":812,"nodeType":"ExpressionStatement","src":"2500:21:5"},{"id":813,"nodeType":"PlaceholderStatement","src":"2531:1:5"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":814,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":842,"src":"2542:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2542:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":816,"nodeType":"ExpressionStatement","src":"2542:20:5"}]},"documentation":{"id":808,"nodeType":"StructuredDocumentation","src":"2095:366:5","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":818,"name":"nonReentrant","nameLocation":"2475:12:5","nodeType":"ModifierDefinition","parameters":{"id":809,"nodeType":"ParameterList","parameters":[],"src":"2487:2:5"},"src":"2466:103:5","virtual":false,"visibility":"internal"},{"body":{"id":833,"nodeType":"Block","src":"2614:268:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":821,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2702:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":822,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"2713:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2702:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":828,"nodeType":"IfStatement","src":"2698:86:5","trueBody":{"id":827,"nodeType":"Block","src":"2722:62:5","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":824,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":799,"src":"2743:28:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2743:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":826,"nodeType":"RevertStatement","src":"2736:37:5"}]}},{"expression":{"id":831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":829,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"2858:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":830,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"2868:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2858:17:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":832,"nodeType":"ExpressionStatement","src":"2858:17:5"}]},"id":834,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"2584:19:5","nodeType":"FunctionDefinition","parameters":{"id":819,"nodeType":"ParameterList","parameters":[],"src":"2603:2:5"},"returnParameters":{"id":820,"nodeType":"ParameterList","parameters":[],"src":"2614:0:5"},"scope":854,"src":"2575:307:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":841,"nodeType":"Block","src":"2926:170:5","statements":[{"expression":{"id":839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":837,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"3068:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":838,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"3078:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3068:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":840,"nodeType":"ExpressionStatement","src":"3068:21:5"}]},"id":842,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"2897:18:5","nodeType":"FunctionDefinition","parameters":{"id":835,"nodeType":"ParameterList","parameters":[],"src":"2915:2:5"},"returnParameters":{"id":836,"nodeType":"ParameterList","parameters":[],"src":"2926:0:5"},"scope":854,"src":"2888:208:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":852,"nodeType":"Block","src":"3339:42:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":848,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"3356:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":849,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"3367:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3356:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":847,"id":851,"nodeType":"Return","src":"3349:25:5"}]},"documentation":{"id":843,"nodeType":"StructuredDocumentation","src":"3102:168:5","text":" @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n `nonReentrant` function in the call stack."},"id":853,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"3284:23:5","nodeType":"FunctionDefinition","parameters":{"id":844,"nodeType":"ParameterList","parameters":[],"src":"3307:2:5"},"returnParameters":{"id":847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":846,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":853,"src":"3333:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":845,"name":"bool","nodeType":"ElementaryTypeName","src":"3333:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3332:6:5"},"scope":854,"src":"3275:106:5","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":855,"src":"1030:2353:5","usedErrors":[799],"usedEvents":[]}],"src":"109:3275:5"},"id":5},"contracts/DLE.sol":{"ast":{"absolutePath":"contracts/DLE.sol","exportedSymbols":{"Context":[785],"DLE":[2613],"ERC20":[651],"IERC20":[729],"IERC20Errors":[41],"IERC20Metadata":[755],"ReentrancyGuard":[854]},"id":2614,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":856,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":857,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2614,"sourceUnit":652,"src":"58:55:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","file":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","id":858,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2614,"sourceUnit":855,"src":"114:59:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":860,"name":"ERC20","nameLocations":["375:5:6"],"nodeType":"IdentifierPath","referencedDeclaration":651,"src":"375:5:6"},"id":861,"nodeType":"InheritanceSpecifier","src":"375:5:6"},{"baseName":{"id":862,"name":"ReentrancyGuard","nameLocations":["382:15:6"],"nodeType":"IdentifierPath","referencedDeclaration":854,"src":"382:15:6"},"id":863,"nodeType":"InheritanceSpecifier","src":"382:15:6"}],"canonicalName":"DLE","contractDependencies":[],"contractKind":"contract","documentation":{"id":859,"nodeType":"StructuredDocumentation","src":"175:183:6","text":" @title DLE (Digital Legal Entity)\n @dev Основной контракт DLE с модульной архитектурой и мульти-чейн поддержкой"},"fullyImplemented":true,"id":2613,"linearizedBaseContracts":[2613,854,651,41,755,729,785],"name":"DLE","nameLocation":"368:3:6","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DLE.DLEInfo","id":885,"members":[{"constant":false,"id":865,"mutability":"mutable","name":"name","nameLocation":"436:4:6","nodeType":"VariableDeclaration","scope":885,"src":"429:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":864,"name":"string","nodeType":"ElementaryTypeName","src":"429:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":867,"mutability":"mutable","name":"symbol","nameLocation":"457:6:6","nodeType":"VariableDeclaration","scope":885,"src":"450:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":866,"name":"string","nodeType":"ElementaryTypeName","src":"450:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":869,"mutability":"mutable","name":"location","nameLocation":"480:8:6","nodeType":"VariableDeclaration","scope":885,"src":"473:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":868,"name":"string","nodeType":"ElementaryTypeName","src":"473:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":871,"mutability":"mutable","name":"coordinates","nameLocation":"505:11:6","nodeType":"VariableDeclaration","scope":885,"src":"498:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":870,"name":"string","nodeType":"ElementaryTypeName","src":"498:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"jurisdiction","nameLocation":"534:12:6","nodeType":"VariableDeclaration","scope":885,"src":"526:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":872,"name":"uint256","nodeType":"ElementaryTypeName","src":"526:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":875,"mutability":"mutable","name":"oktmo","nameLocation":"564:5:6","nodeType":"VariableDeclaration","scope":885,"src":"556:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":874,"name":"uint256","nodeType":"ElementaryTypeName","src":"556:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":878,"mutability":"mutable","name":"okvedCodes","nameLocation":"588:10:6","nodeType":"VariableDeclaration","scope":885,"src":"579:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":876,"name":"string","nodeType":"ElementaryTypeName","src":"579:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":877,"nodeType":"ArrayTypeName","src":"579:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":880,"mutability":"mutable","name":"kpp","nameLocation":"616:3:6","nodeType":"VariableDeclaration","scope":885,"src":"608:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":879,"name":"uint256","nodeType":"ElementaryTypeName","src":"608:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":882,"mutability":"mutable","name":"creationTimestamp","nameLocation":"637:17:6","nodeType":"VariableDeclaration","scope":885,"src":"629:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":881,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":884,"mutability":"mutable","name":"isActive","nameLocation":"669:8:6","nodeType":"VariableDeclaration","scope":885,"src":"664:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":883,"name":"bool","nodeType":"ElementaryTypeName","src":"664:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"DLEInfo","nameLocation":"411:7:6","nodeType":"StructDefinition","scope":2613,"src":"404:280:6","visibility":"public"},{"canonicalName":"DLE.DLEConfig","id":914,"members":[{"constant":false,"id":887,"mutability":"mutable","name":"name","nameLocation":"724:4:6","nodeType":"VariableDeclaration","scope":914,"src":"717:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":886,"name":"string","nodeType":"ElementaryTypeName","src":"717:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":889,"mutability":"mutable","name":"symbol","nameLocation":"745:6:6","nodeType":"VariableDeclaration","scope":914,"src":"738:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":888,"name":"string","nodeType":"ElementaryTypeName","src":"738:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":891,"mutability":"mutable","name":"location","nameLocation":"768:8:6","nodeType":"VariableDeclaration","scope":914,"src":"761:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":890,"name":"string","nodeType":"ElementaryTypeName","src":"761:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":893,"mutability":"mutable","name":"coordinates","nameLocation":"793:11:6","nodeType":"VariableDeclaration","scope":914,"src":"786:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":892,"name":"string","nodeType":"ElementaryTypeName","src":"786:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":895,"mutability":"mutable","name":"jurisdiction","nameLocation":"822:12:6","nodeType":"VariableDeclaration","scope":914,"src":"814:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":894,"name":"uint256","nodeType":"ElementaryTypeName","src":"814:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":897,"mutability":"mutable","name":"oktmo","nameLocation":"852:5:6","nodeType":"VariableDeclaration","scope":914,"src":"844:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":896,"name":"uint256","nodeType":"ElementaryTypeName","src":"844:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":900,"mutability":"mutable","name":"okvedCodes","nameLocation":"876:10:6","nodeType":"VariableDeclaration","scope":914,"src":"867:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":898,"name":"string","nodeType":"ElementaryTypeName","src":"867:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":899,"nodeType":"ArrayTypeName","src":"867:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":902,"mutability":"mutable","name":"kpp","nameLocation":"904:3:6","nodeType":"VariableDeclaration","scope":914,"src":"896:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":901,"name":"uint256","nodeType":"ElementaryTypeName","src":"896:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":904,"mutability":"mutable","name":"quorumPercentage","nameLocation":"925:16:6","nodeType":"VariableDeclaration","scope":914,"src":"917:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":907,"mutability":"mutable","name":"initialPartners","nameLocation":"961:15:6","nodeType":"VariableDeclaration","scope":914,"src":"951:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":905,"name":"address","nodeType":"ElementaryTypeName","src":"951:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":906,"nodeType":"ArrayTypeName","src":"951:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":910,"mutability":"mutable","name":"initialAmounts","nameLocation":"996:14:6","nodeType":"VariableDeclaration","scope":914,"src":"986:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":908,"name":"uint256","nodeType":"ElementaryTypeName","src":"986:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":909,"nodeType":"ArrayTypeName","src":"986:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":913,"mutability":"mutable","name":"supportedChainIds","nameLocation":"1030:17:6","nodeType":"VariableDeclaration","scope":914,"src":"1020:27:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":911,"name":"uint256","nodeType":"ElementaryTypeName","src":"1020:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":912,"nodeType":"ArrayTypeName","src":"1020:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"name":"DLEConfig","nameLocation":"697:9:6","nodeType":"StructDefinition","scope":2613,"src":"690:411:6","visibility":"public"},{"canonicalName":"DLE.Proposal","id":939,"members":[{"constant":false,"id":916,"mutability":"mutable","name":"id","nameLocation":"1141:2:6","nodeType":"VariableDeclaration","scope":939,"src":"1133:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":915,"name":"uint256","nodeType":"ElementaryTypeName","src":"1133:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":918,"mutability":"mutable","name":"description","nameLocation":"1160:11:6","nodeType":"VariableDeclaration","scope":939,"src":"1153:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":917,"name":"string","nodeType":"ElementaryTypeName","src":"1153:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":920,"mutability":"mutable","name":"forVotes","nameLocation":"1189:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1181:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":919,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":922,"mutability":"mutable","name":"againstVotes","nameLocation":"1215:12:6","nodeType":"VariableDeclaration","scope":939,"src":"1207:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":921,"name":"uint256","nodeType":"ElementaryTypeName","src":"1207:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":924,"mutability":"mutable","name":"executed","nameLocation":"1242:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1237:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":923,"name":"bool","nodeType":"ElementaryTypeName","src":"1237:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":926,"mutability":"mutable","name":"deadline","nameLocation":"1268:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1260:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":925,"name":"uint256","nodeType":"ElementaryTypeName","src":"1260:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":928,"mutability":"mutable","name":"initiator","nameLocation":"1294:9:6","nodeType":"VariableDeclaration","scope":939,"src":"1286:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":927,"name":"address","nodeType":"ElementaryTypeName","src":"1286:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":930,"mutability":"mutable","name":"operation","nameLocation":"1319:9:6","nodeType":"VariableDeclaration","scope":939,"src":"1313:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":929,"name":"bytes","nodeType":"ElementaryTypeName","src":"1313:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"hasVoted","nameLocation":"1411:8:6","nodeType":"VariableDeclaration","scope":939,"src":"1386:33:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":933,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":931,"name":"address","nodeType":"ElementaryTypeName","src":"1394:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1386:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":932,"name":"bool","nodeType":"ElementaryTypeName","src":"1405:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":938,"mutability":"mutable","name":"chainVoteSynced","nameLocation":"1454:15:6","nodeType":"VariableDeclaration","scope":939,"src":"1429:40:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":937,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":935,"name":"uint256","nodeType":"ElementaryTypeName","src":"1437:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1429:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":936,"name":"bool","nodeType":"ElementaryTypeName","src":"1448:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"Proposal","nameLocation":"1114:8:6","nodeType":"StructDefinition","scope":2613,"src":"1107:444:6","visibility":"public"},{"canonicalName":"DLE.MultiSigOperation","id":960,"members":[{"constant":false,"id":941,"mutability":"mutable","name":"operationHash","nameLocation":"1600:13:6","nodeType":"VariableDeclaration","scope":960,"src":"1592:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1592:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":943,"mutability":"mutable","name":"forSignatures","nameLocation":"1631:13:6","nodeType":"VariableDeclaration","scope":960,"src":"1623:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":942,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":945,"mutability":"mutable","name":"againstSignatures","nameLocation":"1662:17:6","nodeType":"VariableDeclaration","scope":960,"src":"1654:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":944,"name":"uint256","nodeType":"ElementaryTypeName","src":"1654:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":947,"mutability":"mutable","name":"executed","nameLocation":"1694:8:6","nodeType":"VariableDeclaration","scope":960,"src":"1689:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":946,"name":"bool","nodeType":"ElementaryTypeName","src":"1689:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":949,"mutability":"mutable","name":"deadline","nameLocation":"1720:8:6","nodeType":"VariableDeclaration","scope":960,"src":"1712:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":948,"name":"uint256","nodeType":"ElementaryTypeName","src":"1712:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":951,"mutability":"mutable","name":"initiator","nameLocation":"1746:9:6","nodeType":"VariableDeclaration","scope":960,"src":"1738:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":950,"name":"address","nodeType":"ElementaryTypeName","src":"1738:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":955,"mutability":"mutable","name":"hasSigned","nameLocation":"1790:9:6","nodeType":"VariableDeclaration","scope":960,"src":"1765:34:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":954,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":952,"name":"address","nodeType":"ElementaryTypeName","src":"1773:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1765:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":953,"name":"bool","nodeType":"ElementaryTypeName","src":"1784:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":959,"mutability":"mutable","name":"chainSignSynced","nameLocation":"1834:15:6","nodeType":"VariableDeclaration","scope":960,"src":"1809:40:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":958,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"1817:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1809:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":957,"name":"bool","nodeType":"ElementaryTypeName","src":"1828:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"MultiSigOperation","nameLocation":"1564:17:6","nodeType":"StructDefinition","scope":2613,"src":"1557:376:6","visibility":"public"},{"constant":false,"functionSelector":"f2c26a47","id":963,"mutability":"mutable","name":"dleInfo","nameLocation":"1997:7:6","nodeType":"VariableDeclaration","scope":2613,"src":"1982:22:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo"},"typeName":{"id":962,"nodeType":"UserDefinedTypeName","pathNode":{"id":961,"name":"DLEInfo","nameLocations":["1982:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":885,"src":"1982:7:6"},"referencedDeclaration":885,"src":"1982:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"public"},{"constant":false,"functionSelector":"4fa76ec9","id":965,"mutability":"mutable","name":"quorumPercentage","nameLocation":"2025:16:6","nodeType":"VariableDeclaration","scope":2613,"src":"2010:31:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":964,"name":"uint256","nodeType":"ElementaryTypeName","src":"2010:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0c0512e9","id":967,"mutability":"mutable","name":"proposalCounter","nameLocation":"2062:15:6","nodeType":"VariableDeclaration","scope":2613,"src":"2047:30:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":966,"name":"uint256","nodeType":"ElementaryTypeName","src":"2047:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8c7b04c9","id":969,"mutability":"mutable","name":"multiSigCounter","nameLocation":"2098:15:6","nodeType":"VariableDeclaration","scope":2613,"src":"2083:30:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":968,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6cbadbfa","id":971,"mutability":"mutable","name":"currentChainId","nameLocation":"2134:14:6","nodeType":"VariableDeclaration","scope":2613,"src":"2119:29:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":970,"name":"uint256","nodeType":"ElementaryTypeName","src":"2119:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"b0b6cc1a","id":975,"mutability":"mutable","name":"modules","nameLocation":"2210:7:6","nodeType":"VariableDeclaration","scope":2613,"src":"2175:42:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"},"typeName":{"id":974,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":972,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2175:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":973,"name":"address","nodeType":"ElementaryTypeName","src":"2194:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"public"},{"constant":false,"functionSelector":"b3fe8bcb","id":979,"mutability":"mutable","name":"activeModules","nameLocation":"2255:13:6","nodeType":"VariableDeclaration","scope":2613,"src":"2223:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"},"typeName":{"id":978,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":976,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2231:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2223:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":977,"name":"bool","nodeType":"ElementaryTypeName","src":"2242:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"013cf08b","id":984,"mutability":"mutable","name":"proposals","nameLocation":"2371:9:6","nodeType":"VariableDeclaration","scope":2613,"src":"2335:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"typeName":{"id":983,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":980,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2335:28:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":982,"nodeType":"UserDefinedTypeName","pathNode":{"id":981,"name":"Proposal","nameLocations":["2354:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"2354:8:6"},"referencedDeclaration":939,"src":"2354:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"c51cab3a","id":989,"mutability":"mutable","name":"multiSigOperations","nameLocation":"2431:18:6","nodeType":"VariableDeclaration","scope":2613,"src":"2386:63:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation)"},"typeName":{"id":988,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":985,"name":"uint256","nodeType":"ElementaryTypeName","src":"2394:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2386:37:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":987,"nodeType":"UserDefinedTypeName","pathNode":{"id":986,"name":"MultiSigOperation","nameLocations":["2405:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"2405:17:6"},"referencedDeclaration":960,"src":"2405:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}}},"visibility":"public"},{"constant":false,"functionSelector":"548d496f","id":993,"mutability":"mutable","name":"supportedChains","nameLocation":"2517:15:6","nodeType":"VariableDeclaration","scope":2613,"src":"2485:47:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":992,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":990,"name":"uint256","nodeType":"ElementaryTypeName","src":"2493:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2485:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":991,"name":"bool","nodeType":"ElementaryTypeName","src":"2504:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"3b60288a","id":997,"mutability":"mutable","name":"executedProposals","nameLocation":"2570:17:6","nodeType":"VariableDeclaration","scope":2613,"src":"2538:49:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":996,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":994,"name":"uint256","nodeType":"ElementaryTypeName","src":"2546:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2538:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":995,"name":"bool","nodeType":"ElementaryTypeName","src":"2557:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"af89d2c4","id":1001,"mutability":"mutable","name":"executedMultiSig","nameLocation":"2701:16:6","nodeType":"VariableDeclaration","scope":2613,"src":"2669:48:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"typeName":{"id":1000,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":998,"name":"uint256","nodeType":"ElementaryTypeName","src":"2677:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2669:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":999,"name":"bool","nodeType":"ElementaryTypeName","src":"2688:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"anonymous":false,"eventSelector":"11b248463a1620b36a975da8f250009f56fb5dd0e9d5027a90a834d0ee84d6f6","id":1025,"name":"DLEInitialized","nameLocation":"2834:14:6","nodeType":"EventDefinition","parameters":{"id":1024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1003,"indexed":false,"mutability":"mutable","name":"name","nameLocation":"2865:4:6","nodeType":"VariableDeclaration","scope":1025,"src":"2858:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1002,"name":"string","nodeType":"ElementaryTypeName","src":"2858:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1005,"indexed":false,"mutability":"mutable","name":"symbol","nameLocation":"2886:6:6","nodeType":"VariableDeclaration","scope":1025,"src":"2879:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1004,"name":"string","nodeType":"ElementaryTypeName","src":"2879:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1007,"indexed":false,"mutability":"mutable","name":"location","nameLocation":"2909:8:6","nodeType":"VariableDeclaration","scope":1025,"src":"2902:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1006,"name":"string","nodeType":"ElementaryTypeName","src":"2902:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1009,"indexed":false,"mutability":"mutable","name":"coordinates","nameLocation":"2934:11:6","nodeType":"VariableDeclaration","scope":1025,"src":"2927:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1008,"name":"string","nodeType":"ElementaryTypeName","src":"2927:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1011,"indexed":false,"mutability":"mutable","name":"jurisdiction","nameLocation":"2963:12:6","nodeType":"VariableDeclaration","scope":1025,"src":"2955:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1010,"name":"uint256","nodeType":"ElementaryTypeName","src":"2955:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1013,"indexed":false,"mutability":"mutable","name":"oktmo","nameLocation":"2993:5:6","nodeType":"VariableDeclaration","scope":1025,"src":"2985:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1012,"name":"uint256","nodeType":"ElementaryTypeName","src":"2985:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1016,"indexed":false,"mutability":"mutable","name":"okvedCodes","nameLocation":"3017:10:6","nodeType":"VariableDeclaration","scope":1025,"src":"3008:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":1014,"name":"string","nodeType":"ElementaryTypeName","src":"3008:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":1015,"nodeType":"ArrayTypeName","src":"3008:8:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":1018,"indexed":false,"mutability":"mutable","name":"kpp","nameLocation":"3045:3:6","nodeType":"VariableDeclaration","scope":1025,"src":"3037:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1017,"name":"uint256","nodeType":"ElementaryTypeName","src":"3037:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1020,"indexed":false,"mutability":"mutable","name":"tokenAddress","nameLocation":"3066:12:6","nodeType":"VariableDeclaration","scope":1025,"src":"3058:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"3058:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1023,"indexed":false,"mutability":"mutable","name":"supportedChainIds","nameLocation":"3098:17:6","nodeType":"VariableDeclaration","scope":1025,"src":"3088:27:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1021,"name":"uint256","nodeType":"ElementaryTypeName","src":"3088:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1022,"nodeType":"ArrayTypeName","src":"3088:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2848:273:6"},"src":"2828:294:6"},{"anonymous":false,"eventSelector":"f9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a5","id":1033,"name":"InitialTokensDistributed","nameLocation":"3133:24:6","nodeType":"EventDefinition","parameters":{"id":1032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1028,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"3168:8:6","nodeType":"VariableDeclaration","scope":1033,"src":"3158:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1026,"name":"address","nodeType":"ElementaryTypeName","src":"3158:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1027,"nodeType":"ArrayTypeName","src":"3158:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1031,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"3188:7:6","nodeType":"VariableDeclaration","scope":1033,"src":"3178:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1029,"name":"uint256","nodeType":"ElementaryTypeName","src":"3178:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1030,"nodeType":"ArrayTypeName","src":"3178:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"3157:39:6"},"src":"3127:70:6"},{"anonymous":false,"eventSelector":"7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63","id":1041,"name":"ProposalCreated","nameLocation":"3208:15:6","nodeType":"EventDefinition","parameters":{"id":1040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1035,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3232:10:6","nodeType":"VariableDeclaration","scope":1041,"src":"3224:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1034,"name":"uint256","nodeType":"ElementaryTypeName","src":"3224:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1037,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"3252:9:6","nodeType":"VariableDeclaration","scope":1041,"src":"3244:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1036,"name":"address","nodeType":"ElementaryTypeName","src":"3244:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1039,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3270:11:6","nodeType":"VariableDeclaration","scope":1041,"src":"3263:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1038,"name":"string","nodeType":"ElementaryTypeName","src":"3263:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3223:59:6"},"src":"3202:81:6"},{"anonymous":false,"eventSelector":"78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a9","id":1051,"name":"ProposalVoted","nameLocation":"3294:13:6","nodeType":"EventDefinition","parameters":{"id":1050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1043,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3316:10:6","nodeType":"VariableDeclaration","scope":1051,"src":"3308:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1042,"name":"uint256","nodeType":"ElementaryTypeName","src":"3308:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1045,"indexed":false,"mutability":"mutable","name":"voter","nameLocation":"3336:5:6","nodeType":"VariableDeclaration","scope":1051,"src":"3328:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1044,"name":"address","nodeType":"ElementaryTypeName","src":"3328:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1047,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"3348:7:6","nodeType":"VariableDeclaration","scope":1051,"src":"3343:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1046,"name":"bool","nodeType":"ElementaryTypeName","src":"3343:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1049,"indexed":false,"mutability":"mutable","name":"votingPower","nameLocation":"3365:11:6","nodeType":"VariableDeclaration","scope":1051,"src":"3357:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1048,"name":"uint256","nodeType":"ElementaryTypeName","src":"3357:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3307:70:6"},"src":"3288:90:6"},{"anonymous":false,"eventSelector":"badbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2","id":1057,"name":"ProposalExecuted","nameLocation":"3389:16:6","nodeType":"EventDefinition","parameters":{"id":1056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1053,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3414:10:6","nodeType":"VariableDeclaration","scope":1057,"src":"3406:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1052,"name":"uint256","nodeType":"ElementaryTypeName","src":"3406:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1055,"indexed":false,"mutability":"mutable","name":"operation","nameLocation":"3432:9:6","nodeType":"VariableDeclaration","scope":1057,"src":"3426:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1054,"name":"bytes","nodeType":"ElementaryTypeName","src":"3426:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3405:37:6"},"src":"3383:60:6"},{"anonymous":false,"eventSelector":"8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f0","id":1065,"name":"MultiSigOperationCreated","nameLocation":"3454:24:6","nodeType":"EventDefinition","parameters":{"id":1064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1059,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3487:11:6","nodeType":"VariableDeclaration","scope":1065,"src":"3479:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1058,"name":"uint256","nodeType":"ElementaryTypeName","src":"3479:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1061,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"3508:9:6","nodeType":"VariableDeclaration","scope":1065,"src":"3500:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1060,"name":"address","nodeType":"ElementaryTypeName","src":"3500:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1063,"indexed":false,"mutability":"mutable","name":"operationHash","nameLocation":"3527:13:6","nodeType":"VariableDeclaration","scope":1065,"src":"3519:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1062,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3519:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3478:63:6"},"src":"3448:94:6"},{"anonymous":false,"eventSelector":"78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc","id":1075,"name":"MultiSigSigned","nameLocation":"3553:14:6","nodeType":"EventDefinition","parameters":{"id":1074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1067,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3576:11:6","nodeType":"VariableDeclaration","scope":1075,"src":"3568:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1066,"name":"uint256","nodeType":"ElementaryTypeName","src":"3568:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1069,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"3597:6:6","nodeType":"VariableDeclaration","scope":1075,"src":"3589:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1068,"name":"address","nodeType":"ElementaryTypeName","src":"3589:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1071,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"3610:7:6","nodeType":"VariableDeclaration","scope":1075,"src":"3605:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1070,"name":"bool","nodeType":"ElementaryTypeName","src":"3605:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1073,"indexed":false,"mutability":"mutable","name":"signaturePower","nameLocation":"3627:14:6","nodeType":"VariableDeclaration","scope":1075,"src":"3619:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1072,"name":"uint256","nodeType":"ElementaryTypeName","src":"3619:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3567:75:6"},"src":"3547:96:6"},{"anonymous":false,"eventSelector":"64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5","id":1081,"name":"MultiSigExecuted","nameLocation":"3654:16:6","nodeType":"EventDefinition","parameters":{"id":1080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1077,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"3679:11:6","nodeType":"VariableDeclaration","scope":1081,"src":"3671:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1076,"name":"uint256","nodeType":"ElementaryTypeName","src":"3671:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1079,"indexed":false,"mutability":"mutable","name":"operationHash","nameLocation":"3700:13:6","nodeType":"VariableDeclaration","scope":1081,"src":"3692:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1078,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3692:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3670:44:6"},"src":"3648:67:6"},{"anonymous":false,"eventSelector":"f14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d72722719","id":1087,"name":"ModuleAdded","nameLocation":"3726:11:6","nodeType":"EventDefinition","parameters":{"id":1086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1083,"indexed":false,"mutability":"mutable","name":"moduleId","nameLocation":"3746:8:6","nodeType":"VariableDeclaration","scope":1087,"src":"3738:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1082,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3738:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1085,"indexed":false,"mutability":"mutable","name":"moduleAddress","nameLocation":"3764:13:6","nodeType":"VariableDeclaration","scope":1087,"src":"3756:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1084,"name":"address","nodeType":"ElementaryTypeName","src":"3756:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3737:41:6"},"src":"3720:59:6"},{"anonymous":false,"eventSelector":"4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba853","id":1091,"name":"ModuleRemoved","nameLocation":"3790:13:6","nodeType":"EventDefinition","parameters":{"id":1090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"indexed":false,"mutability":"mutable","name":"moduleId","nameLocation":"3812:8:6","nodeType":"VariableDeclaration","scope":1091,"src":"3804:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1088,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3804:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3803:18:6"},"src":"3784:38:6"},{"anonymous":false,"eventSelector":"42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313","id":1099,"name":"CrossChainExecutionSync","nameLocation":"3833:23:6","nodeType":"EventDefinition","parameters":{"id":1098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1093,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3865:10:6","nodeType":"VariableDeclaration","scope":1099,"src":"3857:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1092,"name":"uint256","nodeType":"ElementaryTypeName","src":"3857:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1095,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"3885:11:6","nodeType":"VariableDeclaration","scope":1099,"src":"3877:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1094,"name":"uint256","nodeType":"ElementaryTypeName","src":"3877:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1097,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"3906:9:6","nodeType":"VariableDeclaration","scope":1099,"src":"3898:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1096,"name":"uint256","nodeType":"ElementaryTypeName","src":"3898:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3856:60:6"},"src":"3827:90:6"},{"anonymous":false,"eventSelector":"ca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb","id":1107,"name":"CrossChainVoteSync","nameLocation":"3928:18:6","nodeType":"EventDefinition","parameters":{"id":1106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1101,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3955:10:6","nodeType":"VariableDeclaration","scope":1107,"src":"3947:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1100,"name":"uint256","nodeType":"ElementaryTypeName","src":"3947:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1103,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"3975:11:6","nodeType":"VariableDeclaration","scope":1107,"src":"3967:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1102,"name":"uint256","nodeType":"ElementaryTypeName","src":"3967:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1105,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"3996:9:6","nodeType":"VariableDeclaration","scope":1107,"src":"3988:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1104,"name":"uint256","nodeType":"ElementaryTypeName","src":"3988:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3946:60:6"},"src":"3922:85:6"},{"anonymous":false,"eventSelector":"e379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe5","id":1115,"name":"CrossChainMultiSigSync","nameLocation":"4018:22:6","nodeType":"EventDefinition","parameters":{"id":1114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1109,"indexed":false,"mutability":"mutable","name":"operationId","nameLocation":"4049:11:6","nodeType":"VariableDeclaration","scope":1115,"src":"4041:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1108,"name":"uint256","nodeType":"ElementaryTypeName","src":"4041:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1111,"indexed":false,"mutability":"mutable","name":"fromChainId","nameLocation":"4070:11:6","nodeType":"VariableDeclaration","scope":1115,"src":"4062:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1110,"name":"uint256","nodeType":"ElementaryTypeName","src":"4062:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1113,"indexed":false,"mutability":"mutable","name":"toChainId","nameLocation":"4091:9:6","nodeType":"VariableDeclaration","scope":1115,"src":"4083:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1112,"name":"uint256","nodeType":"ElementaryTypeName","src":"4083:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4040:61:6"},"src":"4012:90:6"},{"body":{"id":1285,"nodeType":"Block","src":"4226:1753:6","statements":[{"expression":{"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1129,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"4236:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1131,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4274:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1132,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4281:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"4274:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1133,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4307:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1134,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4314:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"4307:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1135,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4344:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4351:8:6","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":891,"src":"4344:15:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1137,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4386:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4393:11:6","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":893,"src":"4386:18:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1139,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4432:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1140,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4439:12:6","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":895,"src":"4432:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1141,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4472:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1142,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4479:5:6","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":897,"src":"4472:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1143,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4510:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1144,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4517:10:6","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":900,"src":"4510:17:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":1145,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4546:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4553:3:6","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":902,"src":"4546:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1147,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4589:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4595:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"4589:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":1149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4628:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1130,"name":"DLEInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":885,"src":"4246:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DLEInfo_$885_storage_ptr_$","typeString":"type(struct DLE.DLEInfo storage pointer)"}},"id":1150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4268:4:6","4299:6:6","4334:8:6","4373:11:6","4418:12:6","4465:5:6","4498:10:6","4541:3:6","4570:17:6","4618:8:6"],"names":["name","symbol","location","coordinates","jurisdiction","oktmo","okvedCodes","kpp","creationTimestamp","isActive"],"nodeType":"FunctionCall","src":"4246:397:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_memory_ptr","typeString":"struct DLE.DLEInfo memory"}},"src":"4236:407:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"id":1152,"nodeType":"ExpressionStatement","src":"4236:407:6"},{"expression":{"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1153,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"4662:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1154,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4681:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4688:16:6","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":904,"src":"4681:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4662:42:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1157,"nodeType":"ExpressionStatement","src":"4662:42:6"},{"expression":{"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1158,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"4714:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1159,"name":"_currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"4731:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4714:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1161,"nodeType":"ExpressionStatement","src":"4714:32:6"},{"body":{"id":1183,"nodeType":"Block","src":"4897:76:6","statements":[{"expression":{"id":1181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1174,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"4911:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1179,"indexExpression":{"baseExpression":{"expression":{"id":1175,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4927:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1176,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4934:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"4927:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1178,"indexExpression":{"id":1177,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4952:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4927:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4911:44:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4958:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4911:51:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1182,"nodeType":"ExpressionStatement","src":"4911:51:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1166,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4855:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":1167,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4859:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4866:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"4859:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4884:6:6","memberName":"length","nodeType":"MemberAccess","src":"4859:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4855:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1184,"initializationExpression":{"assignments":[1163],"declarations":[{"constant":false,"id":1163,"mutability":"mutable","name":"i","nameLocation":"4848:1:6","nodeType":"VariableDeclaration","scope":1184,"src":"4840:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1162,"name":"uint256","nodeType":"ElementaryTypeName","src":"4840:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1165,"initialValue":{"hexValue":"30","id":1164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4852:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4840:13:6"},"loopExpression":{"expression":{"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4892:3:6","subExpression":{"id":1171,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"4892:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1173,"nodeType":"ExpressionStatement","src":"4892:3:6"},"nodeType":"ForStatement","src":"4835:138:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1186,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5078:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5085:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5078:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5101:6:6","memberName":"length","nodeType":"MemberAccess","src":"5078:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":1189,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5111:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1190,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5118:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5111:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5133:6:6","memberName":"length","nodeType":"MemberAccess","src":"5111:28:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5078:61:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":1193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5141:24:6","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":1185,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5070:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:96:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1195,"nodeType":"ExpressionStatement","src":"5070:96:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1197,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5184:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1198,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5191:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5184:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5207:6:6","memberName":"length","nodeType":"MemberAccess","src":"5184:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5216:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5184:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20696e697469616c20706172746e657273","id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5219:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""},"value":"No initial partners"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_52ac33e2ca140c303c018eee17fe8221d2a3fad6b5586ebb7760b84287db7147","typeString":"literal_string \"No initial partners\""}],"id":1196,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5176:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5176:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1204,"nodeType":"ExpressionStatement","src":"5176:65:6"},{"body":{"id":1251,"nodeType":"Block","src":"5320:227:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":1218,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5342:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1219,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5349:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5342:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1221,"indexExpression":{"id":1220,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5365:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5342:25:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5379:1:6","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":1223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5371:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1222,"name":"address","nodeType":"ElementaryTypeName","src":"5371:7:6","typeDescriptions":{}}},"id":1225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5371:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5342:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":1227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5383:14:6","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":1217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5334:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5334:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1229,"nodeType":"ExpressionStatement","src":"5334:64:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"id":1231,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5420:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1232,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5427:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5420:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1234,"indexExpression":{"id":1233,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5442:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5420:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5447:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5420:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":1237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5450:13:6","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":1230,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5412:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5412:52:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1239,"nodeType":"ExpressionStatement","src":"5412:52:6"},{"expression":{"arguments":[{"baseExpression":{"expression":{"id":1241,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5484:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5491:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5484:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1244,"indexExpression":{"id":1243,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5507:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5484:25:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"expression":{"id":1245,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5511:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1246,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5518:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5511:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1248,"indexExpression":{"id":1247,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5533:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5511:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1240,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":491,"src":"5478:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":1249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1250,"nodeType":"ExpressionStatement","src":"5478:58:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1209,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5280:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"expression":{"id":1210,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5284:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1211,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5291:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5284:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5307:6:6","memberName":"length","nodeType":"MemberAccess","src":"5284:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5280:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1252,"initializationExpression":{"assignments":[1206],"declarations":[{"constant":false,"id":1206,"mutability":"mutable","name":"i","nameLocation":"5273:1:6","nodeType":"VariableDeclaration","scope":1252,"src":"5265:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1205,"name":"uint256","nodeType":"ElementaryTypeName","src":"5265:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1208,"initialValue":{"hexValue":"30","id":1207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5277:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"5265:13:6"},"loopExpression":{"expression":{"id":1215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5315:3:6","subExpression":{"id":1214,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"5315:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1216,"nodeType":"ExpressionStatement","src":"5315:3:6"},"nodeType":"ForStatement","src":"5260:287:6"},{"eventCall":{"arguments":[{"expression":{"id":1254,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5595:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1255,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5602:15:6","memberName":"initialPartners","nodeType":"MemberAccess","referencedDeclaration":907,"src":"5595:22:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"expression":{"id":1256,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5619:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5626:14:6","memberName":"initialAmounts","nodeType":"MemberAccess","referencedDeclaration":910,"src":"5619:21:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] 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"}],"id":1253,"name":"InitialTokensDistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1033,"src":"5570:24:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address[] memory,uint256[] memory)"}},"id":1258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5570:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1259,"nodeType":"EmitStatement","src":"5565:76:6"},{"eventCall":{"arguments":[{"expression":{"id":1261,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5684:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1262,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5691:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"5684:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1263,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5709:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5716:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"5709:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1265,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5736:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5743:8:6","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":891,"src":"5736:15:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1267,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5765:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5772:11:6","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":893,"src":"5765:18:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1269,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5797:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1270,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5804:12:6","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":895,"src":"5797:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1271,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5830:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1272,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5837:5:6","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":897,"src":"5830:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1273,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5856:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5863:10:6","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":900,"src":"5856:17:6","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":1275,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5887:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1276,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5894:3:6","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":902,"src":"5887:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1279,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5919:4:6","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$2613","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$2613","typeString":"contract DLE"}],"id":1278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5911:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1277,"name":"address","nodeType":"ElementaryTypeName","src":"5911:7:6","typeDescriptions":{}}},"id":1280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5911:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1281,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5938:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1282,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5945:17:6","memberName":"supportedChainIds","nodeType":"MemberAccess","referencedDeclaration":913,"src":"5938:24:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":1260,"name":"DLEInitialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1025,"src":"5656:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (string memory,string memory,string memory,string memory,uint256,uint256,string memory[] memory,uint256,address,uint256[] memory)"}},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5656:316:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1284,"nodeType":"EmitStatement","src":"5651:321:6"}]},"id":1286,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":1123,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4198:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1124,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4205:4:6","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":887,"src":"4198:11:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":1125,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"4211:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":1126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4218:6:6","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":889,"src":"4211:13:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":1127,"kind":"baseConstructorSpecifier","modifierName":{"id":1122,"name":"ERC20","nameLocations":["4192:5:6"],"nodeType":"IdentifierPath","referencedDeclaration":651,"src":"4192:5:6"},"nodeType":"ModifierInvocation","src":"4192:33:6"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1118,"mutability":"mutable","name":"config","nameLocation":"4146:6:6","nodeType":"VariableDeclaration","scope":1286,"src":"4129:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_memory_ptr","typeString":"struct DLE.DLEConfig"},"typeName":{"id":1117,"nodeType":"UserDefinedTypeName","pathNode":{"id":1116,"name":"DLEConfig","nameLocations":["4129:9:6"],"nodeType":"IdentifierPath","referencedDeclaration":914,"src":"4129:9:6"},"referencedDeclaration":914,"src":"4129:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$914_storage_ptr","typeString":"struct DLE.DLEConfig"}},"visibility":"internal"},{"constant":false,"id":1120,"mutability":"mutable","name":"_currentChainId","nameLocation":"4170:15:6","nodeType":"VariableDeclaration","scope":1286,"src":"4162:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1119,"name":"uint256","nodeType":"ElementaryTypeName","src":"4162:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4119:72:6"},"returnParameters":{"id":1128,"nodeType":"ParameterList","parameters":[],"src":"4226:0:6"},"scope":2613,"src":"4108:1871:6","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1404,"nodeType":"Block","src":"6609:842:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1302,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6637:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6641:6:6","memberName":"sender","nodeType":"MemberAccess","src":"6637:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1301,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"6627:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6627:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6651:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6627:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f73616c","id":1307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6654:37:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""},"value":"Must hold tokens to create proposal"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2e6c5dda7c2ec2a91237927bcea1a227aaeb0a0dcd7bb09f5f8b66e3fd42c53","typeString":"literal_string \"Must hold tokens to create proposal\""}],"id":1300,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6619:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6619:73:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1309,"nodeType":"ExpressionStatement","src":"6619:73:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1311,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1291,"src":"6710:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6722:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6710:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4475726174696f6e206d75737420626520706f736974697665","id":1314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6725:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""},"value":"Duration must be positive"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""}],"id":1310,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6702:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6702:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1316,"nodeType":"ExpressionStatement","src":"6702:51:6"},{"expression":{"arguments":[{"baseExpression":{"id":1318,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"6771:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1320,"indexExpression":{"id":1319,"name":"_governanceChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"6787:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6771:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6808:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1317,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6763:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6763:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1323,"nodeType":"ExpressionStatement","src":"6763:67:6"},{"expression":{"arguments":[{"arguments":[{"id":1326,"name":"_governanceChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"6869:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1325,"name":"checkChainConnection","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"6848:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":1327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6848:40:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420617661696c61626c65","id":1328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6890:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d761b3d00f67c3638fc7145121be7a34feb3cfe2982cb2e73645fa1389c9e513","typeString":"literal_string \"Chain not available\""},"value":"Chain not available"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d761b3d00f67c3638fc7145121be7a34feb3cfe2982cb2e73645fa1389c9e513","typeString":"literal_string \"Chain not available\""}],"id":1324,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6840:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6840:72:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1330,"nodeType":"ExpressionStatement","src":"6840:72:6"},{"assignments":[1332],"declarations":[{"constant":false,"id":1332,"mutability":"mutable","name":"proposalId","nameLocation":"6931:10:6","nodeType":"VariableDeclaration","scope":1404,"src":"6923:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1331,"name":"uint256","nodeType":"ElementaryTypeName","src":"6923:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1335,"initialValue":{"id":1334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"6944:17:6","subExpression":{"id":1333,"name":"proposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":967,"src":"6944:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6923:38:6"},{"assignments":[1338],"declarations":[{"constant":false,"id":1338,"mutability":"mutable","name":"proposal","nameLocation":"6988:8:6","nodeType":"VariableDeclaration","scope":1404,"src":"6971:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1337,"nodeType":"UserDefinedTypeName","pathNode":{"id":1336,"name":"Proposal","nameLocations":["6971:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"6971:8:6"},"referencedDeclaration":939,"src":"6971:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1342,"initialValue":{"baseExpression":{"id":1339,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"6999:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1341,"indexExpression":{"id":1340,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7009:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6999:21:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6971:49:6"},{"expression":{"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1343,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7039:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7048:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"7039:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1346,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7053:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7039:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1348,"nodeType":"ExpressionStatement","src":"7039:24:6"},{"expression":{"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1349,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7073:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7082:11:6","memberName":"description","nodeType":"MemberAccess","referencedDeclaration":918,"src":"7073:20:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1352,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"7096:12:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"7073:35:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1354,"nodeType":"ExpressionStatement","src":"7073:35:6"},{"expression":{"id":1359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1355,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7118:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1357,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7127:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"7118:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7138:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7118:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1360,"nodeType":"ExpressionStatement","src":"7118:21:6"},{"expression":{"id":1365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1361,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7149:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7158:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"7149:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7173:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7149:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1366,"nodeType":"ExpressionStatement","src":"7149:25:6"},{"expression":{"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1367,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7184:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7193:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"7184:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7204:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"7184:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1372,"nodeType":"ExpressionStatement","src":"7184:25:6"},{"expression":{"id":1380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1373,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7219:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7228:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"7219:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1376,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7239:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7245:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"7239:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1378,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1291,"src":"7257:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7239:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7219:47:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1381,"nodeType":"ExpressionStatement","src":"7219:47:6"},{"expression":{"id":1387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1382,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7276:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1384,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7285:9:6","memberName":"initiator","nodeType":"MemberAccess","referencedDeclaration":928,"src":"7276:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1385,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7297:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7301:6:6","memberName":"sender","nodeType":"MemberAccess","src":"7297:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7276:31:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1388,"nodeType":"ExpressionStatement","src":"7276:31:6"},{"expression":{"id":1393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1389,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"7317:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1391,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7326:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"7317:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1392,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1293,"src":"7338:10:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"7317:31:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}},"id":1394,"nodeType":"ExpressionStatement","src":"7317:31:6"},{"eventCall":{"arguments":[{"id":1396,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7380:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1397,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7392:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7396:6:6","memberName":"sender","nodeType":"MemberAccess","src":"7392:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1399,"name":"_description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"7404:12:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1395,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"7364:15:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,string memory)"}},"id":1400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7364:53:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1401,"nodeType":"EmitStatement","src":"7359:58:6"},{"expression":{"id":1402,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1332,"src":"7434:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1299,"id":1403,"nodeType":"Return","src":"7427:17:6"}]},"documentation":{"id":1287,"nodeType":"StructuredDocumentation","src":"5985:429:6","text":" @dev Создать предложение с выбором цепочки для кворума\n @param _description Описание предложения\n @param _duration Длительность голосования в секундах\n @param _operation Операция для исполнения\n @param _governanceChainId ID цепочки для сбора голосов"},"functionSelector":"b3594510","id":1405,"implemented":true,"kind":"function","modifiers":[],"name":"createProposal","nameLocation":"6428:14:6","nodeType":"FunctionDefinition","parameters":{"id":1296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1289,"mutability":"mutable","name":"_description","nameLocation":"6466:12:6","nodeType":"VariableDeclaration","scope":1405,"src":"6452:26:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1288,"name":"string","nodeType":"ElementaryTypeName","src":"6452:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1291,"mutability":"mutable","name":"_duration","nameLocation":"6497:9:6","nodeType":"VariableDeclaration","scope":1405,"src":"6489:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1290,"name":"uint256","nodeType":"ElementaryTypeName","src":"6489:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1293,"mutability":"mutable","name":"_operation","nameLocation":"6529:10:6","nodeType":"VariableDeclaration","scope":1405,"src":"6516:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1292,"name":"bytes","nodeType":"ElementaryTypeName","src":"6516:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1295,"mutability":"mutable","name":"_governanceChainId","nameLocation":"6557:18:6","nodeType":"VariableDeclaration","scope":1405,"src":"6549:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1294,"name":"uint256","nodeType":"ElementaryTypeName","src":"6549:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6442:139:6"},"returnParameters":{"id":1299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1405,"src":"6600:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1297,"name":"uint256","nodeType":"ElementaryTypeName","src":"6600:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6599:9:6"},"scope":2613,"src":"6419:1032:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1506,"nodeType":"Block","src":"7723:731:6","statements":[{"assignments":[1417],"declarations":[{"constant":false,"id":1417,"mutability":"mutable","name":"proposal","nameLocation":"7750:8:6","nodeType":"VariableDeclaration","scope":1506,"src":"7733:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1416,"nodeType":"UserDefinedTypeName","pathNode":{"id":1415,"name":"Proposal","nameLocations":["7733:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"7733:8:6"},"referencedDeclaration":939,"src":"7733:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1421,"initialValue":{"baseExpression":{"id":1418,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"7761:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1420,"indexExpression":{"id":1419,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"7771:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7761:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"7733:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1423,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7801:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7810:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"7801:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1425,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"7816:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7829:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1422,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7793:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7793:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1429,"nodeType":"ExpressionStatement","src":"7793:62:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1431,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7873:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7879:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"7873:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1433,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7891:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1434,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"7891:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7873:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"566f74696e6720656e646564","id":1436,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7910:14:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_211d0608ef50debe6357d9eaeecace048d209b7b495f49840d398b4315c37db4","typeString":"literal_string \"Voting ended\""},"value":"Voting ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_211d0608ef50debe6357d9eaeecace048d209b7b495f49840d398b4315c37db4","typeString":"literal_string \"Voting ended\""}],"id":1430,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7865:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1438,"nodeType":"ExpressionStatement","src":"7865:60:6"},{"expression":{"arguments":[{"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7943:18:6","subExpression":{"expression":{"id":1440,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"7944:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1441,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7953:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"7944:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":1443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7963:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":1439,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7935:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7935:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1445,"nodeType":"ExpressionStatement","src":"7935:56:6"},{"expression":{"arguments":[{"id":1452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8009:30:6","subExpression":{"baseExpression":{"expression":{"id":1447,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8010:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1448,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8019:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":934,"src":"8010:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1451,"indexExpression":{"expression":{"id":1449,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8028:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8032:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8028:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8010:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c726561647920766f746564","id":1453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8041:15:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_512fc59044d4f0722f9346c450973ffe8aac7aa1142e536739987018593c53b6","typeString":"literal_string \"Already voted\""},"value":"Already voted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_512fc59044d4f0722f9346c450973ffe8aac7aa1142e536739987018593c53b6","typeString":"literal_string \"Already voted\""}],"id":1446,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8001:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1455,"nodeType":"ExpressionStatement","src":"8001:56:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1458,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8085:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8089:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8085:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1457,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"8075:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8075:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8099:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8075:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f20766f7465","id":1463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8102:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_824133654506f10a4f01c9f90ea8c64e0c5603376bd2f191fdab4c36e943ddd9","typeString":"literal_string \"No tokens to vote\""},"value":"No tokens to vote"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_824133654506f10a4f01c9f90ea8c64e0c5603376bd2f191fdab4c36e943ddd9","typeString":"literal_string \"No tokens to vote\""}],"id":1456,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8067:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8067:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1465,"nodeType":"ExpressionStatement","src":"8067:55:6"},{"assignments":[1467],"declarations":[{"constant":false,"id":1467,"mutability":"mutable","name":"votingPower","nameLocation":"8141:11:6","nodeType":"VariableDeclaration","scope":1506,"src":"8133:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1466,"name":"uint256","nodeType":"ElementaryTypeName","src":"8133:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1472,"initialValue":{"arguments":[{"expression":{"id":1469,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8165:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8169:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8165:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1468,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"8155:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8155:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8133:43:6"},{"expression":{"id":1480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1473,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8186:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1477,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8195:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":934,"src":"8186:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1478,"indexExpression":{"expression":{"id":1475,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8204:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8208:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8204:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8186:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8218:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"8186:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1481,"nodeType":"ExpressionStatement","src":"8186:36:6"},{"condition":{"id":1482,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"8237:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1496,"nodeType":"Block","src":"8310:61:6","statements":[{"expression":{"id":1494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1490,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8324:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1492,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8333:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"8324:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1493,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8349:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8324:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1495,"nodeType":"ExpressionStatement","src":"8324:36:6"}]},"id":1497,"nodeType":"IfStatement","src":"8233:138:6","trueBody":{"id":1489,"nodeType":"Block","src":"8247:57:6","statements":[{"expression":{"id":1487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1483,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8261:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1485,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8270:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"8261:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1486,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8282:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8261:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1488,"nodeType":"ExpressionStatement","src":"8261:32:6"}]}},{"eventCall":{"arguments":[{"id":1499,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1408,"src":"8400:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1500,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8413:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8417:6:6","memberName":"sender","nodeType":"MemberAccess","src":"8413:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1502,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"8425:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1503,"name":"votingPower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"8435:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1498,"name":"ProposalVoted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"8386:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (uint256,address,bool,uint256)"}},"id":1504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8386:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1505,"nodeType":"EmitStatement","src":"8381:66:6"}]},"documentation":{"id":1406,"nodeType":"StructuredDocumentation","src":"7457:189:6","text":" @dev Голосовать за предложение\n @param _proposalId ID предложения\n @param _support Поддержка предложения"},"functionSelector":"c9d27afe","id":1507,"implemented":true,"kind":"function","modifiers":[{"id":1413,"kind":"modifierInvocation","modifierName":{"id":1412,"name":"nonReentrant","nameLocations":["7710:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":818,"src":"7710:12:6"},"nodeType":"ModifierInvocation","src":"7710:12:6"}],"name":"vote","nameLocation":"7660:4:6","nodeType":"FunctionDefinition","parameters":{"id":1411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1408,"mutability":"mutable","name":"_proposalId","nameLocation":"7673:11:6","nodeType":"VariableDeclaration","scope":1507,"src":"7665:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1407,"name":"uint256","nodeType":"ElementaryTypeName","src":"7665:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1410,"mutability":"mutable","name":"_support","nameLocation":"7691:8:6","nodeType":"VariableDeclaration","scope":1507,"src":"7686:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1409,"name":"bool","nodeType":"ElementaryTypeName","src":"7686:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7664:36:6"},"returnParameters":{"id":1414,"nodeType":"ParameterList","parameters":[],"src":"7723:0:6"},"scope":2613,"src":"7651:803:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1578,"nodeType":"Block","src":"8994:733:6","statements":[{"assignments":[1523],"declarations":[{"constant":false,"id":1523,"mutability":"mutable","name":"proposal","nameLocation":"9021:8:6","nodeType":"VariableDeclaration","scope":1578,"src":"9004:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1522,"nodeType":"UserDefinedTypeName","pathNode":{"id":1521,"name":"Proposal","nameLocations":["9004:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"9004:8:6"},"referencedDeclaration":939,"src":"9004:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1527,"initialValue":{"baseExpression":{"id":1524,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"9032:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1526,"indexExpression":{"id":1525,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9042:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9032:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9004:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1529,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9072:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9081:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"9072:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1531,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9087:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9072:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9100:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1528,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9064:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9064:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1535,"nodeType":"ExpressionStatement","src":"9064:62:6"},{"expression":{"arguments":[{"baseExpression":{"id":1537,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"9144:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1539,"indexExpression":{"id":1538,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9160:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9144:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9175:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1536,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9136:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9136:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1542,"nodeType":"ExpressionStatement","src":"9136:61:6"},{"expression":{"arguments":[{"id":1548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9215:39:6","subExpression":{"baseExpression":{"expression":{"id":1544,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9216:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1545,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9225:15:6","memberName":"chainVoteSynced","nodeType":"MemberAccess","referencedDeclaration":938,"src":"9216:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1547,"indexExpression":{"id":1546,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9241:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9216:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c72656164792073796e636564","id":1549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9256:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""},"value":"Already synced"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""}],"id":1543,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9207:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9207:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1551,"nodeType":"ExpressionStatement","src":"9207:66:6"},{"expression":{"id":1556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1552,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9510:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9519:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"9510:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1555,"name":"_forVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1514,"src":"9531:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9510:30:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1557,"nodeType":"ExpressionStatement","src":"9510:30:6"},{"expression":{"id":1562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1558,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9550:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1560,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9559:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"9550:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1561,"name":"_againstVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"9575:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9550:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1563,"nodeType":"ExpressionStatement","src":"9550:38:6"},{"expression":{"id":1570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1564,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1523,"src":"9598:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1567,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9607:15:6","memberName":"chainVoteSynced","nodeType":"MemberAccess","referencedDeclaration":938,"src":"9598:24:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1568,"indexExpression":{"id":1566,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9623:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9598:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9639:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9598:45:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1571,"nodeType":"ExpressionStatement","src":"9598:45:6"},{"eventCall":{"arguments":[{"id":1573,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"9678:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1574,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"9691:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1575,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"9705:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1572,"name":"CrossChainVoteSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"9659:18:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":1576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9659:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1577,"nodeType":"EmitStatement","src":"9654:66:6"}]},"documentation":{"id":1508,"nodeType":"StructuredDocumentation","src":"8460:335:6","text":" @dev Синхронизировать голос из другой цепочки\n @param _proposalId ID предложения\n @param _fromChainId ID цепочки откуда синхронизируем\n @param _forVotes Голоса за\n @param _againstVotes Голоса против"},"functionSelector":"456d10c1","id":1579,"implemented":true,"kind":"function","modifiers":[],"name":"syncVoteFromChain","nameLocation":"8809:17:6","nodeType":"FunctionDefinition","parameters":{"id":1519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1510,"mutability":"mutable","name":"_proposalId","nameLocation":"8844:11:6","nodeType":"VariableDeclaration","scope":1579,"src":"8836:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1509,"name":"uint256","nodeType":"ElementaryTypeName","src":"8836:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1512,"mutability":"mutable","name":"_fromChainId","nameLocation":"8873:12:6","nodeType":"VariableDeclaration","scope":1579,"src":"8865:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1511,"name":"uint256","nodeType":"ElementaryTypeName","src":"8865:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1514,"mutability":"mutable","name":"_forVotes","nameLocation":"8903:9:6","nodeType":"VariableDeclaration","scope":1579,"src":"8895:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1513,"name":"uint256","nodeType":"ElementaryTypeName","src":"8895:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1516,"mutability":"mutable","name":"_againstVotes","nameLocation":"8930:13:6","nodeType":"VariableDeclaration","scope":1579,"src":"8922:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1515,"name":"uint256","nodeType":"ElementaryTypeName","src":"8922:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1518,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1579,"src":"8953:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1517,"name":"bytes","nodeType":"ElementaryTypeName","src":"8953:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8826:158:6"},"returnParameters":{"id":1520,"nodeType":"ParameterList","parameters":[],"src":"8994:0:6"},"scope":2613,"src":"8800:927:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1642,"nodeType":"Block","src":"10107:476:6","statements":[{"assignments":[1591],"declarations":[{"constant":false,"id":1591,"mutability":"mutable","name":"proposal","nameLocation":"10134:8:6","nodeType":"VariableDeclaration","scope":1642,"src":"10117:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1590,"nodeType":"UserDefinedTypeName","pathNode":{"id":1589,"name":"Proposal","nameLocations":["10117:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"10117:8:6"},"referencedDeclaration":939,"src":"10117:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1595,"initialValue":{"baseExpression":{"id":1592,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"10145:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1594,"indexExpression":{"id":1593,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10155:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10145:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10117:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1597,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10185:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1598,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10194:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"10185:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1599,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10200:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10185:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10213:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1596,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10177:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10177:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1603,"nodeType":"ExpressionStatement","src":"10177:62:6"},{"assignments":[1605],"declarations":[{"constant":false,"id":1605,"mutability":"mutable","name":"totalVotes","nameLocation":"10258:10:6","nodeType":"VariableDeclaration","scope":1642,"src":"10250:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1604,"name":"uint256","nodeType":"ElementaryTypeName","src":"10250:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1611,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1606,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10271:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10280:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"10271:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1608,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10291:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10300:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"10291:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10271:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10250:62:6"},{"assignments":[1613],"declarations":[{"constant":false,"id":1613,"mutability":"mutable","name":"quorumRequired","nameLocation":"10330:14:6","nodeType":"VariableDeclaration","scope":1642,"src":"10322:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1612,"name":"uint256","nodeType":"ElementaryTypeName","src":"10322:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1621,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1614,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":224,"src":"10348:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10348:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1616,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"10364:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10348:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1618,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10347:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":1619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10384:3:6","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"10347:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10322:65:6"},{"expression":{"id":1626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1622,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10406:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1623,"name":"totalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"10422:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1624,"name":"quorumRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"10436:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10422:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10406:44:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1627,"nodeType":"ExpressionStatement","src":"10406:44:6"},{"expression":{"id":1636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1628,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"10460:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1629,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10469:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1630,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10486:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1631,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10495:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":920,"src":"10486:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":1632,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"10506:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1633,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10515:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":922,"src":"10506:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10486:41:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10469:58:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10460:67:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1637,"nodeType":"ExpressionStatement","src":"10460:67:6"},{"expression":{"components":[{"id":1638,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"10554:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1639,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"10562:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1640,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10553:23:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"functionReturnParameters":1588,"id":1641,"nodeType":"Return","src":"10546:30:6"}]},"documentation":{"id":1580,"nodeType":"StructuredDocumentation","src":"9733:265:6","text":" @dev Проверить результат предложения\n @param _proposalId ID предложения\n @return passed Прошло ли предложение\n @return quorumReached Достигнут ли кворум"},"functionSelector":"7e5a9b47","id":1643,"implemented":true,"kind":"function","modifiers":[],"name":"checkProposalResult","nameLocation":"10012:19:6","nodeType":"FunctionDefinition","parameters":{"id":1583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1582,"mutability":"mutable","name":"_proposalId","nameLocation":"10040:11:6","nodeType":"VariableDeclaration","scope":1643,"src":"10032:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1581,"name":"uint256","nodeType":"ElementaryTypeName","src":"10032:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10031:21:6"},"returnParameters":{"id":1588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1585,"mutability":"mutable","name":"passed","nameLocation":"10079:6:6","nodeType":"VariableDeclaration","scope":1643,"src":"10074:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1584,"name":"bool","nodeType":"ElementaryTypeName","src":"10074:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1587,"mutability":"mutable","name":"quorumReached","nameLocation":"10092:13:6","nodeType":"VariableDeclaration","scope":1643,"src":"10087:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1586,"name":"bool","nodeType":"ElementaryTypeName","src":"10087:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10073:33:6"},"scope":2613,"src":"10003:580:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":1712,"nodeType":"Block","src":"10766:635:6","statements":[{"assignments":[1651],"declarations":[{"constant":false,"id":1651,"mutability":"mutable","name":"proposal","nameLocation":"10793:8:6","nodeType":"VariableDeclaration","scope":1712,"src":"10776:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":1650,"nodeType":"UserDefinedTypeName","pathNode":{"id":1649,"name":"Proposal","nameLocations":["10776:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"10776:8:6"},"referencedDeclaration":939,"src":"10776:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":1655,"initialValue":{"baseExpression":{"id":1652,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"10804:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":1654,"indexExpression":{"id":1653,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"10814:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10804:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10776:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1657,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"10844:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1658,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10853:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"10844:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1659,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"10859:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10844:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":1661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10872:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":1656,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10836:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10836:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1663,"nodeType":"ExpressionStatement","src":"10836:62:6"},{"expression":{"arguments":[{"id":1667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"10916:18:6","subExpression":{"expression":{"id":1665,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"10917:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1666,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10926:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"10917:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":1668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10936:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":1664,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10908:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10908:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1670,"nodeType":"ExpressionStatement","src":"10908:56:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1672,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10982:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10988:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"10982:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":1674,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11001:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1675,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11010:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":926,"src":"11001:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10982:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"566f74696e67206e6f7420656e646564","id":1677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11020:18:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_fa3afa53d79e86c3f6a23b414e9eaabf98604d6fc663aa1da275377424956dc3","typeString":"literal_string \"Voting not ended\""},"value":"Voting not ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fa3afa53d79e86c3f6a23b414e9eaabf98604d6fc663aa1da275377424956dc3","typeString":"literal_string \"Voting not ended\""}],"id":1671,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10974:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10974:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1679,"nodeType":"ExpressionStatement","src":"10974:65:6"},{"assignments":[1681,1683],"declarations":[{"constant":false,"id":1681,"mutability":"mutable","name":"passed","nameLocation":"11056:6:6","nodeType":"VariableDeclaration","scope":1712,"src":"11051:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1680,"name":"bool","nodeType":"ElementaryTypeName","src":"11051:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1683,"mutability":"mutable","name":"quorumReached","nameLocation":"11069:13:6","nodeType":"VariableDeclaration","scope":1712,"src":"11064:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1682,"name":"bool","nodeType":"ElementaryTypeName","src":"11064:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1687,"initialValue":{"arguments":[{"id":1685,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"11106:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1684,"name":"checkProposalResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1643,"src":"11086:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$_t_bool_$","typeString":"function (uint256) view returns (bool,bool)"}},"id":1686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11086:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"11050:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1689,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1681,"src":"11136:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":1690,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1683,"src":"11146:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11136:23:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c206e6f7420706173736564","id":1692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11161:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8789ac58780df0d349b543986ff0576f2825fbf77f8dd377739331d82041c18e","typeString":"literal_string \"Proposal not passed\""},"value":"Proposal not passed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8789ac58780df0d349b543986ff0576f2825fbf77f8dd377739331d82041c18e","typeString":"literal_string \"Proposal not passed\""}],"id":1688,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11128:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11128:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1694,"nodeType":"ExpressionStatement","src":"11128:55:6"},{"expression":{"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1695,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11194:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1697,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11203:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":924,"src":"11194:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11214:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"11194:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1700,"nodeType":"ExpressionStatement","src":"11194:24:6"},{"expression":{"arguments":[{"expression":{"id":1702,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11302:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1703,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11311:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"11302:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":1701,"name":"_executeOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2457,"src":"11284:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory)"}},"id":1704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11284:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1705,"nodeType":"ExpressionStatement","src":"11284:37:6"},{"eventCall":{"arguments":[{"id":1707,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"11362:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1708,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1651,"src":"11375:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":1709,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11384:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"11375:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":1706,"name":"ProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1057,"src":"11345:16:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (uint256,bytes memory)"}},"id":1710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11345:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1711,"nodeType":"EmitStatement","src":"11340:54:6"}]},"documentation":{"id":1644,"nodeType":"StructuredDocumentation","src":"10589:117:6","text":" @dev Исполнить предложение\n @param _proposalId ID предложения"},"functionSelector":"0d61b519","id":1713,"implemented":true,"kind":"function","modifiers":[],"name":"executeProposal","nameLocation":"10720:15:6","nodeType":"FunctionDefinition","parameters":{"id":1647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1646,"mutability":"mutable","name":"_proposalId","nameLocation":"10744:11:6","nodeType":"VariableDeclaration","scope":1713,"src":"10736:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1645,"name":"uint256","nodeType":"ElementaryTypeName","src":"10736:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10735:21:6"},"returnParameters":{"id":1648,"nodeType":"ParameterList","parameters":[],"src":"10766:0:6"},"scope":2613,"src":"10711:690:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1801,"nodeType":"Block","src":"11749:663:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1725,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"11777:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11781:6:6","memberName":"sender","nodeType":"MemberAccess","src":"11777:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1724,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"11767:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11767:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11791:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11767:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f20637265617465206f7065726174696f6e","id":1730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11794:38:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b4c6044429574409cde35868815ebf07dd07f140f75d3558ab1494a2cd4af78a","typeString":"literal_string \"Must hold tokens to create operation\""},"value":"Must hold tokens to create operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b4c6044429574409cde35868815ebf07dd07f140f75d3558ab1494a2cd4af78a","typeString":"literal_string \"Must hold tokens to create operation\""}],"id":1723,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11759:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11759:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1732,"nodeType":"ExpressionStatement","src":"11759:74:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1734,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"11851:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11863:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11851:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4475726174696f6e206d75737420626520706f736974697665","id":1737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11866:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""},"value":"Duration must be positive"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e2db737b4f72d51e5d9739ee51f563e55d139cf69c2c66e37332edb20f949e00","typeString":"literal_string \"Duration must be positive\""}],"id":1733,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11843:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11843:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1739,"nodeType":"ExpressionStatement","src":"11843:51:6"},{"assignments":[1741],"declarations":[{"constant":false,"id":1741,"mutability":"mutable","name":"operationId","nameLocation":"11913:11:6","nodeType":"VariableDeclaration","scope":1801,"src":"11905:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1740,"name":"uint256","nodeType":"ElementaryTypeName","src":"11905:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1744,"initialValue":{"id":1743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"11927:17:6","subExpression":{"id":1742,"name":"multiSigCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"11927:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11905:39:6"},{"assignments":[1747],"declarations":[{"constant":false,"id":1747,"mutability":"mutable","name":"operation","nameLocation":"11980:9:6","nodeType":"VariableDeclaration","scope":1801,"src":"11954:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1746,"nodeType":"UserDefinedTypeName","pathNode":{"id":1745,"name":"MultiSigOperation","nameLocations":["11954:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"11954:17:6"},"referencedDeclaration":960,"src":"11954:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1751,"initialValue":{"baseExpression":{"id":1748,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"11992:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1750,"indexExpression":{"id":1749,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12011:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11992:31:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"11954:69:6"},{"expression":{"id":1756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1752,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12042:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1754,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12052:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"12042:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1755,"name":"_operationHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1716,"src":"12068:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"12042:40:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1757,"nodeType":"ExpressionStatement","src":"12042:40:6"},{"expression":{"id":1762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1758,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12092:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1760,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12102:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"12092:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12118:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12092:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1763,"nodeType":"ExpressionStatement","src":"12092:27:6"},{"expression":{"id":1768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1764,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12129:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1766,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12139:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"12129:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12159:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12129:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1769,"nodeType":"ExpressionStatement","src":"12129:31:6"},{"expression":{"id":1774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1770,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12170:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1772,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12180:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"12170:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12191:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"12170:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1775,"nodeType":"ExpressionStatement","src":"12170:26:6"},{"expression":{"id":1783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1776,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12206:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1778,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12216:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"12206:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1779,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12227:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12233:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"12227:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1781,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"12245:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12227:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12206:48:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1784,"nodeType":"ExpressionStatement","src":"12206:48:6"},{"expression":{"id":1790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1785,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"12264:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1787,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12274:9:6","memberName":"initiator","nodeType":"MemberAccess","referencedDeclaration":951,"src":"12264:19:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1788,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12286:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12290:6:6","memberName":"sender","nodeType":"MemberAccess","src":"12286:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12264:32:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1791,"nodeType":"ExpressionStatement","src":"12264:32:6"},{"eventCall":{"arguments":[{"id":1793,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12337:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1794,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12350:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12354:6:6","memberName":"sender","nodeType":"MemberAccess","src":"12350:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1796,"name":"_operationHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1716,"src":"12362:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1792,"name":"MultiSigOperationCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1065,"src":"12312:24:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bytes32_$returns$__$","typeString":"function (uint256,address,bytes32)"}},"id":1797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12312:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1798,"nodeType":"EmitStatement","src":"12307:70:6"},{"expression":{"id":1799,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"12394:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1722,"id":1800,"nodeType":"Return","src":"12387:18:6"}]},"documentation":{"id":1714,"nodeType":"StructuredDocumentation","src":"11407:212:6","text":" @dev Создать мультиподпись операцию\n @param _operationHash Хеш операции\n @param _duration Длительность сбора подписей"},"functionSelector":"b00e0730","id":1802,"implemented":true,"kind":"function","modifiers":[],"name":"createMultiSigOperation","nameLocation":"11633:23:6","nodeType":"FunctionDefinition","parameters":{"id":1719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1716,"mutability":"mutable","name":"_operationHash","nameLocation":"11674:14:6","nodeType":"VariableDeclaration","scope":1802,"src":"11666:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1715,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11666:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1718,"mutability":"mutable","name":"_duration","nameLocation":"11706:9:6","nodeType":"VariableDeclaration","scope":1802,"src":"11698:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1717,"name":"uint256","nodeType":"ElementaryTypeName","src":"11698:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11656:65:6"},"returnParameters":{"id":1722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1721,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1802,"src":"11740:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1720,"name":"uint256","nodeType":"ElementaryTypeName","src":"11740:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11739:9:6"},"scope":2613,"src":"11624:788:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1906,"nodeType":"Block","src":"12705:798:6","statements":[{"assignments":[1814],"declarations":[{"constant":false,"id":1814,"mutability":"mutable","name":"operation","nameLocation":"12741:9:6","nodeType":"VariableDeclaration","scope":1906,"src":"12715:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1813,"nodeType":"UserDefinedTypeName","pathNode":{"id":1812,"name":"MultiSigOperation","nameLocations":["12715:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"12715:17:6"},"referencedDeclaration":960,"src":"12715:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1818,"initialValue":{"baseExpression":{"id":1815,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"12753:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1817,"indexExpression":{"id":1816,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1805,"src":"12772:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12753:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12715:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1820,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"12803:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1821,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12813:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"12803:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12838:1:6","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":1823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12830:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1822,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12830:7:6","typeDescriptions":{}}},"id":1825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12830:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"12803:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":1827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12842:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1819,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12795:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12795:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1829,"nodeType":"ExpressionStatement","src":"12795:74:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1831,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12887:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12893:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"12887:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1833,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"12905:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12915:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"12905:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12887:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5369676e696e6720656e646564","id":1836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12925:15:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_950f8cf6a836192653a57ac3dc657e6414282f8063b5c5cd97e12fa3582f7f0b","typeString":"literal_string \"Signing ended\""},"value":"Signing ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_950f8cf6a836192653a57ac3dc657e6414282f8063b5c5cd97e12fa3582f7f0b","typeString":"literal_string \"Signing ended\""}],"id":1830,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12879:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12879:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1838,"nodeType":"ExpressionStatement","src":"12879:62:6"},{"expression":{"arguments":[{"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12959:19:6","subExpression":{"expression":{"id":1840,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"12960:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12970:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"12960:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20616c7265616479206578656375746564","id":1843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12980:28:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""},"value":"Operation already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""}],"id":1839,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12951:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12951:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1845,"nodeType":"ExpressionStatement","src":"12951:58:6"},{"expression":{"arguments":[{"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13027:32:6","subExpression":{"baseExpression":{"expression":{"id":1847,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13028:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1848,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13038:9:6","memberName":"hasSigned","nodeType":"MemberAccess","referencedDeclaration":955,"src":"13028:19:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1851,"indexExpression":{"expression":{"id":1849,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13048:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13052:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13048:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13028:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479207369676e6564","id":1853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13061:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""},"value":"Already signed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_988ed7cc4955768d49d35b181a2bc2b0514174494b33f90da8e2fba3c967c228","typeString":"literal_string \"Already signed\""}],"id":1846,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13019:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13019:59:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1855,"nodeType":"ExpressionStatement","src":"13019:59:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1858,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13106:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13110:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13106:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1857,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"13096:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13096:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13120:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13096:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":1863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13123:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":1856,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13088:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13088:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1865,"nodeType":"ExpressionStatement","src":"13088:55:6"},{"assignments":[1867],"declarations":[{"constant":false,"id":1867,"mutability":"mutable","name":"signaturePower","nameLocation":"13162:14:6","nodeType":"VariableDeclaration","scope":1906,"src":"13154:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"13154:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1872,"initialValue":{"arguments":[{"expression":{"id":1869,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13189:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13193:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13189:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1868,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"13179:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13179:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13154:46:6"},{"expression":{"id":1880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1873,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13210:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1877,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13220:9:6","memberName":"hasSigned","nodeType":"MemberAccess","referencedDeclaration":955,"src":"13210:19:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1878,"indexExpression":{"expression":{"id":1875,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13230:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13234:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13230:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13210:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13244:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"13210:38:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1881,"nodeType":"ExpressionStatement","src":"13210:38:6"},{"condition":{"id":1882,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"13263:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1896,"nodeType":"Block","src":"13345:70:6","statements":[{"expression":{"id":1894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1890,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13359:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13369:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"13359:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1893,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13390:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13359:45:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1895,"nodeType":"ExpressionStatement","src":"13359:45:6"}]},"id":1897,"nodeType":"IfStatement","src":"13259:156:6","trueBody":{"id":1889,"nodeType":"Block","src":"13273:66:6","statements":[{"expression":{"id":1887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1883,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1814,"src":"13287:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1885,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13297:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"13287:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1886,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13314:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13287:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1888,"nodeType":"ExpressionStatement","src":"13287:41:6"}]}},{"eventCall":{"arguments":[{"id":1899,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1805,"src":"13445:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1900,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13459:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13463:6:6","memberName":"sender","nodeType":"MemberAccess","src":"13459:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1902,"name":"_support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"13471:8:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1903,"name":"signaturePower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"13481:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1898,"name":"MultiSigSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1075,"src":"13430:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (uint256,address,bool,uint256)"}},"id":1904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13430:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1905,"nodeType":"EmitStatement","src":"13425:71:6"}]},"documentation":{"id":1803,"nodeType":"StructuredDocumentation","src":"12418:192:6","text":" @dev Подписать мультиподпись операцию\n @param _operationId ID операции\n @param _support Поддержка операции"},"functionSelector":"ccd7a490","id":1907,"implemented":true,"kind":"function","modifiers":[{"id":1810,"kind":"modifierInvocation","modifierName":{"id":1809,"name":"nonReentrant","nameLocations":["12692:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":818,"src":"12692:12:6"},"nodeType":"ModifierInvocation","src":"12692:12:6"}],"name":"signMultiSigOperation","nameLocation":"12624:21:6","nodeType":"FunctionDefinition","parameters":{"id":1808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1805,"mutability":"mutable","name":"_operationId","nameLocation":"12654:12:6","nodeType":"VariableDeclaration","scope":1907,"src":"12646:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1804,"name":"uint256","nodeType":"ElementaryTypeName","src":"12646:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1807,"mutability":"mutable","name":"_support","nameLocation":"12673:8:6","nodeType":"VariableDeclaration","scope":1907,"src":"12668:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1806,"name":"bool","nodeType":"ElementaryTypeName","src":"12668:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12645:37:6"},"returnParameters":{"id":1811,"nodeType":"ParameterList","parameters":[],"src":"12705:0:6"},"scope":2613,"src":"12615:888:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1981,"nodeType":"Block","src":"14083:747:6","statements":[{"assignments":[1923],"declarations":[{"constant":false,"id":1923,"mutability":"mutable","name":"operation","nameLocation":"14119:9:6","nodeType":"VariableDeclaration","scope":1981,"src":"14093:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1922,"nodeType":"UserDefinedTypeName","pathNode":{"id":1921,"name":"MultiSigOperation","nameLocations":["14093:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"14093:17:6"},"referencedDeclaration":960,"src":"14093:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1927,"initialValue":{"baseExpression":{"id":1924,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"14131:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1926,"indexExpression":{"id":1925,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1910,"src":"14150:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14131:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"14093:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1929,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14181:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1930,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14191:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"14181:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14216:1:6","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":1932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14208:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1931,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14208:7:6","typeDescriptions":{}}},"id":1934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14208:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14181:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":1936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14220:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1928,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14173:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14173:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1938,"nodeType":"ExpressionStatement","src":"14173:74:6"},{"expression":{"arguments":[{"baseExpression":{"id":1940,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"14265:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1942,"indexExpression":{"id":1941,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14281:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14265:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":1943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14296:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":1939,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14257:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14257:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1945,"nodeType":"ExpressionStatement","src":"14257:61:6"},{"expression":{"arguments":[{"id":1951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14336:40:6","subExpression":{"baseExpression":{"expression":{"id":1947,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14337:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1948,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14347:15:6","memberName":"chainSignSynced","nodeType":"MemberAccess","referencedDeclaration":959,"src":"14337:25:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1950,"indexExpression":{"id":1949,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14363:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14337:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c72656164792073796e636564","id":1952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14378:16:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""},"value":"Already synced"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b44f06818508537cd862b43fa1b8a2de6a736ed2a90106d9e7e0441faa96a2c5","typeString":"literal_string \"Already synced\""}],"id":1946,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14328:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14328:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1954,"nodeType":"ExpressionStatement","src":"14328:67:6"},{"expression":{"id":1959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1955,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14585:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1957,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14595:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"14585:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1958,"name":"_forSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1914,"src":"14612:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14585:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1960,"nodeType":"ExpressionStatement","src":"14585:41:6"},{"expression":{"id":1965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1961,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14636:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1963,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14646:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"14636:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1964,"name":"_againstSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"14667:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14636:49:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1966,"nodeType":"ExpressionStatement","src":"14636:49:6"},{"expression":{"id":1973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1967,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"14695:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":1970,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14705:15:6","memberName":"chainSignSynced","nodeType":"MemberAccess","referencedDeclaration":959,"src":"14695:25:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":1971,"indexExpression":{"id":1969,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14721:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14695:39:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14737:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"14695:46:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1974,"nodeType":"ExpressionStatement","src":"14695:46:6"},{"eventCall":{"arguments":[{"id":1976,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1910,"src":"14780:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1977,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"14794:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1978,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"14808:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1975,"name":"CrossChainMultiSigSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"14757:22:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":1979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14757:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1980,"nodeType":"EmitStatement","src":"14752:71:6"}]},"documentation":{"id":1908,"nodeType":"StructuredDocumentation","src":"13509:360:6","text":" @dev Синхронизировать мультиподпись из другой цепочки\n @param _operationId ID операции\n @param _fromChainId ID цепочки откуда синхронизируем\n @param _forSignatures Подписи за\n @param _againstSignatures Подписи против"},"functionSelector":"2ee09598","id":1982,"implemented":true,"kind":"function","modifiers":[],"name":"syncMultiSigFromChain","nameLocation":"13883:21:6","nodeType":"FunctionDefinition","parameters":{"id":1919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1910,"mutability":"mutable","name":"_operationId","nameLocation":"13922:12:6","nodeType":"VariableDeclaration","scope":1982,"src":"13914:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1909,"name":"uint256","nodeType":"ElementaryTypeName","src":"13914:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1912,"mutability":"mutable","name":"_fromChainId","nameLocation":"13952:12:6","nodeType":"VariableDeclaration","scope":1982,"src":"13944:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1911,"name":"uint256","nodeType":"ElementaryTypeName","src":"13944:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1914,"mutability":"mutable","name":"_forSignatures","nameLocation":"13982:14:6","nodeType":"VariableDeclaration","scope":1982,"src":"13974:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1913,"name":"uint256","nodeType":"ElementaryTypeName","src":"13974:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1916,"mutability":"mutable","name":"_againstSignatures","nameLocation":"14014:18:6","nodeType":"VariableDeclaration","scope":1982,"src":"14006:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1915,"name":"uint256","nodeType":"ElementaryTypeName","src":"14006:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1918,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1982,"src":"14042:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1917,"name":"bytes","nodeType":"ElementaryTypeName","src":"14042:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"13904:169:6"},"returnParameters":{"id":1920,"nodeType":"ParameterList","parameters":[],"src":"14083:0:6"},"scope":2613,"src":"13874:956:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2048,"nodeType":"Block","src":"15204:542:6","statements":[{"assignments":[1994],"declarations":[{"constant":false,"id":1994,"mutability":"mutable","name":"operation","nameLocation":"15240:9:6","nodeType":"VariableDeclaration","scope":2048,"src":"15214:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":1993,"nodeType":"UserDefinedTypeName","pathNode":{"id":1992,"name":"MultiSigOperation","nameLocations":["15214:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"15214:17:6"},"referencedDeclaration":960,"src":"15214:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":1998,"initialValue":{"baseExpression":{"id":1995,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"15252:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":1997,"indexExpression":{"id":1996,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1985,"src":"15271:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15252:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"15214:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2000,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15302:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2001,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15312:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"15302:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15337:1:6","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":2003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15329:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2002,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15329:7:6","typeDescriptions":{}}},"id":2005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15329:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"15302:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":2007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15341:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":1999,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15294:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15294:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2009,"nodeType":"ExpressionStatement","src":"15294:74:6"},{"assignments":[2011],"declarations":[{"constant":false,"id":2011,"mutability":"mutable","name":"totalSignatures","nameLocation":"15387:15:6","nodeType":"VariableDeclaration","scope":2048,"src":"15379:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2010,"name":"uint256","nodeType":"ElementaryTypeName","src":"15379:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2017,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2012,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15405:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2013,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15415:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"15405:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2014,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15431:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2015,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15441:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"15431:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15405:53:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15379:79:6"},{"assignments":[2019],"declarations":[{"constant":false,"id":2019,"mutability":"mutable","name":"quorumRequired","nameLocation":"15476:14:6","nodeType":"VariableDeclaration","scope":2048,"src":"15468:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2018,"name":"uint256","nodeType":"ElementaryTypeName","src":"15468:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2027,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2020,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":224,"src":"15494:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15494:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2022,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":965,"src":"15510:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15494:32:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2024,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15493:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15530:3:6","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"15493:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15468:65:6"},{"expression":{"id":2032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2028,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15552:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2029,"name":"totalSignatures","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2011,"src":"15568:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2030,"name":"quorumRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2019,"src":"15587:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15568:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15552:49:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2033,"nodeType":"ExpressionStatement","src":"15552:49:6"},{"expression":{"id":2042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2034,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"15611:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2035,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15620:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2036,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15637:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15647:13:6","memberName":"forSignatures","nodeType":"MemberAccess","referencedDeclaration":943,"src":"15637:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":2038,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"15663:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15673:17:6","memberName":"againstSignatures","nodeType":"MemberAccess","referencedDeclaration":945,"src":"15663:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15637:53:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15620:70:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15611:79:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2043,"nodeType":"ExpressionStatement","src":"15611:79:6"},{"expression":{"components":[{"id":2044,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"15717:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2045,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"15725:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2046,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15716:23:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"functionReturnParameters":1991,"id":2047,"nodeType":"Return","src":"15709:30:6"}]},"documentation":{"id":1983,"nodeType":"StructuredDocumentation","src":"14836:258:6","text":" @dev Проверить результат мультиподписи\n @param _operationId ID операции\n @return passed Прошла ли операция\n @return quorumReached Достигнут ли кворум"},"functionSelector":"057b2074","id":2049,"implemented":true,"kind":"function","modifiers":[],"name":"checkMultiSigResult","nameLocation":"15108:19:6","nodeType":"FunctionDefinition","parameters":{"id":1986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1985,"mutability":"mutable","name":"_operationId","nameLocation":"15136:12:6","nodeType":"VariableDeclaration","scope":2049,"src":"15128:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1984,"name":"uint256","nodeType":"ElementaryTypeName","src":"15128:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15127:22:6"},"returnParameters":{"id":1991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1988,"mutability":"mutable","name":"passed","nameLocation":"15176:6:6","nodeType":"VariableDeclaration","scope":2049,"src":"15171:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1987,"name":"bool","nodeType":"ElementaryTypeName","src":"15171:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1990,"mutability":"mutable","name":"quorumReached","nameLocation":"15189:13:6","nodeType":"VariableDeclaration","scope":2049,"src":"15184:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1989,"name":"bool","nodeType":"ElementaryTypeName","src":"15184:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15170:33:6"},"scope":2613,"src":"15099:647:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2116,"nodeType":"Block","src":"15955:577:6","statements":[{"assignments":[2057],"declarations":[{"constant":false,"id":2057,"mutability":"mutable","name":"operation","nameLocation":"15991:9:6","nodeType":"VariableDeclaration","scope":2116,"src":"15965:35:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"},"typeName":{"id":2056,"nodeType":"UserDefinedTypeName","pathNode":{"id":2055,"name":"MultiSigOperation","nameLocations":["15965:17:6"],"nodeType":"IdentifierPath","referencedDeclaration":960,"src":"15965:17:6"},"referencedDeclaration":960,"src":"15965:17:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation"}},"visibility":"internal"}],"id":2061,"initialValue":{"baseExpression":{"id":2058,"name":"multiSigOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"16003:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_MultiSigOperation_$960_storage_$","typeString":"mapping(uint256 => struct DLE.MultiSigOperation storage ref)"}},"id":2060,"indexExpression":{"id":2059,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16022:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16003:32:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage","typeString":"struct DLE.MultiSigOperation storage ref"}},"nodeType":"VariableDeclarationStatement","src":"15965:70:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2063,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16053:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2064,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16063:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"16053:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16088:1:6","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":2066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16080:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2065,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16080:7:6","typeDescriptions":{}}},"id":2068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16080:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"16053:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20646f6573206e6f74206578697374","id":2070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16092:26:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""},"value":"Operation does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a88bda3553b9f58fdc0f5b8cacceb40b5f33a87ef6c0aa7807be75bb72f6e6d4","typeString":"literal_string \"Operation does not exist\""}],"id":2062,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16045:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16045:74:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2072,"nodeType":"ExpressionStatement","src":"16045:74:6"},{"expression":{"arguments":[{"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16137:19:6","subExpression":{"expression":{"id":2074,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16138:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2075,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16148:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"16138:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e20616c7265616479206578656375746564","id":2077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16158:28:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""},"value":"Operation already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d5564caec237b09b54a365c80dad399a0b91f87583021f6a1ecdbdaef10f306a","typeString":"literal_string \"Operation already executed\""}],"id":2073,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16129:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16129:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2079,"nodeType":"ExpressionStatement","src":"16129:58:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2081,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"16205:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16211:9:6","memberName":"timestamp","nodeType":"MemberAccess","src":"16205:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2083,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16224:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2084,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16234:8:6","memberName":"deadline","nodeType":"MemberAccess","referencedDeclaration":949,"src":"16224:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16205:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5369676e696e67206e6f7420656e646564","id":2086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16244:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c0c2359a9b356344627f350157767095abf42de074fcedb68d11fc108b96cd74","typeString":"literal_string \"Signing not ended\""},"value":"Signing not ended"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c0c2359a9b356344627f350157767095abf42de074fcedb68d11fc108b96cd74","typeString":"literal_string \"Signing not ended\""}],"id":2080,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16197:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16197:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2088,"nodeType":"ExpressionStatement","src":"16197:67:6"},{"assignments":[2090,2092],"declarations":[{"constant":false,"id":2090,"mutability":"mutable","name":"passed","nameLocation":"16281:6:6","nodeType":"VariableDeclaration","scope":2116,"src":"16276:11:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2089,"name":"bool","nodeType":"ElementaryTypeName","src":"16276:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2092,"mutability":"mutable","name":"quorumReached","nameLocation":"16294:13:6","nodeType":"VariableDeclaration","scope":2116,"src":"16289:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2091,"name":"bool","nodeType":"ElementaryTypeName","src":"16289:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2096,"initialValue":{"arguments":[{"id":2094,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16331:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2093,"name":"checkMultiSigResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2049,"src":"16311:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$_t_bool_$","typeString":"function (uint256) view returns (bool,bool)"}},"id":2095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16311:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"16275:69:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2098,"name":"passed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2090,"src":"16362:6:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":2099,"name":"quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2092,"src":"16372:13:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16362:23:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7065726174696f6e206e6f7420706173736564","id":2101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16387:22:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ddf475e14b5f6d3ed9adb8877fe9c76f990b431f369f905fc15026ec102ce36","typeString":"literal_string \"Operation not passed\""},"value":"Operation not passed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ddf475e14b5f6d3ed9adb8877fe9c76f990b431f369f905fc15026ec102ce36","typeString":"literal_string \"Operation not passed\""}],"id":2097,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16354:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16354:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2103,"nodeType":"ExpressionStatement","src":"16354:56:6"},{"expression":{"id":2108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2104,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16421:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2106,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16431:8:6","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":947,"src":"16421:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16442:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"16421:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2109,"nodeType":"ExpressionStatement","src":"16421:25:6"},{"eventCall":{"arguments":[{"id":2111,"name":"_operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"16487:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2112,"name":"operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"16501:9:6","typeDescriptions":{"typeIdentifier":"t_struct$_MultiSigOperation_$960_storage_ptr","typeString":"struct DLE.MultiSigOperation storage pointer"}},"id":2113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16511:13:6","memberName":"operationHash","nodeType":"MemberAccess","referencedDeclaration":941,"src":"16501:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2110,"name":"MultiSigExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"16470:16:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16470:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2115,"nodeType":"EmitStatement","src":"16465:60:6"}]},"documentation":{"id":2050,"nodeType":"StructuredDocumentation","src":"15752:133:6","text":" @dev Исполнить мультиподпись операцию\n @param _operationId ID операции"},"functionSelector":"893d692a","id":2117,"implemented":true,"kind":"function","modifiers":[],"name":"executeMultiSigOperation","nameLocation":"15899:24:6","nodeType":"FunctionDefinition","parameters":{"id":2053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2052,"mutability":"mutable","name":"_operationId","nameLocation":"15932:12:6","nodeType":"VariableDeclaration","scope":2117,"src":"15924:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2051,"name":"uint256","nodeType":"ElementaryTypeName","src":"15924:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15923:22:6"},"returnParameters":{"id":2054,"nodeType":"ParameterList","parameters":[],"src":"15955:0:6"},"scope":2613,"src":"15890:642:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2172,"nodeType":"Block","src":"16933:702:6","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2128,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"16951:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2130,"indexExpression":{"id":2129,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"16967:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16951:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436861696e206e6f7420737570706f72746564","id":2131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16982:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""},"value":"Chain not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ad923b2e364ce1aeaf4231bbcdfbcf3913f3afdc5e95d213d4d8bc5188fdf23","typeString":"literal_string \"Chain not supported\""}],"id":2127,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16943:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16943:61:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2133,"nodeType":"ExpressionStatement","src":"16943:61:6"},{"expression":{"arguments":[{"id":2138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17022:31:6","subExpression":{"baseExpression":{"id":2135,"name":"executedProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":997,"src":"17023:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2137,"indexExpression":{"id":2136,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17041:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17023:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479206578656375746564","id":2139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17055:18:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_58f47ea4e737df2d9cc4764db26c111751884cf0a1856aca9f4c66cadc811e1b","typeString":"literal_string \"Already executed\""},"value":"Already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_58f47ea4e737df2d9cc4764db26c111751884cf0a1856aca9f4c66cadc811e1b","typeString":"literal_string \"Already executed\""}],"id":2134,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17014:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17014:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2141,"nodeType":"ExpressionStatement","src":"17014:60:6"},{"expression":{"id":2146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2142,"name":"executedProposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":997,"src":"17264:17:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2144,"indexExpression":{"id":2143,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17282:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17264:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17297:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"17264:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2147,"nodeType":"ExpressionStatement","src":"17264:37:6"},{"assignments":[2150],"declarations":[{"constant":false,"id":2150,"mutability":"mutable","name":"proposal","nameLocation":"17410:8:6","nodeType":"VariableDeclaration","scope":2172,"src":"17393:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":2149,"nodeType":"UserDefinedTypeName","pathNode":{"id":2148,"name":"Proposal","nameLocations":["17393:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"17393:8:6"},"referencedDeclaration":939,"src":"17393:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":2154,"initialValue":{"baseExpression":{"id":2151,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"17421:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":2153,"indexExpression":{"id":2152,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17431:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17421:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17393:50:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2155,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"17457:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2156,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17466:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"17457:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2157,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17472:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17457:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2165,"nodeType":"IfStatement","src":"17453:94:6","trueBody":{"id":2164,"nodeType":"Block","src":"17485:62:6","statements":[{"expression":{"arguments":[{"expression":{"id":2160,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"17517:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2161,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17526:9:6","memberName":"operation","nodeType":"MemberAccess","referencedDeclaration":930,"src":"17517:18:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_storage","typeString":"bytes storage ref"}],"id":2159,"name":"_executeOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2457,"src":"17499:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory)"}},"id":2162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17499:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2163,"nodeType":"ExpressionStatement","src":"17499:37:6"}]}},{"eventCall":{"arguments":[{"id":2167,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2120,"src":"17586:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2168,"name":"_fromChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"17599:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2169,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"17613:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2166,"name":"CrossChainExecutionSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"17562:23:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":2170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17562:66:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2171,"nodeType":"EmitStatement","src":"17557:71:6"}]},"documentation":{"id":2118,"nodeType":"StructuredDocumentation","src":"16538:249:6","text":" @dev Синхронизировать исполнение из другой цепочки\n @param _proposalId ID предложения\n @param _fromChainId ID цепочки откуда синхронизируем"},"functionSelector":"044bc2bd","id":2173,"implemented":true,"kind":"function","modifiers":[],"name":"syncExecutionFromChain","nameLocation":"16801:22:6","nodeType":"FunctionDefinition","parameters":{"id":2125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2120,"mutability":"mutable","name":"_proposalId","nameLocation":"16841:11:6","nodeType":"VariableDeclaration","scope":2173,"src":"16833:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2119,"name":"uint256","nodeType":"ElementaryTypeName","src":"16833:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2122,"mutability":"mutable","name":"_fromChainId","nameLocation":"16870:12:6","nodeType":"VariableDeclaration","scope":2173,"src":"16862:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2121,"name":"uint256","nodeType":"ElementaryTypeName","src":"16862:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2124,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2173,"src":"16892:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2123,"name":"bytes","nodeType":"ElementaryTypeName","src":"16892:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16823:100:6"},"returnParameters":{"id":2126,"nodeType":"ParameterList","parameters":[],"src":"16933:0:6"},"scope":2613,"src":"16792:843:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2185,"nodeType":"Block","src":"17921:284:6","statements":[{"expression":{"baseExpression":{"id":2181,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"18173:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2183,"indexExpression":{"id":2182,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"18189:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18173:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2180,"id":2184,"nodeType":"Return","src":"18166:32:6"}]},"documentation":{"id":2174,"nodeType":"StructuredDocumentation","src":"17641:188:6","text":" @dev Проверить подключение к цепочке\n @param _chainId ID цепочки\n @return isAvailable Доступна ли цепочка"},"functionSelector":"4de184f6","id":2186,"implemented":true,"kind":"function","modifiers":[],"name":"checkChainConnection","nameLocation":"17843:20:6","nodeType":"FunctionDefinition","parameters":{"id":2177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2176,"mutability":"mutable","name":"_chainId","nameLocation":"17872:8:6","nodeType":"VariableDeclaration","scope":2186,"src":"17864:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2175,"name":"uint256","nodeType":"ElementaryTypeName","src":"17864:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17863:18:6"},"returnParameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"isAvailable","nameLocation":"17908:11:6","nodeType":"VariableDeclaration","scope":2186,"src":"17903:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2178,"name":"bool","nodeType":"ElementaryTypeName","src":"17903:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17902:18:6"},"scope":2613,"src":"17834:371:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2238,"nodeType":"Block","src":"18541:482:6","statements":[{"assignments":[2196],"declarations":[{"constant":false,"id":2196,"mutability":"mutable","name":"proposal","nameLocation":"18568:8:6","nodeType":"VariableDeclaration","scope":2238,"src":"18551:25:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":2195,"nodeType":"UserDefinedTypeName","pathNode":{"id":2194,"name":"Proposal","nameLocations":["18551:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":939,"src":"18551:8:6"},"referencedDeclaration":939,"src":"18551:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":2200,"initialValue":{"baseExpression":{"id":2197,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"18579:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$939_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":2199,"indexExpression":{"id":2198,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"18589:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18579:22:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18551:50:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2202,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"18619:8:6","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$939_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":2203,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18628:2:6","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":916,"src":"18619:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2204,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2189,"src":"18634:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18619:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20646f6573206e6f74206578697374","id":2206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18647:25:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""},"value":"Proposal does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8e62a544e5aebc4f7865ef71973090f3036faa05a5f7be3ea3605ab15dc232bf","typeString":"literal_string \"Proposal does not exist\""}],"id":2201,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"18611:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18611:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2208,"nodeType":"ExpressionStatement","src":"18611:62:6"},{"body":{"id":2234,"nodeType":"Block","src":"18828:159:6","statements":[{"assignments":[2221],"declarations":[{"constant":false,"id":2221,"mutability":"mutable","name":"chainId","nameLocation":"18850:7:6","nodeType":"VariableDeclaration","scope":2234,"src":"18842:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2220,"name":"uint256","nodeType":"ElementaryTypeName","src":"18842:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2225,"initialValue":{"arguments":[{"id":2223,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"18880:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2222,"name":"getSupportedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2342,"src":"18860:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18860:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18842:40:6"},{"condition":{"id":2229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18900:30:6","subExpression":{"arguments":[{"id":2227,"name":"chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2221,"src":"18922:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2226,"name":"checkChainConnection","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"18901:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18901:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2233,"nodeType":"IfStatement","src":"18896:81:6","trueBody":{"id":2232,"nodeType":"Block","src":"18932:45:6","statements":[{"expression":{"hexValue":"66616c7365","id":2230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"18957:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":2193,"id":2231,"nodeType":"Return","src":"18950:12:6"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2213,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"18793:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2214,"name":"getSupportedChainCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"18797:22:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":2215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18797:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18793:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2235,"initializationExpression":{"assignments":[2210],"declarations":[{"constant":false,"id":2210,"mutability":"mutable","name":"i","nameLocation":"18786:1:6","nodeType":"VariableDeclaration","scope":2235,"src":"18778:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2209,"name":"uint256","nodeType":"ElementaryTypeName","src":"18778:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2212,"initialValue":{"hexValue":"30","id":2211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18790:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18778:13:6"},"loopExpression":{"expression":{"id":2218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18823:3:6","subExpression":{"id":2217,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"18823:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2219,"nodeType":"ExpressionStatement","src":"18823:3:6"},"nodeType":"ForStatement","src":"18773:214:6"},{"expression":{"hexValue":"74727565","id":2236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19012:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2193,"id":2237,"nodeType":"Return","src":"19005:11:6"}]},"documentation":{"id":2187,"nodeType":"StructuredDocumentation","src":"18211:234:6","text":" @dev Проверить все подключения перед синхронизацией\n @param _proposalId ID предложения\n @return allChainsReady Готовы ли все цепочки"},"functionSelector":"e49a62e9","id":2239,"implemented":true,"kind":"function","modifiers":[],"name":"checkSyncReadiness","nameLocation":"18459:18:6","nodeType":"FunctionDefinition","parameters":{"id":2190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2189,"mutability":"mutable","name":"_proposalId","nameLocation":"18486:11:6","nodeType":"VariableDeclaration","scope":2239,"src":"18478:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2188,"name":"uint256","nodeType":"ElementaryTypeName","src":"18478:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18477:21:6"},"returnParameters":{"id":2193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2192,"mutability":"mutable","name":"allChainsReady","nameLocation":"18525:14:6","nodeType":"VariableDeclaration","scope":2239,"src":"18520:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2191,"name":"bool","nodeType":"ElementaryTypeName","src":"18520:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"18519:21:6"},"scope":2613,"src":"18450:573:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2280,"nodeType":"Block","src":"19237:400:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":2247,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19274:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2246,"name":"checkSyncReadiness","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"19255:18:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19255:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420616c6c20636861696e73207265616479","id":2249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19288:22:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_9ac91bcc9dd94a174980f450c5e56b966ea5d9e218d96b80a76095f437f6badf","typeString":"literal_string \"Not all chains ready\""},"value":"Not all chains ready"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9ac91bcc9dd94a174980f450c5e56b966ea5d9e218d96b80a76095f437f6badf","typeString":"literal_string \"Not all chains ready\""}],"id":2245,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19247:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19247:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2251,"nodeType":"ExpressionStatement","src":"19247:64:6"},{"body":{"id":2274,"nodeType":"Block","src":"19469:112:6","statements":[{"assignments":[2264],"declarations":[{"constant":false,"id":2264,"mutability":"mutable","name":"chainId","nameLocation":"19491:7:6","nodeType":"VariableDeclaration","scope":2274,"src":"19483:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2263,"name":"uint256","nodeType":"ElementaryTypeName","src":"19483:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2268,"initialValue":{"arguments":[{"id":2266,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19521:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2265,"name":"getSupportedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2342,"src":"19501:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19501:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19483:40:6"},{"expression":{"arguments":[{"id":2270,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19549:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2271,"name":"chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"19562:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2269,"name":"syncToChain","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2296,"src":"19537:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":2272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19537:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2273,"nodeType":"ExpressionStatement","src":"19537:33:6"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2256,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19434:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2257,"name":"getSupportedChainCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"19438:22:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":2258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19438:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19434:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2275,"initializationExpression":{"assignments":[2253],"declarations":[{"constant":false,"id":2253,"mutability":"mutable","name":"i","nameLocation":"19427:1:6","nodeType":"VariableDeclaration","scope":2275,"src":"19419:9:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2252,"name":"uint256","nodeType":"ElementaryTypeName","src":"19419:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2255,"initialValue":{"hexValue":"30","id":2254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19431:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"19419:13:6"},"loopExpression":{"expression":{"id":2261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"19464:3:6","subExpression":{"id":2260,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"19464:1:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2262,"nodeType":"ExpressionStatement","src":"19464:3:6"},"nodeType":"ForStatement","src":"19414:167:6"},{"eventCall":{"arguments":[{"id":2277,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"19618:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2276,"name":"SyncCompleted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2612,"src":"19604:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19604:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2279,"nodeType":"EmitStatement","src":"19599:31:6"}]},"documentation":{"id":2240,"nodeType":"StructuredDocumentation","src":"19029:148:6","text":" @dev Синхронизация только при 100% готовности\n @param _proposalId ID предложения"},"functionSelector":"7ce288ea","id":2281,"implemented":true,"kind":"function","modifiers":[],"name":"syncToAllChains","nameLocation":"19191:15:6","nodeType":"FunctionDefinition","parameters":{"id":2243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2242,"mutability":"mutable","name":"_proposalId","nameLocation":"19215:11:6","nodeType":"VariableDeclaration","scope":2281,"src":"19207:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2241,"name":"uint256","nodeType":"ElementaryTypeName","src":"19207:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19206:21:6"},"returnParameters":{"id":2244,"nodeType":"ParameterList","parameters":[],"src":"19237:0:6"},"scope":2613,"src":"19182:455:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2295,"nodeType":"Block","src":"19899:262:6","statements":[{"eventCall":{"arguments":[{"id":2290,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2284,"src":"20116:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2291,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"20129:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2292,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2286,"src":"20145:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2289,"name":"CrossChainExecutionSync","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"20092:23:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":2293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20092:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2294,"nodeType":"EmitStatement","src":"20087:67:6"}]},"documentation":{"id":2282,"nodeType":"StructuredDocumentation","src":"19643:182:6","text":" @dev Синхронизация в конкретную цепочку\n @param _proposalId ID предложения\n @param _chainId ID цепочки"},"id":2296,"implemented":true,"kind":"function","modifiers":[],"name":"syncToChain","nameLocation":"19839:11:6","nodeType":"FunctionDefinition","parameters":{"id":2287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2284,"mutability":"mutable","name":"_proposalId","nameLocation":"19859:11:6","nodeType":"VariableDeclaration","scope":2296,"src":"19851:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2283,"name":"uint256","nodeType":"ElementaryTypeName","src":"19851:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2286,"mutability":"mutable","name":"_chainId","nameLocation":"19880:8:6","nodeType":"VariableDeclaration","scope":2296,"src":"19872:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2285,"name":"uint256","nodeType":"ElementaryTypeName","src":"19872:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19850:39:6"},"returnParameters":{"id":2288,"nodeType":"ParameterList","parameters":[],"src":"19899:0:6"},"scope":2613,"src":"19830:331:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2304,"nodeType":"Block","src":"20341:251:6","statements":[{"expression":{"hexValue":"34","id":2302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20584:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"functionReturnParameters":2301,"id":2303,"nodeType":"Return","src":"20577:8:6"}]},"documentation":{"id":2297,"nodeType":"StructuredDocumentation","src":"20167:105:6","text":" @dev Получить количество поддерживаемых цепочек"},"functionSelector":"eced3dfb","id":2305,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedChainCount","nameLocation":"20286:22:6","nodeType":"FunctionDefinition","parameters":{"id":2298,"nodeType":"ParameterList","parameters":[],"src":"20308:2:6"},"returnParameters":{"id":2301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2305,"src":"20332:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2299,"name":"uint256","nodeType":"ElementaryTypeName","src":"20332:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20331:9:6"},"scope":2613,"src":"20277:315:6","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":2341,"nodeType":"Block","src":"20834:248:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2313,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"20848:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20858:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20848:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2318,"nodeType":"IfStatement","src":"20844:25:6","trueBody":{"expression":{"hexValue":"31","id":2316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20868:1:6","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":2312,"id":2317,"nodeType":"Return","src":"20861:8:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2319,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"20900:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20910:1:6","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20900:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2324,"nodeType":"IfStatement","src":"20896:27:6","trueBody":{"expression":{"hexValue":"313337","id":2322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20920:3:6","typeDescriptions":{"typeIdentifier":"t_rational_137_by_1","typeString":"int_const 137"},"value":"137"},"functionReturnParameters":2312,"id":2323,"nodeType":"Return","src":"20913:10:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2325,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"20951:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":2326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20961:1:6","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"20951:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2330,"nodeType":"IfStatement","src":"20947:26:6","trueBody":{"expression":{"hexValue":"3536","id":2328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20971:2:6","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},"functionReturnParameters":2312,"id":2329,"nodeType":"Return","src":"20964:9:6"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2331,"name":"_index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"20998:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"33","id":2332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21008:1:6","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"20998:11:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2336,"nodeType":"IfStatement","src":"20994:29:6","trueBody":{"expression":{"hexValue":"3432313631","id":2334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21018:5:6","typeDescriptions":{"typeIdentifier":"t_rational_42161_by_1","typeString":"int_const 42161"},"value":"42161"},"functionReturnParameters":2312,"id":2335,"nodeType":"Return","src":"21011:12:6"}},{"expression":{"arguments":[{"hexValue":"496e76616c696420636861696e20696e646578","id":2338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21053:21:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_51299dff4c796e1ac8ee8b9a472d4251ecba410abfcfdfff3c492d6f0f63bc13","typeString":"literal_string \"Invalid chain index\""},"value":"Invalid chain index"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_51299dff4c796e1ac8ee8b9a472d4251ecba410abfcfdfff3c492d6f0f63bc13","typeString":"literal_string \"Invalid chain index\""}],"id":2337,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"21046:6:6","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21046:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2340,"nodeType":"ExpressionStatement","src":"21046:29:6"}]},"documentation":{"id":2306,"nodeType":"StructuredDocumentation","src":"20598:156:6","text":" @dev Получить ID поддерживаемой цепочки по индексу\n @param _index Индекс цепочки"},"functionSelector":"9a49bdde","id":2342,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedChainId","nameLocation":"20768:19:6","nodeType":"FunctionDefinition","parameters":{"id":2309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2308,"mutability":"mutable","name":"_index","nameLocation":"20796:6:6","nodeType":"VariableDeclaration","scope":2342,"src":"20788:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2307,"name":"uint256","nodeType":"ElementaryTypeName","src":"20788:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20787:16:6"},"returnParameters":{"id":2312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2342,"src":"20825:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2310,"name":"uint256","nodeType":"ElementaryTypeName","src":"20825:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20824:9:6"},"scope":2613,"src":"20759:323:6","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":2456,"nodeType":"Block","src":"21283:1052:6","statements":[{"assignments":[2349,2351],"declarations":[{"constant":false,"id":2349,"mutability":"mutable","name":"selector","nameLocation":"21350:8:6","nodeType":"VariableDeclaration","scope":2456,"src":"21343:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2348,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21343:6:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":2351,"mutability":"mutable","name":"data","nameLocation":"21373:4:6","nodeType":"VariableDeclaration","scope":2456,"src":"21360:17:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2350,"name":"bytes","nodeType":"ElementaryTypeName","src":"21360:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2361,"initialValue":{"arguments":[{"id":2354,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2345,"src":"21392:10:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21405:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2355,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21405:6:6","typeDescriptions":{}}},{"id":2358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21413:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2357,"name":"bytes","nodeType":"ElementaryTypeName","src":"21413:5:6","typeDescriptions":{}}}],"id":2359,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21404:15:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_bytes4_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(bytes4),type(bytes storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_bytes4_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(bytes4),type(bytes storage pointer))"}],"expression":{"id":2352,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21381:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2353,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21385:6:6","memberName":"decode","nodeType":"MemberAccess","src":"21381:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21381:39:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes4_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes4,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"21342:78:6"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2362,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2349,"src":"21443:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"7472616e7366657228616464726573732c75696e7432353629","id":2366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21472:27:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a9059cbb2ab09eb219583f4a59a5d0623ade346d962bcd4e46b11da047c9049b","typeString":"literal_string \"transfer(address,uint256)\""},"value":"transfer(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_a9059cbb2ab09eb219583f4a59a5d0623ade346d962bcd4e46b11da047c9049b","typeString":"literal_string \"transfer(address,uint256)\""}],"id":2365,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21462:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21462:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2364,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21455:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2363,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21455:6:6","typeDescriptions":{}}},"id":2368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21455:46:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"21443:58:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2392,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2349,"src":"21716:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"6d696e7428616464726573732c75696e7432353629","id":2396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21745:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_40c10f19c047ae7dfa66d6312b683d2ea3dfbcb4159e96b967c5f4b0a86f2842","typeString":"literal_string \"mint(address,uint256)\""},"value":"mint(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_40c10f19c047ae7dfa66d6312b683d2ea3dfbcb4159e96b967c5f4b0a86f2842","typeString":"literal_string \"mint(address,uint256)\""}],"id":2395,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21735:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21735:34:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21728:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2393,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21728:6:6","typeDescriptions":{}}},"id":2398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21728:42:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"21716:54:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2420,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2349,"src":"21969:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"6275726e28616464726573732c75696e7432353629","id":2424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21998:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_9dc29fac0ba6d4fc521c69c2b0c636d612e3343bc39ed934429b8876b0d12cba","typeString":"literal_string \"burn(address,uint256)\""},"value":"burn(address,uint256)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9dc29fac0ba6d4fc521c69c2b0c636d612e3343bc39ed934429b8876b0d12cba","typeString":"literal_string \"burn(address,uint256)\""}],"id":2423,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21988:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21988:34:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2422,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21981:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2421,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21981:6:6","typeDescriptions":{}}},"id":2426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21981:42:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"21969:54:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2452,"nodeType":"Block","src":"22222:107:6","statements":[{"expression":{"arguments":[{"hexValue":"556e6b6e6f776e206f7065726174696f6e","id":2449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22298:19:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a8583565d5058e599a0a507bc84ed1111529ac3c53e437281d981e6a5fe8395d","typeString":"literal_string \"Unknown operation\""},"value":"Unknown operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_a8583565d5058e599a0a507bc84ed1111529ac3c53e437281d981e6a5fe8395d","typeString":"literal_string \"Unknown operation\""}],"id":2448,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"22291:6:6","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22291:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2451,"nodeType":"ExpressionStatement","src":"22291:27:6"}]},"id":2453,"nodeType":"IfStatement","src":"21965:364:6","trueBody":{"id":2447,"nodeType":"Block","src":"22025:191:6","statements":[{"assignments":[2429,2431],"declarations":[{"constant":false,"id":2429,"mutability":"mutable","name":"from","nameLocation":"22112:4:6","nodeType":"VariableDeclaration","scope":2447,"src":"22104:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2428,"name":"address","nodeType":"ElementaryTypeName","src":"22104:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2431,"mutability":"mutable","name":"amount","nameLocation":"22126:6:6","nodeType":"VariableDeclaration","scope":2447,"src":"22118:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2430,"name":"uint256","nodeType":"ElementaryTypeName","src":"22118:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2441,"initialValue":{"arguments":[{"id":2434,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2351,"src":"22147:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22154:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2435,"name":"address","nodeType":"ElementaryTypeName","src":"22154:7:6","typeDescriptions":{}}},{"id":2438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22163:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2437,"name":"uint256","nodeType":"ElementaryTypeName","src":"22163:7:6","typeDescriptions":{}}}],"id":2439,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22153:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2432,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"22136:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2433,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22140:6:6","memberName":"decode","nodeType":"MemberAccess","src":"22136:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22136:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"22103:69:6"},{"expression":{"arguments":[{"id":2443,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"22192:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2444,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2431,"src":"22198:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2442,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":524,"src":"22186:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22186:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2446,"nodeType":"ExpressionStatement","src":"22186:19:6"}]}},"id":2454,"nodeType":"IfStatement","src":"21712:617:6","trueBody":{"id":2419,"nodeType":"Block","src":"21772:187:6","statements":[{"assignments":[2401,2403],"declarations":[{"constant":false,"id":2401,"mutability":"mutable","name":"to","nameLocation":"21859:2:6","nodeType":"VariableDeclaration","scope":2419,"src":"21851:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2400,"name":"address","nodeType":"ElementaryTypeName","src":"21851:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2403,"mutability":"mutable","name":"amount","nameLocation":"21871:6:6","nodeType":"VariableDeclaration","scope":2419,"src":"21863:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2402,"name":"uint256","nodeType":"ElementaryTypeName","src":"21863:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2413,"initialValue":{"arguments":[{"id":2406,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2351,"src":"21892:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2408,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21899:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2407,"name":"address","nodeType":"ElementaryTypeName","src":"21899:7:6","typeDescriptions":{}}},{"id":2410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21908:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2409,"name":"uint256","nodeType":"ElementaryTypeName","src":"21908:7:6","typeDescriptions":{}}}],"id":2411,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21898:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2404,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21881:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21885:6:6","memberName":"decode","nodeType":"MemberAccess","src":"21881:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21881:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"21850:67:6"},{"expression":{"arguments":[{"id":2415,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2401,"src":"21937:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2416,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2403,"src":"21941:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2414,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":491,"src":"21931:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21931:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2418,"nodeType":"ExpressionStatement","src":"21931:17:6"}]}},"id":2455,"nodeType":"IfStatement","src":"21439:890:6","trueBody":{"id":2391,"nodeType":"Block","src":"21503:203:6","statements":[{"assignments":[2371,2373],"declarations":[{"constant":false,"id":2371,"mutability":"mutable","name":"to","nameLocation":"21590:2:6","nodeType":"VariableDeclaration","scope":2391,"src":"21582:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2370,"name":"address","nodeType":"ElementaryTypeName","src":"21582:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2373,"mutability":"mutable","name":"amount","nameLocation":"21602:6:6","nodeType":"VariableDeclaration","scope":2391,"src":"21594:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2372,"name":"uint256","nodeType":"ElementaryTypeName","src":"21594:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2383,"initialValue":{"arguments":[{"id":2376,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2351,"src":"21623:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21630:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2377,"name":"address","nodeType":"ElementaryTypeName","src":"21630:7:6","typeDescriptions":{}}},{"id":2380,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21639:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2379,"name":"uint256","nodeType":"ElementaryTypeName","src":"21639:7:6","typeDescriptions":{}}}],"id":2381,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21629:18:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(address),type(uint256))"}],"expression":{"id":2374,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21612:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21616:6:6","memberName":"decode","nodeType":"MemberAccess","src":"21612:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21612:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_uint256_$","typeString":"tuple(address payable,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"21581:67:6"},{"expression":{"arguments":[{"expression":{"id":2385,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21672:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21676:6:6","memberName":"sender","nodeType":"MemberAccess","src":"21672:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2387,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2371,"src":"21684:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2388,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"21688:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2384,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":381,"src":"21662:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21662:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2390,"nodeType":"ExpressionStatement","src":"21662:33:6"}]}}]},"documentation":{"id":2343,"nodeType":"StructuredDocumentation","src":"21088:129:6","text":" @dev Исполнить операцию\n @param _operation Операция для исполнения"},"id":2457,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperation","nameLocation":"21231:17:6","nodeType":"FunctionDefinition","parameters":{"id":2346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2345,"mutability":"mutable","name":"_operation","nameLocation":"21262:10:6","nodeType":"VariableDeclaration","scope":2457,"src":"21249:23:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2344,"name":"bytes","nodeType":"ElementaryTypeName","src":"21249:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21248:25:6"},"returnParameters":{"id":2347,"nodeType":"ParameterList","parameters":[],"src":"21283:0:6"},"scope":2613,"src":"21222:1113:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2510,"nodeType":"Block","src":"22563:358:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2467,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22591:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22595:6:6","memberName":"sender","nodeType":"MemberAccess","src":"22591:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2466,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"22581:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22581:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22605:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22581:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c65","id":2472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22608:32:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_386d52cc0823e9cc706c7e0057db969b8e9f95b86428ad9df4e5e7e608f0ee74","typeString":"literal_string \"Must hold tokens to add module\""},"value":"Must hold tokens to add module"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_386d52cc0823e9cc706c7e0057db969b8e9f95b86428ad9df4e5e7e608f0ee74","typeString":"literal_string \"Must hold tokens to add module\""}],"id":2465,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22573:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22573:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2474,"nodeType":"ExpressionStatement","src":"22573:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2476,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2462,"src":"22659:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22685:1:6","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":2478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22677:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2477,"name":"address","nodeType":"ElementaryTypeName","src":"22677:7:6","typeDescriptions":{}}},"id":2480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22677:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22659:28:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":2482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22689:14:6","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":2475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22651:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22651:53:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2484,"nodeType":"ExpressionStatement","src":"22651:53:6"},{"expression":{"arguments":[{"id":2489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22722:25:6","subExpression":{"baseExpression":{"id":2486,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"22723:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2488,"indexExpression":{"id":2487,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2460,"src":"22737:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22723:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f64756c6520616c726561647920657869737473","id":2490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22749:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_886f67ba7d9a179ad4a77f53bed0afe9305a32e844dbd6b94e697def54438978","typeString":"literal_string \"Module already exists\""},"value":"Module already exists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_886f67ba7d9a179ad4a77f53bed0afe9305a32e844dbd6b94e697def54438978","typeString":"literal_string \"Module already exists\""}],"id":2485,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22714:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22714:59:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2492,"nodeType":"ExpressionStatement","src":"22714:59:6"},{"expression":{"id":2497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2493,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"22784:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2495,"indexExpression":{"id":2494,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2460,"src":"22792:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22784:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2496,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2462,"src":"22805:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22784:35:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2498,"nodeType":"ExpressionStatement","src":"22784:35:6"},{"expression":{"id":2503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2499,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"22829:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2501,"indexExpression":{"id":2500,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2460,"src":"22843:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22829:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"22856:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"22829:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2504,"nodeType":"ExpressionStatement","src":"22829:31:6"},{"eventCall":{"arguments":[{"id":2506,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2460,"src":"22888:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2507,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2462,"src":"22899:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2505,"name":"ModuleAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"22876:11:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22876:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2509,"nodeType":"EmitStatement","src":"22871:43:6"}]},"documentation":{"id":2458,"nodeType":"StructuredDocumentation","src":"22341:146:6","text":" @dev Добавить модуль\n @param _moduleId ID модуля\n @param _moduleAddress Адрес модуля"},"functionSelector":"35324eee","id":2511,"implemented":true,"kind":"function","modifiers":[],"name":"addModule","nameLocation":"22501:9:6","nodeType":"FunctionDefinition","parameters":{"id":2463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2460,"mutability":"mutable","name":"_moduleId","nameLocation":"22519:9:6","nodeType":"VariableDeclaration","scope":2511,"src":"22511:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2459,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22511:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2462,"mutability":"mutable","name":"_moduleAddress","nameLocation":"22538:14:6","nodeType":"VariableDeclaration","scope":2511,"src":"22530:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2461,"name":"address","nodeType":"ElementaryTypeName","src":"22530:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22510:43:6"},"returnParameters":{"id":2464,"nodeType":"ParameterList","parameters":[],"src":"22563:0:6"},"scope":2613,"src":"22492:429:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2549,"nodeType":"Block","src":"23073:274:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2519,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"23101:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23105:6:6","memberName":"sender","nodeType":"MemberAccess","src":"23101:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2518,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"23091:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23091:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23115:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23091:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c65","id":2524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23118:35:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc7fbb9ac88e81b58eadf3fb00bfe01ffe693076256b7e1212d2dec03ec2a636","typeString":"literal_string \"Must hold tokens to remove module\""},"value":"Must hold tokens to remove module"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc7fbb9ac88e81b58eadf3fb00bfe01ffe693076256b7e1212d2dec03ec2a636","typeString":"literal_string \"Must hold tokens to remove module\""}],"id":2517,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23083:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23083:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2526,"nodeType":"ExpressionStatement","src":"23083:71:6"},{"expression":{"arguments":[{"baseExpression":{"id":2528,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23172:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2530,"indexExpression":{"id":2529,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"23186:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23172:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f64756c6520646f6573206e6f74206578697374","id":2531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23198:23:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_148e71891f99baebb1c86efc789ab7bd91f813832ac214a9b47559ccdff1d356","typeString":"literal_string \"Module does not exist\""},"value":"Module does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_148e71891f99baebb1c86efc789ab7bd91f813832ac214a9b47559ccdff1d356","typeString":"literal_string \"Module does not exist\""}],"id":2527,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23164:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23164:58:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2533,"nodeType":"ExpressionStatement","src":"23164:58:6"},{"expression":{"id":2537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23233:25:6","subExpression":{"baseExpression":{"id":2534,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"23240:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2536,"indexExpression":{"id":2535,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"23248:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23240:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2538,"nodeType":"ExpressionStatement","src":"23233:25:6"},{"expression":{"id":2543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2539,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23268:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2541,"indexExpression":{"id":2540,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"23282:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23268:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23295:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"23268:32:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2544,"nodeType":"ExpressionStatement","src":"23268:32:6"},{"eventCall":{"arguments":[{"id":2546,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"23330:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2545,"name":"ModuleRemoved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"23316:13:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":2547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23316:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2548,"nodeType":"EmitStatement","src":"23311:29:6"}]},"documentation":{"id":2512,"nodeType":"StructuredDocumentation","src":"22927:91:6","text":" @dev Удалить модуль\n @param _moduleId ID модуля"},"functionSelector":"4114509b","id":2550,"implemented":true,"kind":"function","modifiers":[],"name":"removeModule","nameLocation":"23032:12:6","nodeType":"FunctionDefinition","parameters":{"id":2515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2514,"mutability":"mutable","name":"_moduleId","nameLocation":"23053:9:6","nodeType":"VariableDeclaration","scope":2550,"src":"23045:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2513,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23045:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23044:19:6"},"returnParameters":{"id":2516,"nodeType":"ParameterList","parameters":[],"src":"23073:0:6"},"scope":2613,"src":"23023:324:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2559,"nodeType":"Block","src":"23487:31:6","statements":[{"expression":{"id":2557,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"23504:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage","typeString":"struct DLE.DLEInfo storage ref"}},"functionReturnParameters":2556,"id":2558,"nodeType":"Return","src":"23497:14:6"}]},"documentation":{"id":2551,"nodeType":"StructuredDocumentation","src":"23353:68:6","text":" @dev Получить информацию о DLE"},"functionSelector":"204c5d1f","id":2560,"implemented":true,"kind":"function","modifiers":[],"name":"getDLEInfo","nameLocation":"23435:10:6","nodeType":"FunctionDefinition","parameters":{"id":2552,"nodeType":"ParameterList","parameters":[],"src":"23445:2:6"},"returnParameters":{"id":2556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2555,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2560,"src":"23471:14:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_memory_ptr","typeString":"struct DLE.DLEInfo"},"typeName":{"id":2554,"nodeType":"UserDefinedTypeName","pathNode":{"id":2553,"name":"DLEInfo","nameLocations":["23471:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":885,"src":"23471:7:6"},"referencedDeclaration":885,"src":"23471:7:6","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$885_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"internal"}],"src":"23470:16:6"},"scope":2613,"src":"23426:92:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2572,"nodeType":"Block","src":"23717:48:6","statements":[{"expression":{"baseExpression":{"id":2568,"name":"activeModules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"23734:13:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_bool_$","typeString":"mapping(bytes32 => bool)"}},"id":2570,"indexExpression":{"id":2569,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2563,"src":"23748:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23734:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2567,"id":2571,"nodeType":"Return","src":"23727:31:6"}]},"documentation":{"id":2561,"nodeType":"StructuredDocumentation","src":"23524:116:6","text":" @dev Проверить, активен ли модуль\n @param _moduleId ID модуля"},"functionSelector":"4b145793","id":2573,"implemented":true,"kind":"function","modifiers":[],"name":"isModuleActive","nameLocation":"23654:14:6","nodeType":"FunctionDefinition","parameters":{"id":2564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2563,"mutability":"mutable","name":"_moduleId","nameLocation":"23677:9:6","nodeType":"VariableDeclaration","scope":2573,"src":"23669:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2562,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23669:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23668:19:6"},"returnParameters":{"id":2567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2566,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2573,"src":"23711:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2565,"name":"bool","nodeType":"ElementaryTypeName","src":"23711:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23710:6:6"},"scope":2613,"src":"23645:120:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2585,"nodeType":"Block","src":"23957:42:6","statements":[{"expression":{"baseExpression":{"id":2581,"name":"modules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":975,"src":"23974:7:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_address_$","typeString":"mapping(bytes32 => address)"}},"id":2583,"indexExpression":{"id":2582,"name":"_moduleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2576,"src":"23982:9:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23974:18:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2580,"id":2584,"nodeType":"Return","src":"23967:25:6"}]},"documentation":{"id":2574,"nodeType":"StructuredDocumentation","src":"23771:104:6","text":" @dev Получить адрес модуля\n @param _moduleId ID модуля"},"functionSelector":"22dbefbb","id":2586,"implemented":true,"kind":"function","modifiers":[],"name":"getModuleAddress","nameLocation":"23889:16:6","nodeType":"FunctionDefinition","parameters":{"id":2577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2576,"mutability":"mutable","name":"_moduleId","nameLocation":"23914:9:6","nodeType":"VariableDeclaration","scope":2586,"src":"23906:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2575,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23906:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23905:19:6"},"returnParameters":{"id":2580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2586,"src":"23948:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2578,"name":"address","nodeType":"ElementaryTypeName","src":"23948:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23947:9:6"},"scope":2613,"src":"23880:119:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2598,"nodeType":"Block","src":"24216:49:6","statements":[{"expression":{"baseExpression":{"id":2594,"name":"supportedChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":993,"src":"24233:15:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bool_$","typeString":"mapping(uint256 => bool)"}},"id":2596,"indexExpression":{"id":2595,"name":"_chainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2589,"src":"24249:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24233:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2593,"id":2597,"nodeType":"Return","src":"24226:32:6"}]},"documentation":{"id":2587,"nodeType":"StructuredDocumentation","src":"24005:133:6","text":" @dev Проверить, поддерживается ли цепочка\n @param _chainId ID цепочки"},"functionSelector":"5221c1f0","id":2599,"implemented":true,"kind":"function","modifiers":[],"name":"isChainSupported","nameLocation":"24152:16:6","nodeType":"FunctionDefinition","parameters":{"id":2590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2589,"mutability":"mutable","name":"_chainId","nameLocation":"24177:8:6","nodeType":"VariableDeclaration","scope":2599,"src":"24169:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2588,"name":"uint256","nodeType":"ElementaryTypeName","src":"24169:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24168:18:6"},"returnParameters":{"id":2593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2592,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2599,"src":"24210:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2591,"name":"bool","nodeType":"ElementaryTypeName","src":"24210:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24209:6:6"},"scope":2613,"src":"24143:122:6","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2607,"nodeType":"Block","src":"24410:38:6","statements":[{"expression":{"id":2605,"name":"currentChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":971,"src":"24427:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2604,"id":2606,"nodeType":"Return","src":"24420:21:6"}]},"documentation":{"id":2600,"nodeType":"StructuredDocumentation","src":"24271:73:6","text":" @dev Получить текущий ID цепочки"},"functionSelector":"5cf0e8a4","id":2608,"implemented":true,"kind":"function","modifiers":[],"name":"getCurrentChainId","nameLocation":"24358:17:6","nodeType":"FunctionDefinition","parameters":{"id":2601,"nodeType":"ParameterList","parameters":[],"src":"24375:2:6"},"returnParameters":{"id":2604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2603,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2608,"src":"24401:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2602,"name":"uint256","nodeType":"ElementaryTypeName","src":"24401:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24400:9:6"},"scope":2613,"src":"24349:99:6","stateMutability":"view","virtual":false,"visibility":"external"},{"anonymous":false,"eventSelector":"57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910","id":2612,"name":"SyncCompleted","nameLocation":"24515:13:6","nodeType":"EventDefinition","parameters":{"id":2611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2610,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"24537:10:6","nodeType":"VariableDeclaration","scope":2612,"src":"24529:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2609,"name":"uint256","nodeType":"ElementaryTypeName","src":"24529:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24528:20:6"},"src":"24509:40:6"}],"scope":2614,"src":"359:24192:6","usedErrors":[11,16,21,30,35,40,799],"usedEvents":[663,672,1025,1033,1041,1051,1057,1065,1075,1081,1087,1091,1099,1107,1115,2612]}],"src":"32:24520:6"},"id":6}},"contracts":{"@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/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}. All two of these 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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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/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/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/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[{"inputs":[],"name":"ReentrancyGuardReentrantCall","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\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, consider using {ReentrancyGuardTransient} instead. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]}},\"version\":1}"}},"contracts/DLE.sol":{"DLE":{"abi":[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"quorumPercentage","type":"uint256"},{"internalType":"address[]","name":"initialPartners","type":"address[]"},{"internalType":"uint256[]","name":"initialAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"supportedChainIds","type":"uint256[]"}],"internalType":"struct DLE.DLEConfig","name":"config","type":"tuple"},{"internalType":"uint256","name":"_currentChainId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"ReentrancyGuardReentrantCall","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":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainExecutionSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainMultiSigSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainId","type":"uint256"}],"name":"CrossChainVoteSync","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"coordinates","type":"string"},{"indexed":false,"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oktmo","type":"uint256"},{"indexed":false,"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"indexed":false,"internalType":"uint256","name":"kpp","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"supportedChainIds","type":"uint256[]"}],"name":"DLEInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"InitialTokensDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"moduleId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"moduleAddress","type":"address"}],"name":"ModuleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"moduleId","type":"bytes32"}],"name":"ModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"operationHash","type":"bytes32"}],"name":"MultiSigExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bytes32","name":"operationHash","type":"bytes32"}],"name":"MultiSigOperationCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"operationId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"signaturePower","type":"uint256"}],"name":"MultiSigSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"operation","type":"bytes"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"votingPower","type":"uint256"}],"name":"ProposalVoted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"SyncCompleted","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":"bytes32","name":"","type":"bytes32"}],"name":"activeModules","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"},{"internalType":"address","name":"_moduleAddress","type":"address"}],"name":"addModule","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_chainId","type":"uint256"}],"name":"checkChainConnection","outputs":[{"internalType":"bool","name":"isAvailable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"}],"name":"checkMultiSigResult","outputs":[{"internalType":"bool","name":"passed","type":"bool"},{"internalType":"bool","name":"quorumReached","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"checkProposalResult","outputs":[{"internalType":"bool","name":"passed","type":"bool"},{"internalType":"bool","name":"quorumReached","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"checkSyncReadiness","outputs":[{"internalType":"bool","name":"allChainsReady","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_operationHash","type":"bytes32"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"createMultiSigOperation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"bytes","name":"_operation","type":"bytes"},{"internalType":"uint256","name":"_governanceChainId","type":"uint256"}],"name":"createProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentChainId","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":"dleInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"}],"name":"executeMultiSigOperation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"executeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"executedMultiSig","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"executedProposals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDLEInfo","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"internalType":"struct DLE.DLEInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"getModuleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupportedChainCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getSupportedChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"}],"name":"isChainSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"isModuleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"modules","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multiSigCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"multiSigOperations","outputs":[{"internalType":"bytes32","name":"operationHash","type":"bytes32"},{"internalType":"uint256","name":"forSignatures","type":"uint256"},{"internalType":"uint256","name":"againstSignatures","type":"uint256"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"description","type":"string"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bytes","name":"operation","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_moduleId","type":"bytes32"}],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"},{"internalType":"bool","name":"_support","type":"bool"}],"name":"signMultiSigOperation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supportedChains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"syncExecutionFromChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"uint256","name":"_forSignatures","type":"uint256"},{"internalType":"uint256","name":"_againstSignatures","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"syncMultiSigFromChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"syncToAllChains","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"internalType":"uint256","name":"_forVotes","type":"uint256"},{"internalType":"uint256","name":"_againstVotes","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"syncVoteFromChain","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_proposalId","type":"uint256"},{"internalType":"bool","name":"_support","type":"bool"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_array_uint256_dyn_fromMemory":{"entryPoint":4642,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":4531,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":4880,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":4934,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":4456,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_array_string_dyn":{"entryPoint":4618,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_bytes1":{"entryPoint":4796,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":4494,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4735,"id":null,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":4821,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_uint256_dyn":{"entryPoint":4837,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"608060405234620011075762003e8380380390816200001e8162001168565b918239604081838101031262001107578051906001600160401b03821162001107576101809283838301828401031262001107576040519384016001600160401b0381118582101762000b7b57604052818301516001600160401b038111620011075762000094908284019085850101620011b3565b8452818301602001516001600160401b0381116200110757620000bf908284019085850101620011b3565b6020850152818301604001516001600160401b0381116200110757620000ed908284019085850101620011b3565b6040850152818301606001516001600160401b03811162001107576200011b908284019085850101620011b3565b60608501528183016080818101519086015260a0808201519086015260c001516001600160401b038111620011075783830101818301601f8201121562001107578051620001736200016d826200120a565b62001168565b9160208084848152019260051b820101918486018311620011075760208201905b83821062001134575050505060c085015281830160e08181015190860152610100808201519086015261012001516001600160401b0381116200110757818301601f8286860101011215620011075780848401015190620001f96200016d836200120a565b91602083828152019184860160208360051b838a8a01010101116200110757916020838888010101925b60208360051b828a8a0101010184106200110c575050505061012085015281830161014001516001600160401b03811162001107576200026b90828401908585010162001222565b6101408501528183016101600151926001600160401b03841162001107576020936200029d9284019184010162001222565b610160840152015181516020830151815191939092916001600160401b03811162000b7b57620002cf6003546200127f565b601f8111620010b4575b506020601f82116001146200104457819293949560009262001038575b50508160011b916000199060031b1c1916176003555b82516001600160401b03811162000b7b576200032a6004546200127f565b601f811162000fe5575b506020601f821160011462000f76578192939460009262000f6a575b50508160011b916000199060031b1c1916176004555b6001600555805191602082015160408301516060840151608085015160a08601519060c08701519260e088015194604051968761014081011060018060401b036101408a01111762000b7b5761014088016040528a8852602088015260408701526060860152608085015260a084015260c083015260e0820152426101008201526001610120820152835160018060401b03811162000b7b576200040c6006546200127f565b601f811162000f17575b506020601f821160011462000ea757819293949560009262000e9b575b50508160011b916000199060031b1c1916176006555b602081015180519093906001600160401b03811162000b7b576200046f6007546200127f565b601f811162000e48575b506020601f821160011462000dd857819293949560009262000dcc575b50508160011b916000199060031b1c1916176007555b604082015180519093906001600160401b03811162000b7b57620004d26008546200127f565b601f811162000d79575b506020601f821160011462000d0957819293949560009262000cfd575b50508160011b916000199060031b1c1916176008555b606083015180519093906001600160401b03811162000b7b57620005356009546200127f565b601f811162000caa575b506020601f821160011462000c3a57819293949560009262000c2e575b50508160011b916000199060031b1c1916176009555b6080810151600a5560a0810151600b5560c081015180519068010000000000000000821162000b7b57600c5482600c5580831062000b91575b50600c60009081527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c792916020015b82821062000a495786866101208760e0810151600d55610100810151600e550151151560ff8019600f5416911617600f5561010082015160105560135560005b61016082015190815181101562000660576200063b816200065a93620012e5565b5160005260186020526040600020600160ff19825416179055620012d5565b6200061a565b8261012081015151610140820151510362000a04576101208101515115620009bf5760005b6101208201518051821015620007f1576001600160a01b03908190620006ad908490620012e5565b511615620007bd57620006c682610140850151620012e5565b51156200078a57620006de82610120850151620012e5565b511690620006f281610140850151620012e5565b51918015620007715760025483810181116200075b577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60208562000755966000940160025584845283825260408420818154019055604051908152a3620012d5565b62000685565b634e487b7160e01b600052601160045260246000fd5b60405163ec442f0560e01b815260006004820152602490fd5b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b8261012081015161014082015190604051916040830160408452825180915260206060850193019060005b8181106200099f57867ff9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a587806200085c8989838203602085015262001310565b0390a1805160208201516040830151926060810151608082015190620008e160a084015191620008d260c086015198620008c361016060e089015198015198620008b46040519b6101408d526101408d019062001346565b908b820360208d015262001346565b9089820360408b015262001346565b90878203606089015262001346565b91608086015260a085015283810360c0850152845180825260208201916020808360051b8301019701926000915b8383106200096f577f11b248463a1620b36a975da8f250009f56fb5dd0e9d5027a90a834d0ee84d6f688806200095c8c8b8b60e08501523061010085015283820361012085015262001310565b0390a1604051612b1590816200136e8239f35b90919293976020806200098f600193601f198682030187528c5162001346565b9a0193019301919392906200090f565b82516001600160a01b03168552602094850194909201916001016200081c565b60405162461bcd60e51b815260206004820152601360248201527f4e6f20696e697469616c20706172746e657273000000000000000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606490fd5b80518051906001600160401b03821162000b7b5762000a6986546200127f565b601f811162000b39575b50602090601f831160011462000ac457928260019493602093869560009262000ab8575b5050600019600383901b1c191690841b1787555b01940191019092620005da565b01519050388062000a97565b908660005260206000209160005b601f198516811062000b20575083602093600196938796938794601f1981161062000b06575b505050811b01875562000aab565b015160001960f88460031b161c1916905538808062000af8565b9192602060018192868501518155019401920162000ad2565b62000b6990876000526020600020601f850160051c8101916020861062000b70575b601f0160051c0190620012bc565b3862000a73565b909150819062000b5b565b634e487b7160e01b600052604160045260246000fd5b600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7908382015b818301811062000bce575050620005ab565b8062000bdd600192546200127f565b8062000bec575b500162000bbc565b601f8111831462000c045750600081555b3862000be4565b60009082825262000c24601f60208420920160051c8201858301620012bc565b8183555562000bfd565b0151905038806200055c565b600960005260206000209060005b601f198416811062000c91575060019394959683601f1981161062000c77575b505050811b0160095562000572565b015160001960f88460031b161c1916905538808062000c68565b9091602060018192858b01518155019301910162000c48565b600960005262000cf6907f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b386200053f565b015190503880620004f9565b600860005260206000209060005b601f198416811062000d60575060019394959683601f1981161062000d46575b505050811b016008556200050f565b015160001960f88460031b161c1916905538808062000d37565b9091602060018192858b01518155019301910162000d17565b600860005262000dc5907ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620004dc565b01519050388062000496565b600760005260206000209060005b601f198416811062000e2f575060019394959683601f1981161062000e15575b505050811b01600755620004ac565b015160001960f88460031b161c1916905538808062000e06565b9091602060018192858b01518155019301910162000de6565b600760005262000e94907fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000479565b01519050388062000433565b600660005260206000209060005b601f198416811062000efe575060019394959683601f1981161062000ee4575b505050811b0160065562000449565b015160001960f88460031b161c1916905538808062000ed5565b9091602060018192858b01518155019301910162000eb5565b600660005262000f63907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000416565b01519050388062000350565b600460005260206000209060005b601f198416811062000fcc5750600193949583601f1981161062000fb2575b505050811b0160045562000366565b015160001960f88460031b161c1916905538808062000fa3565b9091602060018192858a01518155019301910162000f84565b600460005262001031907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000334565b015190503880620002f6565b600360005260206000209060005b601f19841681106200109b575060019394959683601f1981161062001081575b505050811b016003556200030c565b015160001960f88460031b161c1916905538808062001072565b9091602060018192858b01518155019301910162001052565b600360005262001100907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620002d9565b600080fd5b8351916001600160a01b03831683036200110757602081819482935201940193915062000223565b81516001600160401b03811162001107576020916200115c8392838a8c0191880101620011b3565b81520191019062000194565b6040519190601f01601f191682016001600160401b0381118382101762000b7b57604052565b60005b838110620011a25750506000910152565b818101518382015260200162001191565b81601f82011215620011075780516001600160401b03811162000b7b57620011e5601f8201601f191660200162001168565b928184526020828401011162001107576200120791602080850191016200118e565b90565b6001600160401b03811162000b7b5760051b60200190565b9080601f830112156200110757815190620012416200016d836200120a565b9182938184526020808095019260051b82010192831162001107578301905b8282106200126f575050505090565b8151815290830190830162001260565b90600182811c92168015620012b1575b60208310146200129b57565b634e487b7160e01b600052602260045260246000fd5b91607f16916200128f565b818110620012c8575050565b60008155600101620012bc565b60001981146200075b5760010190565b8051821015620012fa5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b90815180825260208080930193019160005b82811062001331575050505090565b83518552938101939281019260010162001322565b9060209162001361815180928185528580860191016200118e565b601f01601f191601019056fe60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea26469706673582212203d9c2e9bde7fe9a6fce04efdc03dfd744b785d973d2ed5fa6b725a17cfbf8e6164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x1107 JUMPI PUSH3 0x3E83 DUP1 CODESIZE SUB SWAP1 DUP2 PUSH3 0x1E DUP2 PUSH3 0x1168 JUMP JUMPDEST SWAP2 DUP3 CODECOPY PUSH1 0x40 DUP2 DUP4 DUP2 ADD SUB SLT PUSH3 0x1107 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0x1107 JUMPI PUSH2 0x180 SWAP3 DUP4 DUP4 DUP4 ADD DUP3 DUP5 ADD SUB SLT PUSH3 0x1107 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP5 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP6 DUP3 LT OR PUSH3 0xB7B JUMPI PUSH1 0x40 MSTORE DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x94 SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST DUP5 MSTORE DUP2 DUP4 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0xBF SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0xED SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x60 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x11B SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST PUSH1 0x60 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0x80 DUP2 DUP2 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xC0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI DUP4 DUP4 ADD ADD DUP2 DUP4 ADD PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 MLOAD PUSH3 0x173 PUSH3 0x16D DUP3 PUSH3 0x120A JUMP JUMPDEST PUSH3 0x1168 JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP1 DUP5 DUP5 DUP2 MSTORE ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 DUP5 DUP7 ADD DUP4 GT PUSH3 0x1107 JUMPI PUSH1 0x20 DUP3 ADD SWAP1 JUMPDEST DUP4 DUP3 LT PUSH3 0x1134 JUMPI POP POP POP POP PUSH1 0xC0 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH1 0xE0 DUP2 DUP2 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH2 0x120 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI DUP2 DUP4 ADD PUSH1 0x1F DUP3 DUP7 DUP7 ADD ADD ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 DUP5 DUP5 ADD ADD MLOAD SWAP1 PUSH3 0x1F9 PUSH3 0x16D DUP4 PUSH3 0x120A JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD SWAP2 DUP5 DUP7 ADD PUSH1 0x20 DUP4 PUSH1 0x5 SHL DUP4 DUP11 DUP11 ADD ADD ADD ADD GT PUSH3 0x1107 JUMPI SWAP2 PUSH1 0x20 DUP4 DUP9 DUP9 ADD ADD ADD SWAP3 JUMPDEST PUSH1 0x20 DUP4 PUSH1 0x5 SHL DUP3 DUP11 DUP11 ADD ADD ADD ADD DUP5 LT PUSH3 0x110C JUMPI POP POP POP POP PUSH2 0x120 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH2 0x140 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH3 0x26B SWAP1 DUP3 DUP5 ADD SWAP1 DUP6 DUP6 ADD ADD PUSH3 0x1222 JUMP JUMPDEST PUSH2 0x140 DUP6 ADD MSTORE DUP2 DUP4 ADD PUSH2 0x160 ADD MLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT PUSH3 0x1107 JUMPI PUSH1 0x20 SWAP4 PUSH3 0x29D SWAP3 DUP5 ADD SWAP2 DUP5 ADD ADD PUSH3 0x1222 JUMP JUMPDEST PUSH2 0x160 DUP5 ADD MSTORE ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP4 ADD MLOAD DUP2 MLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x2CF PUSH1 0x3 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0x10B4 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0x1044 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0x1038 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x3 SSTORE JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x32A PUSH1 0x4 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xFE5 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xF76 JUMPI DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xF6A JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x4 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x5 SSTORE DUP1 MLOAD SWAP2 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0xA0 DUP7 ADD MLOAD SWAP1 PUSH1 0xC0 DUP8 ADD MLOAD SWAP3 PUSH1 0xE0 DUP9 ADD MLOAD SWAP5 PUSH1 0x40 MLOAD SWAP7 DUP8 PUSH2 0x140 DUP2 ADD LT PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB PUSH2 0x140 DUP11 ADD GT OR PUSH3 0xB7B JUMPI PUSH2 0x140 DUP9 ADD PUSH1 0x40 MSTORE DUP11 DUP9 MSTORE PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE TIMESTAMP PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0x1 PUSH2 0x120 DUP3 ADD MSTORE DUP4 MLOAD PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x40C PUSH1 0x6 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xF17 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xEA7 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xE9B JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x6 SSTORE JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x46F PUSH1 0x7 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xE48 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xDD8 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xDCC JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x7 SSTORE JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x4D2 PUSH1 0x8 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xD79 JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xD09 JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xCFD JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x8 SSTORE JUMPDEST PUSH1 0x60 DUP4 ADD MLOAD DUP1 MLOAD SWAP1 SWAP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x535 PUSH1 0x9 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xCAA JUMPI JUMPDEST POP PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 EQ PUSH3 0xC3A JUMPI DUP2 SWAP3 SWAP4 SWAP5 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xC2E JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x9 SSTORE JUMPDEST PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0xA SSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xB SSTORE PUSH1 0xC0 DUP2 ADD MLOAD DUP1 MLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 GT PUSH3 0xB7B JUMPI PUSH1 0xC SLOAD DUP3 PUSH1 0xC SSTORE DUP1 DUP4 LT PUSH3 0xB91 JUMPI JUMPDEST POP PUSH1 0xC PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 SWAP3 SWAP2 PUSH1 0x20 ADD JUMPDEST DUP3 DUP3 LT PUSH3 0xA49 JUMPI DUP7 DUP7 PUSH2 0x120 DUP8 PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xD SSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH1 0xE SSTORE ADD MLOAD ISZERO ISZERO PUSH1 0xFF DUP1 NOT PUSH1 0xF SLOAD AND SWAP2 AND OR PUSH1 0xF SSTORE PUSH2 0x100 DUP3 ADD MLOAD PUSH1 0x10 SSTORE PUSH1 0x13 SSTORE PUSH1 0x0 JUMPDEST PUSH2 0x160 DUP3 ADD MLOAD SWAP1 DUP2 MLOAD DUP2 LT ISZERO PUSH3 0x660 JUMPI PUSH3 0x63B DUP2 PUSH3 0x65A SWAP4 PUSH3 0x12E5 JUMP JUMPDEST MLOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH3 0x12D5 JUMP JUMPDEST PUSH3 0x61A JUMP JUMPDEST DUP3 PUSH2 0x120 DUP2 ADD MLOAD MLOAD PUSH2 0x140 DUP3 ADD MLOAD MLOAD SUB PUSH3 0xA04 JUMPI PUSH2 0x120 DUP2 ADD MLOAD MLOAD ISZERO PUSH3 0x9BF JUMPI PUSH1 0x0 JUMPDEST PUSH2 0x120 DUP3 ADD MLOAD DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 SWAP1 PUSH3 0x6AD SWAP1 DUP5 SWAP1 PUSH3 0x12E5 JUMP JUMPDEST MLOAD AND ISZERO PUSH3 0x7BD JUMPI PUSH3 0x6C6 DUP3 PUSH2 0x140 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD ISZERO PUSH3 0x78A JUMPI PUSH3 0x6DE DUP3 PUSH2 0x120 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD AND SWAP1 PUSH3 0x6F2 DUP2 PUSH2 0x140 DUP6 ADD MLOAD PUSH3 0x12E5 JUMP JUMPDEST MLOAD SWAP2 DUP1 ISZERO PUSH3 0x771 JUMPI PUSH1 0x2 SLOAD DUP4 DUP2 ADD DUP2 GT PUSH3 0x75B JUMPI PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x20 DUP6 PUSH3 0x755 SWAP7 PUSH1 0x0 SWAP5 ADD PUSH1 0x2 SSTORE DUP5 DUP5 MSTORE DUP4 DUP3 MSTORE PUSH1 0x40 DUP5 KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 PUSH3 0x12D5 JUMP JUMPDEST PUSH3 0x685 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 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 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 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 DUP3 PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x140 DUP3 ADD MLOAD SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH1 0x40 DUP4 ADD PUSH1 0x40 DUP5 MSTORE DUP3 MLOAD DUP1 SWAP2 MSTORE PUSH1 0x20 PUSH1 0x60 DUP6 ADD SWAP4 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH3 0x99F JUMPI DUP7 PUSH32 0xF9E7AA11BCDCBB8AC33B5DBA92FCA799EF091E54C29270822065501D8EDEA1A5 DUP8 DUP1 PUSH3 0x85C DUP10 DUP10 DUP4 DUP3 SUB PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x1310 JUMP JUMPDEST SUB SWAP1 LOG1 DUP1 MLOAD PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP4 ADD MLOAD SWAP3 PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x80 DUP3 ADD MLOAD SWAP1 PUSH3 0x8E1 PUSH1 0xA0 DUP5 ADD MLOAD SWAP2 PUSH3 0x8D2 PUSH1 0xC0 DUP7 ADD MLOAD SWAP9 PUSH3 0x8C3 PUSH2 0x160 PUSH1 0xE0 DUP10 ADD MLOAD SWAP9 ADD MLOAD SWAP9 PUSH3 0x8B4 PUSH1 0x40 MLOAD SWAP12 PUSH2 0x140 DUP14 MSTORE PUSH2 0x140 DUP14 ADD SWAP1 PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP12 DUP3 SUB PUSH1 0x20 DUP14 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP10 DUP3 SUB PUSH1 0x40 DUP12 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP1 DUP8 DUP3 SUB PUSH1 0x60 DUP10 ADD MSTORE PUSH3 0x1346 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP8 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH3 0x96F JUMPI PUSH32 0x11B248463A1620B36A975DA8F250009F56FB5DD0E9D5027A90A834D0EE84D6F6 DUP9 DUP1 PUSH3 0x95C DUP13 DUP12 DUP12 PUSH1 0xE0 DUP6 ADD MSTORE ADDRESS PUSH2 0x100 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH2 0x120 DUP6 ADD MSTORE PUSH3 0x1310 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH2 0x2B15 SWAP1 DUP2 PUSH3 0x136E DUP3 CODECOPY RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP8 PUSH1 0x20 DUP1 PUSH3 0x98F PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP13 MLOAD PUSH3 0x1346 JUMP JUMPDEST SWAP11 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH3 0x90F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH3 0x81C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F20696E697469616C20706172746E65727300000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT 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 PUSH32 0x417272617973206C656E677468206D69736D6174636800000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xB7B JUMPI PUSH3 0xA69 DUP7 SLOAD PUSH3 0x127F JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0xB39 JUMPI JUMPDEST POP PUSH1 0x20 SWAP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xAC4 JUMPI SWAP3 DUP3 PUSH1 0x1 SWAP5 SWAP4 PUSH1 0x20 SWAP4 DUP7 SWAP6 PUSH1 0x0 SWAP3 PUSH3 0xAB8 JUMPI JUMPDEST POP POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP5 SHL OR DUP8 SSTORE JUMPDEST ADD SWAP5 ADD SWAP2 ADD SWAP1 SWAP3 PUSH3 0x5DA JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xA97 JUMP JUMPDEST SWAP1 DUP7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP6 AND DUP2 LT PUSH3 0xB20 JUMPI POP DUP4 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP7 SWAP4 DUP8 SWAP7 SWAP4 DUP8 SWAP5 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xB06 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD DUP8 SSTORE PUSH3 0xAAB JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xAF8 JUMP JUMPDEST SWAP2 SWAP3 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP7 DUP6 ADD MLOAD DUP2 SSTORE ADD SWAP5 ADD SWAP3 ADD PUSH3 0xAD2 JUMP JUMPDEST PUSH3 0xB69 SWAP1 DUP8 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP7 LT PUSH3 0xB70 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0xA73 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH3 0xB5B JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 SWAP1 DUP4 DUP3 ADD JUMPDEST DUP2 DUP4 ADD DUP2 LT PUSH3 0xBCE JUMPI POP POP PUSH3 0x5AB JUMP JUMPDEST DUP1 PUSH3 0xBDD PUSH1 0x1 SWAP3 SLOAD PUSH3 0x127F JUMP JUMPDEST DUP1 PUSH3 0xBEC JUMPI JUMPDEST POP ADD PUSH3 0xBBC JUMP JUMPDEST PUSH1 0x1F DUP2 GT DUP4 EQ PUSH3 0xC04 JUMPI POP PUSH1 0x0 DUP2 SSTORE JUMPDEST CODESIZE PUSH3 0xBE4 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP3 DUP3 MSTORE PUSH3 0xC24 PUSH1 0x1F PUSH1 0x20 DUP5 KECCAK256 SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD DUP6 DUP4 ADD PUSH3 0x12BC JUMP JUMPDEST DUP2 DUP4 SSTORE SSTORE PUSH3 0xBFD JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x55C JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xC91 JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xC77 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x9 SSTORE PUSH3 0x572 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xC68 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xC48 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 MSTORE PUSH3 0xCF6 SWAP1 PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x53F JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xD60 JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xD46 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x8 SSTORE PUSH3 0x50F JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xD37 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xD17 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 MSTORE PUSH3 0xDC5 SWAP1 PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x4DC JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x496 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xE2F JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xE15 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x7 SSTORE PUSH3 0x4AC JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xE06 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xDE6 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 MSTORE PUSH3 0xE94 SWAP1 PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x479 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x433 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xEFE JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xEE4 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x6 SSTORE PUSH3 0x449 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xED5 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xEB5 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH3 0xF63 SWAP1 PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x416 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x350 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0xFCC JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0xFB2 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x4 SSTORE PUSH3 0x366 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xFA3 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP11 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0xF84 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH3 0x1031 SWAP1 PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x334 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x2F6 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP5 AND DUP2 LT PUSH3 0x109B JUMPI POP PUSH1 0x1 SWAP4 SWAP5 SWAP6 SWAP7 DUP4 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0x1081 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x3 SSTORE PUSH3 0x30C JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x1072 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 PUSH1 0x1 DUP2 SWAP3 DUP6 DUP12 ADD MLOAD DUP2 SSTORE ADD SWAP4 ADD SWAP2 ADD PUSH3 0x1052 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE PUSH3 0x1100 SWAP1 PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 PUSH1 0x20 DUP6 LT PUSH3 0xB70 JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x12BC JUMP JUMPDEST CODESIZE PUSH3 0x2D9 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP4 SUB PUSH3 0x1107 JUMPI PUSH1 0x20 DUP2 DUP2 SWAP5 DUP3 SWAP4 MSTORE ADD SWAP5 ADD SWAP4 SWAP2 POP PUSH3 0x223 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x1107 JUMPI PUSH1 0x20 SWAP2 PUSH3 0x115C DUP4 SWAP3 DUP4 DUP11 DUP13 ADD SWAP2 DUP9 ADD ADD PUSH3 0x11B3 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x194 JUMP 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 0xB7B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x11A2 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x1191 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH3 0x11E5 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH3 0x1168 JUMP JUMPDEST SWAP3 DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0x1107 JUMPI PUSH3 0x1207 SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x118E JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7B JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH3 0x1107 JUMPI DUP2 MLOAD SWAP1 PUSH3 0x1241 PUSH3 0x16D DUP4 PUSH3 0x120A JUMP JUMPDEST SWAP2 DUP3 SWAP4 DUP2 DUP5 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP6 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x1107 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x126F JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH3 0x1260 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH3 0x12B1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH3 0x129B 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 0x128F JUMP JUMPDEST DUP2 DUP2 LT PUSH3 0x12C8 JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x12BC JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x75B JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x12FA 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 SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH3 0x1331 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH3 0x1322 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH3 0x1361 DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH3 0x118E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP INVALID PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE PUSH1 0x4 DUP1 CALLDATASIZE LT ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR SWAP2 DUP3 PUSH4 0x13CF08B EQ PUSH2 0x1DDA JUMPI POP DUP2 PUSH4 0x44BC2BD EQ PUSH2 0x1CAB JUMPI DUP2 PUSH4 0x57B2074 EQ PUSH2 0x1C90 JUMPI DUP2 PUSH4 0x6FDDE03 EQ PUSH2 0x1BC2 JUMPI DUP2 PUSH4 0x95EA7B3 EQ PUSH2 0x1B23 JUMPI DUP2 PUSH4 0xC0512E9 EQ PUSH2 0x1B05 JUMPI DUP2 PUSH4 0xD61B519 EQ PUSH2 0x18FF JUMPI DUP2 PUSH4 0x18160DDD EQ PUSH2 0x18E1 JUMPI DUP2 PUSH4 0x204C5D1F EQ PUSH2 0x164E JUMPI DUP2 PUSH4 0x22DBEFBB EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0x23B872DD EQ PUSH2 0x1556 JUMPI DUP2 PUSH4 0x2EE09598 EQ PUSH2 0x14BC JUMPI DUP2 PUSH4 0x313CE567 EQ PUSH2 0x14A0 JUMPI DUP2 PUSH4 0x35324EEE EQ PUSH2 0x1338 JUMPI DUP2 PUSH4 0x3B60288A EQ PUSH2 0x1309 JUMPI DUP2 PUSH4 0x4114509B EQ PUSH2 0x11EF JUMPI DUP2 PUSH4 0x456D10C1 EQ PUSH2 0x1109 JUMPI DUP2 PUSH4 0x4B145793 EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0x4DE184F6 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x4FA76EC9 EQ PUSH2 0x10EB JUMPI DUP2 PUSH4 0x5221C1F0 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x548D496F EQ PUSH2 0x10B7 JUMPI DUP2 PUSH4 0x5CF0E8A4 EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x6CBADBFA EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x70A08231 EQ PUSH2 0x105F JUMPI DUP2 PUSH4 0x7CE288EA EQ PUSH2 0xF6B JUMPI DUP2 PUSH4 0x7E5A9B47 EQ PUSH2 0xF3C JUMPI DUP2 PUSH4 0x893D692A EQ PUSH2 0xE20 JUMPI DUP2 PUSH4 0x8C7B04C9 EQ PUSH2 0xE02 JUMPI DUP2 PUSH4 0x95D89B41 EQ PUSH2 0xD17 JUMPI DUP2 PUSH4 0x9A49BDDE EQ PUSH2 0xCF2 JUMPI DUP2 PUSH4 0xA9059CBB EQ PUSH2 0xCC1 JUMPI DUP2 PUSH4 0xAF89D2C4 EQ PUSH2 0xC92 JUMPI DUP2 PUSH4 0xB00E0730 EQ PUSH2 0xB6E JUMPI DUP2 PUSH4 0xB0B6CC1A EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0xB3594510 EQ PUSH2 0x774 JUMPI DUP2 PUSH4 0xB3FE8BCB EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0xC51CAB3A EQ PUSH2 0x6D5 JUMPI DUP2 PUSH4 0xC9D27AFE EQ PUSH2 0x54E JUMPI DUP2 PUSH4 0xCCD7A490 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xDD62ED3E EQ PUSH2 0x337 JUMPI DUP2 PUSH4 0xE49A62E9 EQ PUSH2 0x310 JUMPI DUP2 PUSH4 0xECED3DFB EQ PUSH2 0x2F4 JUMPI POP PUSH4 0xF2C26A47 EQ PUSH2 0x205 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x2A4 PUSH1 0x40 MLOAD PUSH2 0x230 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x258 DUP3 PUSH2 0x251 DUP2 PUSH2 0x2006 JUMP JUMPDEST SUB DUP4 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x270 DUP4 PUSH2 0x269 DUP2 PUSH2 0x208D JUMP JUMPDEST SUB DUP5 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP3 PUSH1 0xB SLOAD PUSH2 0x2CE PUSH1 0xD SLOAD SWAP3 PUSH2 0x2C0 PUSH1 0xE SLOAD SWAP6 PUSH2 0x2B2 PUSH1 0xFF PUSH1 0xF SLOAD AND SWAP9 PUSH1 0x40 MLOAD SWAP13 DUP14 SWAP13 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP5 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x32D PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x278C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x350 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x22CE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x396 CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x39F PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x17 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x3BC DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP1 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x51A JUMPI PUSH2 0x3D8 PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x2711 JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x4E5 JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x4AD JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78B8E65C466DF05EA5DDF0593B44648ECA1F35C039F180E31257A6F1BDD005DC SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x498 JUMPI PUSH1 0x1 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE CALLER PUSH1 0x20 DUP6 ADD MSTORE SWAP4 ISZERO ISZERO SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x60 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x80 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x5 SSTORE STOP JUMPDEST PUSH1 0x2 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x14DA59DB9A5B99C8195B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x55C CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x565 PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x16 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x582 DUP4 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x6A2 JUMPI PUSH2 0x59E PUSH1 0xFF DUP3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x8 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x66E JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x636 JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78975AAF742630489BADD22949B88AC50EAAEA576339EE05440B671A33BFB6A9 SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x628 JUMPI PUSH1 0x2 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x4E6F20746F6B656E7320746F20766F7465 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x105B1C9958591E481D9BDD1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x159BDD1A5B99C8195B991959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 PUSH1 0xC0 SWAP2 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH1 0x1 DUP2 ADD SLOAD SWAP2 PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND SWAP2 DUP4 ADD SLOAD SWAP3 PUSH1 0x5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP2 ADD SLOAD AND SWAP4 PUSH1 0x40 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 DUP3 GT PUSH2 0x2EF JUMPI CALLDATASIZE PUSH1 0x23 DUP4 ADD SLT ISZERO PUSH2 0x2EF JUMPI PUSH2 0x7B7 PUSH1 0x24 SWAP3 CALLDATASIZE SWAP1 DUP5 DUP2 DUP6 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 DUP3 CALLDATALOAD SWAP4 PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x7D2 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0x229A JUMP JUMPDEST SWAP5 PUSH1 0x64 CALLDATALOAD SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP7 PUSH1 0x0 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xAED JUMPI PUSH2 0x7F8 DUP4 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x18 DUP9 MSTORE PUSH2 0x811 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 DUP8 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x11 SLOAD SWAP6 PUSH2 0x833 DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x11 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x16 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP8 DUP2 SSTORE PUSH1 0x1 SWAP4 DUP5 DUP3 ADD DUP9 MLOAD DUP8 DUP2 GT PUSH2 0xAA0 JUMPI PUSH2 0x869 DUP2 PUSH2 0x863 DUP5 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP5 PUSH2 0x2509 JUMP JUMPDEST DUP12 DUP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0xA2B JUMPI POP SWAP2 DUP2 PUSH1 0x7 SWAP6 SWAP5 SWAP3 PUSH2 0x8BC SWAP5 PUSH1 0x0 SWAP2 PUSH2 0xA20 JUMPI JUMPDEST POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP10 SHL OR SWAP1 SSTORE JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP5 ADD SSTORE PUSH1 0x0 PUSH1 0x3 DUP5 ADD SSTORE DUP9 DUP4 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SSTORE PUSH1 0x6 DUP2 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE ADD SWAP5 DUP3 MLOAD SWAP5 DUP6 GT PUSH2 0xA0D JUMPI POP POP PUSH2 0x8F8 DUP4 PUSH2 0x8F2 DUP7 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP7 PUSH2 0x2509 JUMP JUMPDEST DUP7 SWAP1 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH2 0x980 JUMPI SWAP3 DUP1 PUSH2 0x96A SWAP6 SWAP4 DUP2 SWAP4 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP9 SWAP7 PUSH1 0x0 SWAP5 PUSH2 0x975 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP6 DUP4 MSTORE CALLER DUP8 DUP5 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST ADD MLOAD SWAP3 POP DUP11 DUP1 PUSH2 0x939 JUMP JUMPDEST SWAP1 PUSH1 0x1F SWAP4 SWAP3 SWAP4 NOT DUP4 AND SWAP2 DUP6 PUSH1 0x0 MSTORE DUP9 PUSH1 0x0 KECCAK256 SWAP3 PUSH1 0x0 JUMPDEST DUP11 DUP3 DUP3 LT PUSH2 0x9F9 JUMPI POP POP SWAP2 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x96A SWAP9 SWAP7 SWAP5 LT PUSH2 0x9E0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x94B JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP9 DUP1 DUP1 PUSH2 0x9D3 JUMP JUMPDEST DUP4 DUP6 ADD MLOAD DUP7 SSTORE SWAP5 DUP8 ADD SWAP5 SWAP4 DUP5 ADD SWAP4 ADD PUSH2 0x996 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST SWAP1 POP DUP13 ADD MLOAD DUP16 PUSH2 0x88A JUMP JUMPDEST DUP9 SWAP3 SWAP2 DUP13 PUSH1 0x1F NOT DUP5 AND DUP7 PUSH1 0x0 MSTORE DUP4 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xA85 JUMPI POP POP SWAP2 PUSH1 0x7 SWAP9 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x8BC SWAP9 SWAP7 SWAP5 LT PUSH2 0xA6C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x89D JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP16 DUP1 DUP15 PUSH2 0xA5F JUMP JUMPDEST SWAP3 DUP5 ADD MLOAD DUP6 SSTORE DUP13 SWAP7 SWAP1 SWAP5 ADD SWAP4 SWAP3 DUP3 ADD SWAP3 DUP16 SWAP3 SWAP1 DUP2 ADD SWAP1 PUSH2 0xA41 JUMP JUMPDEST DUP5 PUSH1 0x41 DUP11 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP6 ADD DUP9 SWAP1 MSTORE PUSH1 0x13 DUP2 DUP9 ADD MSTORE PUSH19 0x436861696E206E6F7420617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP7 ADD DUP10 SWAP1 MSTORE PUSH1 0x23 DUP2 DUP10 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x14 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 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xC42 JUMPI PUSH1 0x60 PUSH1 0x20 SWAP4 PUSH1 0x5 DUP4 PUSH2 0xBCD PUSH32 0x8D5C76B09B9C1F4D0453D21436DCB0B568A50E9C0AE059E4D0AE8C95C71D07F0 SWAP6 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP6 PUSH2 0xBDA DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x12 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x17 DUP9 MSTORE PUSH2 0xC11 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP6 DUP5 SSTORE PUSH1 0x0 PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x0 PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x3 DUP5 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST SWAP1 DUP3 ADD SSTORE ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP5 DUP3 MSTORE CALLER DUP7 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP5 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20637265617465206F70657261 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x3A34B7B7 PUSH1 0xE1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1A PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xCE7 PUSH2 0xCDD PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x236B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xD0F PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 SWAP1 DUP1 SLOAD PUSH2 0xD3A DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xDD8 JUMPI POP PUSH1 0x1 EQ PUSH2 0xD7C JUMPI JUMPDEST PUSH2 0xD78 DUP6 PUSH2 0xD64 DUP2 DUP8 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xDC0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0xD78 PUSH2 0xD54 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xDA5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xD78 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xD64 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xD54 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x12 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH2 0xE51 DUP4 ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x3 DUP2 ADD SWAP2 DUP1 DUP4 SLOAD SWAP3 PUSH2 0xE67 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x2711 JUMP JUMPDEST ADD SLOAD TIMESTAMP LT PUSH2 0xF04 JUMPI PUSH2 0xE78 DUP6 PUSH2 0x275D JUMP JUMPDEST DUP2 PUSH2 0xEFC JUMPI JUMPDEST POP ISZERO PUSH2 0xEC1 JUMPI PUSH32 0x64CEE5A70D662A7EEF5B2A171DAA51DC624F3D64A35D0855B385262B893DC5A5 PUSH1 0x40 DUP7 DUP7 DUP7 PUSH1 0x1 DUP8 PUSH1 0xFF NOT AND OR SWAP1 SSTORE DUP3 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x13DC195C985D1A5BDB881B9BDD081C185CDCD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 POP DUP7 PUSH2 0xE7E JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x14DA59DB9A5B99C81B9BDD08195B991959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE SWAP1 ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xF88 DUP3 PUSH2 0x278C JUMP JUMPDEST ISZERO PUSH2 0x1024 JUMPI PUSH1 0x13 SLOAD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0xFC7 JUMPI PUSH32 0x57DF5A6A467271F04B10F7FE9E66D21DCD8AE7EAF079099D48959F24A53B6910 PUSH1 0x20 DUP6 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG1 STOP JUMPDEST DUP1 PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 PUSH2 0x1017 PUSH2 0xFF8 PUSH2 0x101F SWAP5 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP8 DUP11 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SUB SWAP1 LOG1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0xF93 JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F7420616C6C20636861696E73207265616479 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x1080 PUSH2 0x22B8 JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH2 0x231F JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x10 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xCA1838D50CA3156F1ACE7CDE39A081CC9C9A333AF6FCA55DB71817F8717E1DCB PUSH2 0x1138 CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x115B DUP7 DUP3 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1175 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x9 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1194 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x2 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH2 0x11EA PUSH1 0x13 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 SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x12BD JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x1283 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x14 DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x15 DUP4 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD SWAP2 DUP3 MSTORE PUSH32 0x4C7C76ABE482A2C36EA52F1B999474C69F8B4AFEEAC5635F8AEA2526864BA853 SWAP2 LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x135BD91D5B1948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x84 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F2072656D6F7665206D6F64756C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0x1354 PUSH2 0x22CE JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x145C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x142B JUMPI DUP4 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x13F1 JUMPI PUSH32 0xF14475B19484BF096265507CC0C41CD3BF1994992088806830686E2D72722719 PUSH1 0x40 DUP6 DUP6 DUP6 DUP3 PUSH1 0x0 MSTORE PUSH1 0x14 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x15 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP4 MLOAD SWAP3 DUP4 MSTORE DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x4D6F64756C6520616C726561647920657869737473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP5 ADD DUP4 SWAP1 MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20616464206D6F64756C650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xE379B3DEB66DDFA7962A2BDF35E9A08B5BED672C9DA3ECF7CC6174D253C6DFE5 PUSH2 0x14EB CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x2 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x150E DUP2 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1528 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x7 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1547 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x1 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x156F PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x22CE JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP5 PUSH1 0x0 NOT DUP7 LT PUSH2 0x15B6 JUMPI JUMPDEST POP POP PUSH2 0xCE7 SWAP4 POP PUSH2 0x236B JUMP JUMPDEST DUP5 DUP7 LT PUSH2 0x1622 JUMPI DUP2 ISZERO PUSH2 0x160A JUMPI CALLER ISZERO PUSH2 0x15F2 JUMPI POP PUSH2 0xCE7 SWAP5 DUP5 SWAP2 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE DUP5 DUP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP9 SWAP1 MSTORE SWAP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x0 PUSH2 0x120 PUSH1 0x40 MLOAD PUSH2 0x1670 DUP2 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MSTORE DUP3 PUSH1 0x80 DUP3 ADD MSTORE DUP3 PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD MSTORE DUP3 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE ADD MSTORE PUSH1 0x40 MLOAD SWAP1 PUSH2 0x16B7 DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C7 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST DUP3 MSTORE PUSH1 0x40 MLOAD PUSH2 0x16D9 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x16EE DUP2 PUSH2 0x229 DUP2 PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x1703 DUP2 PUSH2 0x229 DUP2 PUSH2 0x208D JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0xA SLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xB SLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC SLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x18CC JUMPI POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1740 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD DUP4 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x18A7 JUMPI DUP6 DUP6 PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0xD SLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE SLOAD PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0xFF PUSH1 0xF SLOAD AND ISZERO ISZERO PUSH2 0x120 DUP3 ADD MSTORE PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 MSTORE PUSH2 0x1808 PUSH2 0x17F2 PUSH2 0x17DC PUSH2 0x17C6 DUP6 MLOAD PUSH2 0x140 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x160 DUP7 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD DUP6 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD DUP4 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x80 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD SWAP1 PUSH1 0x1F NOT DUP4 DUP3 SUB ADD PUSH1 0xE0 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP5 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x187A JUMPI DUP7 DUP1 DUP8 PUSH2 0x120 DUP12 PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD DUP3 DUP6 ADD MSTORE ADD MLOAD ISZERO ISZERO PUSH2 0x140 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 PUSH1 0x20 DUP1 PUSH2 0x1898 PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP10 MLOAD PUSH2 0x2222 JUMP JUMPDEST SWAP8 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 DUP2 SWAP3 PUSH1 0x40 MLOAD PUSH2 0x18BE DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP3 ADD SWAP2 SWAP1 PUSH2 0x1771 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x16 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH2 0x192E DUP5 DUP5 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP2 DUP4 ADD SWAP3 DUP4 SLOAD SWAP3 PUSH2 0x1942 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x1ACE JUMPI PUSH2 0x1956 DUP7 PUSH2 0x2668 JUMP JUMPDEST DUP2 PUSH2 0x1AC6 JUMPI JUMPDEST POP ISZERO PUSH2 0x1A8C JUMPI POP PUSH1 0x7 SWAP1 PUSH1 0x1 SWAP5 DUP6 PUSH1 0xFF NOT DUP1 SWAP7 AND OR SWAP1 SSTORE ADD SWAP3 PUSH2 0x198E PUSH1 0x40 MLOAD PUSH2 0x1989 DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x2884 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE PUSH1 0x40 DUP3 DUP7 ADD MSTORE PUSH1 0x0 SWAP4 DUP1 SLOAD PUSH2 0x19A8 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST SWAP5 DUP6 PUSH1 0x40 DUP10 ADD MSTORE DUP4 DUP3 AND SWAP2 DUP3 PUSH1 0x0 EQ PUSH2 0x1A46 JUMPI POP POP PUSH1 0x1 EQ PUSH2 0x19ED JUMPI JUMPDEST PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP7 DUP7 SUB DUP8 LOG1 STOP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE DUP3 DUP2 KECCAK256 SWAP1 SWAP5 POP JUMPDEST DUP4 DUP6 LT PUSH2 0x1A32 JUMPI POP POP POP POP DUP2 ADD PUSH1 0x60 ADD DUP2 PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST DUP1 SLOAD DUP7 DUP7 ADD PUSH1 0x60 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x19F9 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP7 SWAP6 POP PUSH1 0x60 SWAP4 POP PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 SWAP7 SWAP5 SWAP3 POP AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 SWAP3 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x141C9BDC1BDCD85B081B9BDD081C185CDCD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 POP DUP8 PUSH2 0x195C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x159BDD1A5B99C81B9BDD08195B991959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x11 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x1B3C PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER ISZERO PUSH2 0x1BAA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x15F2 JUMPI POP CALLER PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP2 DUP6 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x3 SLOAD PUSH2 0x1BE4 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP1 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1C69 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C0E JUMPI JUMPDEST PUSH2 0xD78 DUP5 PUSH2 0xD64 DUP2 DUP7 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x1C51 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0x1BFE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1C39 JUMP JUMPDEST PUSH1 0xFF NOT AND PUSH1 0x20 DUP1 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 ISZERO ISZERO PUSH1 0x5 SHL DUP6 ADD SWAP1 SWAP3 ADD SWAP3 POP PUSH2 0xD64 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x1BFE JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x275D JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x24 CALLDATALOAD DUP2 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x1CE0 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0x229A JUMP JUMPDEST POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1CFB PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x1DA3 JUMPI PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 SWAP3 POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD EQ PUSH2 0x1D84 JUMPI JUMPDEST POP PUSH2 0x11EA PUSH1 0x13 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 PUSH1 0x7 PUSH2 0x1989 PUSH2 0x1D9D SWAP3 PUSH2 0x229 PUSH1 0x40 MLOAD DUP1 SWAP5 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST DUP4 PUSH2 0x1D60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP6 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x105B1C9958591E48195E1958DD5D1959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0xD78 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x7 DUP4 SLOAD SWAP4 PUSH2 0x1E1C DUP7 PUSH2 0x1E15 DUP2 PUSH1 0x1 DUP6 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP8 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD SWAP3 PUSH1 0xFF PUSH1 0x3 DUP4 ADD SLOAD SWAP2 DUP4 ADD SLOAD AND PUSH1 0x5 DUP4 ADD SLOAD SWAP2 PUSH2 0x1E5C PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x6 DUP7 ADD SLOAD AND SWAP5 PUSH2 0x1E55 PUSH1 0x40 MLOAD DUP1 SWAP9 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP7 PUSH2 0x21DD JUMP JUMPDEST PUSH2 0x1E78 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 MSTORE PUSH2 0x100 DUP1 PUSH1 0x20 DUP13 ADD MSTORE DUP11 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP6 PUSH1 0x40 DUP10 ADD MSTORE PUSH1 0x60 DUP9 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xE0 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1ED1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1EBB 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 0x1EB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1EEB DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F09 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x6 PUSH1 0x0 MSTORE PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1F4A JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F38 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1F8F DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1FAD JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x7 PUSH1 0x0 MSTORE PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1FEE JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1FDC JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2016 DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2034 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x8 PUSH1 0x0 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2075 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2063 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x209D DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x20BB JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x9 PUSH1 0x0 MSTORE PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x20FC JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x20EA JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0x2125 DUP4 PUSH2 0x1EA1 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x2187 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2147 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0x2173 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0x215C JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST PUSH2 0x140 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 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 SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x2212 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2202 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x223B DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x21C7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x226F DUP3 PUSH2 0x2247 JUMP JUMPDEST SWAP2 PUSH2 0x227D PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x21DD JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x2EF 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 0x2EF JUMPI DUP2 PUSH1 0x20 PUSH2 0x22B5 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 PUSH1 0x84 CALLDATALOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI PUSH2 0x22B5 SWAP2 PUSH1 0x4 ADD PUSH2 0x229A JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH2 0x32D PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x2EF JUMPI SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 DUP4 ISZERO PUSH2 0x2430 JUMPI AND SWAP3 DUP4 ISZERO PUSH2 0x2417 JUMPI PUSH1 0x0 SWAP1 DUP4 DUP3 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 SLOAD SWAP1 DUP4 DUP3 LT PUSH2 0x23E5 JUMPI POP SWAP2 PUSH1 0x40 DUP3 DUP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP6 DUP8 PUSH1 0x20 SWAP7 MSTORE DUP3 DUP7 MSTORE SUB DUP3 DUP3 KECCAK256 SSTORE DUP7 DUP2 MSTORE KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP4 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 SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x2456 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ISZERO PUSH2 0x2473 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4475726174696F6E206D75737420626520706F73697469766500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x24BF JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x10DA185A5B881B9BDD081CDD5C1C1BDC9D1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x2456 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x2517 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH2 0x2553 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH2 0x2548 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x253C JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH2 0x2533 JUMP JUMPDEST ISZERO PUSH2 0x2564 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20646F6573206E6F74206578697374000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x25B0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x5 SLOAD EQ PUSH2 0x2606 JUMPI PUSH1 0x2 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x261F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDE5B98D959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x2456 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x2683 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x3 PUSH1 0x2 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x26A9 PUSH1 0x2 SLOAD PUSH1 0x10 SLOAD SWAP1 PUSH2 0x2655 JUMP JUMPDEST DIV GT ISZERO SWAP3 DUP4 SWAP2 DUP3 PUSH2 0x26BB JUMPI JUMPDEST POP POP SWAP2 SWAP1 JUMP JUMPDEST GT SWAP1 POP CODESIZE DUP1 PUSH2 0x26B5 JUMP JUMPDEST ISZERO PUSH2 0x26CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20646F6573206E6F742065786973740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2718 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20616C7265616479206578656375746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x2777 DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH2 0x27A5 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x27B6 JUMPI POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x27D6 PUSH2 0x27C2 DUP3 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x27E9 JUMPI PUSH2 0x27E4 SWAP1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0x27A7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2857 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2851 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x284B JUMPI PUSH1 0x3 EQ PUSH2 0x2845 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x92DCECC2D8D2C840C6D0C2D2DC40D2DCC8CAF PUSH1 0x6B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0xA4B1 SWAP1 JUMP JUMPDEST POP PUSH1 0x38 SWAP1 JUMP JUMPDEST POP PUSH1 0x89 SWAP1 JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP3 PUSH1 0x40 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP2 ADD SWAP1 PUSH1 0x20 SWAP1 DUP1 DUP3 DUP5 ADD SWAP4 PUSH1 0x40 SWAP2 DUP3 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP3 SWAP1 DUP4 SWAP1 SUB PUSH2 0x2EF JUMPI DUP2 DUP2 ADD MLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI ADD SWAP2 DUP5 PUSH1 0x3F DUP5 ADD SLT ISZERO PUSH2 0x2EF JUMPI DUP4 DUP4 ADD MLOAD SWAP3 PUSH2 0x28E3 DUP5 PUSH2 0x2247 JUMP JUMPDEST SWAP4 PUSH2 0x28F0 DUP5 MLOAD SWAP6 DUP7 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP6 MSTORE DUP6 DUP6 ADD SWAP7 DUP5 DUP3 DUP5 ADD ADD GT PUSH2 0x2EF JUMPI DUP7 DUP5 PUSH2 0x290D SWAP4 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x2942 JUMPI POP POP SWAP2 PUSH2 0x2930 SWAP2 DUP4 PUSH2 0x2940 SWAP5 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH2 0x236B JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 SWAP1 PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x29D9 JUMPI POP SWAP1 DUP3 DUP3 PUSH2 0x2965 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 DUP4 ISZERO PUSH2 0x29C2 JUMPI SWAP2 DUP2 PUSH1 0x0 SWAP4 PUSH2 0x29A9 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP5 PUSH1 0x2 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x2 SSTORE DUP6 DUP6 MSTORE DUP5 DUP4 MSTORE DUP1 DUP6 KECCAK256 DUP3 DUP2 SLOAD ADD SWAP1 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP4 SWAP5 SWAP4 PUSH4 0x2770A7EB PUSH1 0xE2 SHL SUB PUSH2 0x2AA7 JUMPI SWAP1 DUP3 DUP3 PUSH2 0x29F9 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2A8F JUMPI PUSH1 0x0 SWAP3 DUP3 DUP5 MSTORE DUP4 DUP3 MSTORE DUP6 DUP5 KECCAK256 SLOAD SWAP6 DUP2 DUP8 LT PUSH2 0x2A61 JUMPI DUP2 DUP6 SWAP7 SWAP8 DUP6 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP7 SWAP8 MSTORE DUP8 DUP6 MSTORE SUB DUP2 DUP8 KECCAK256 SSTORE DUP2 PUSH1 0x2 SLOAD SUB PUSH1 0x2 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST 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 DUP8 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2AB735B737BBB71037B832B930BA34B7B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATASIZE SWAP13 0x2E SWAP12 0xDE PUSH32 0xE9A6FCE04EFDC03DFD744B785D973D2ED5FA6B725A17CFBF8E6164736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"359:24192:6:-:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;:::i;:::-;;;;;;;4198:11;;359:24192;;;4211:13;359:24192;;4198:11;;4211:13;;359:24192;-1:-1:-1;;;;;359:24192:6;;;;;1667:13:1;359:24192:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;1667:13:1;359:24192:6;;;;-1:-1:-1;;;;;359:24192:6;;;;;1690:17:1;359:24192:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;1690:17:1;359:24192:6;;;;;4274:11;;359:24192;;;;4307:13;359:24192;;;4344:15;359:24192;;;4386:18;359:24192;;;;;;;;;;;;4510:17;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:397;;359:24192;;4246:397;;359:24192;;4246:397;;359:24192;;4246:397;;359:24192;;4246:397;;359:24192;;4246:397;;359:24192;;4246:397;;359:24192;4589:15;359:24192;4246:397;;359:24192;;;4246:397;;359:24192;;;;;;;;;;;;;4236:407;359:24192;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;4236:407;359:24192;;;4246:397;;359:24192;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;4246:397;;359:24192;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;4246:397;;359:24192;;;;;4246:397;-1:-1:-1;;;;;359:24192:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;4246:397;;359:24192;;;;4246:397;;359:24192;;;;4246:397;;359:24192;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;4246:397;;359:24192;4246:397;359:24192;4246:397;;359:24192;;;;4246:397;;359:24192;;;4246:397;359:24192;;;;;;;;;;;;;;;;;;4662:42;359:24192;4714:32;359:24192;-1:-1:-1;4892:3:6;359:24192;;;4859:24;359:24192;;;4855:35;;;;;4927:27;;4892:3;4927:27;;:::i;:::-;359:24192;-1:-1:-1;359:24192:6;4911:15;359:24192;;;-1:-1:-1;359:24192:6;;;;;;;;;;4892:3;:::i;:::-;4840:13;;4855:35;;359:24192;;;5078:22;359:24192;;;;5111:21;359:24192;5078:61;359:24192;;;;;5184:22;359:24192;5184:33;359:24192;;-1:-1:-1;5315:3:6;359:24192;;;5284:22;359:24192;;5280:33;;;;;-1:-1:-1;;;;;359:24192:6;;;5342:25;;359:24192;;5342:25;:::i;:::-;359:24192;;5342:39;359:24192;;5420:24;359:24192;;;;5420:21;:24;:::i;:::-;359:24192;5420:28;359:24192;;5484:25;359:24192;;;;5484:22;:25;:::i;:::-;359:24192;;;5511:24;359:24192;;;;5511:21;:24;:::i;:::-;359:24192;7528:21:1;;;7524:91;;359:24192:6;;;;;;;;;7083:25:1;359:24192:6;;5315:3;359:24192;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;7083:25:1;5315:3:6;:::i;:::-;5265:13;;359:24192;;;;-1:-1:-1;359:24192:6;;1690:17:1;359:24192:6;;-1:-1:-1;359:24192:6;7524:91:1;359:24192:6;;-1:-1:-1;;;7572:32:1;;-1:-1:-1;1690:17:1;7572:32;;359:24192:6;;;7572:32:1;359:24192:6;;;-1:-1:-1;;;359:24192:6;;;1690:17:1;359:24192:6;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;1690:17:1;359:24192:6;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;5280:33;;359:24192;;;5595:22;359:24192;;;5619:21;359:24192;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;5570:71;359:24192;;;;;;;;;;;;;:::i;:::-;5570:71;;;5684:11;;359:24192;;;5709:13;359:24192;;;5736:15;359:24192;;;;5765:18;359:24192;;;;;;;;;;;;;;;5856:17;359:24192;;;;;;;;;5938:24;359:24192;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;5656:316;359:24192;;;;;;;;;;5919:4;359:24192;;;;;;;;;;;;:::i;:::-;5656:316;;;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;1690:17:1;359:24192:6;;;4714:32;359:24192;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;1690:17:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;-1:-1:-1;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;-1:-1:-1;359:24192:6;;1690:17:1;359:24192:6;;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24192:6;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24192:6;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24192:6;;;;;4236:407;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;4236:407;359:24192;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4236:407;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24192:6;;;;;1690:17:1;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:1;359:24192:6;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:1;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;359:24192:6;;;;;1667:13:1;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;1667:13:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:13:1;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;359:24192:6;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;-1:-1:-1;;359:24192:6;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;-1:-1:-1;;;;;359:24192:6;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;359:24192:6;;;;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":8910,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_28165":{"entryPoint":8888,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_payablet_uint256_fromMemory":{"entryPoint":10333,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_available_length_bytes":{"entryPoint":8803,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes":{"entryPoint":8858,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint256t_bool":{"entryPoint":9036,"id":null,"parameterSlots":1,"returnSlots":2},"abi_decode_uint256t_uint256t_uint256t_uint256t_bytes":{"entryPoint":8932,"id":null,"parameterSlots":1,"returnSlots":5},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_bool_bool":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_string":{"entryPoint":8738,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage":{"entryPoint":8468,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage_28169":{"entryPoint":7899,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28170":{"entryPoint":8063,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28171":{"entryPoint":8198,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_28172":{"entryPoint":8333,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_uint256_address_bool_uint256":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":8775,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_uint256":{"entryPoint":9289,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_uint256":{"entryPoint":9813,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":9481,"id":null,"parameterSlots":3,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":8703,"id":null,"parameterSlots":3,"returnSlots":0},"external_fun_checkChainConnection":{"entryPoint":8991,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":7841,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":8669,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_28167":{"entryPoint":8618,"id":null,"parameterSlots":1,"returnSlots":0},"fun_checkChainConnection":{"entryPoint":null,"id":2186,"parameterSlots":1,"returnSlots":1},"fun_checkMultiSigResult":{"entryPoint":10077,"id":2049,"parameterSlots":1,"returnSlots":2},"fun_checkProposalResult":{"entryPoint":9832,"id":1643,"parameterSlots":1,"returnSlots":2},"fun_checkSyncReadiness":{"entryPoint":10124,"id":2239,"parameterSlots":1,"returnSlots":1},"fun_executeOperation":{"entryPoint":10372,"id":2457,"parameterSlots":1,"returnSlots":0},"fun_getSupportedChainId":{"entryPoint":10221,"id":2342,"parameterSlots":1,"returnSlots":1},"fun_nonReentrantBefore":{"entryPoint":9717,"id":834,"parameterSlots":0,"returnSlots":0},"fun_transfer":{"entryPoint":9067,"id":381,"parameterSlots":3,"returnSlots":0},"increment_uint256":{"entryPoint":9466,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral":{"entryPoint":9641,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_8ad9":{"entryPoint":9400,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_8e62":{"entryPoint":9565,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_a88b":{"entryPoint":9925,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_b44f":{"entryPoint":9752,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_d556":{"entryPoint":10001,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_e2db":{"entryPoint":9324,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea26469706673582212203d9c2e9bde7fe9a6fce04efdc03dfd744b785d973d2ed5fa6b725a17cfbf8e6164736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE PUSH1 0x4 DUP1 CALLDATASIZE LT ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR SWAP2 DUP3 PUSH4 0x13CF08B EQ PUSH2 0x1DDA JUMPI POP DUP2 PUSH4 0x44BC2BD EQ PUSH2 0x1CAB JUMPI DUP2 PUSH4 0x57B2074 EQ PUSH2 0x1C90 JUMPI DUP2 PUSH4 0x6FDDE03 EQ PUSH2 0x1BC2 JUMPI DUP2 PUSH4 0x95EA7B3 EQ PUSH2 0x1B23 JUMPI DUP2 PUSH4 0xC0512E9 EQ PUSH2 0x1B05 JUMPI DUP2 PUSH4 0xD61B519 EQ PUSH2 0x18FF JUMPI DUP2 PUSH4 0x18160DDD EQ PUSH2 0x18E1 JUMPI DUP2 PUSH4 0x204C5D1F EQ PUSH2 0x164E JUMPI DUP2 PUSH4 0x22DBEFBB EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0x23B872DD EQ PUSH2 0x1556 JUMPI DUP2 PUSH4 0x2EE09598 EQ PUSH2 0x14BC JUMPI DUP2 PUSH4 0x313CE567 EQ PUSH2 0x14A0 JUMPI DUP2 PUSH4 0x35324EEE EQ PUSH2 0x1338 JUMPI DUP2 PUSH4 0x3B60288A EQ PUSH2 0x1309 JUMPI DUP2 PUSH4 0x4114509B EQ PUSH2 0x11EF JUMPI DUP2 PUSH4 0x456D10C1 EQ PUSH2 0x1109 JUMPI DUP2 PUSH4 0x4B145793 EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0x4DE184F6 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x4FA76EC9 EQ PUSH2 0x10EB JUMPI DUP2 PUSH4 0x5221C1F0 EQ PUSH2 0x10E6 JUMPI DUP2 PUSH4 0x548D496F EQ PUSH2 0x10B7 JUMPI DUP2 PUSH4 0x5CF0E8A4 EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x6CBADBFA EQ PUSH2 0x1099 JUMPI DUP2 PUSH4 0x70A08231 EQ PUSH2 0x105F JUMPI DUP2 PUSH4 0x7CE288EA EQ PUSH2 0xF6B JUMPI DUP2 PUSH4 0x7E5A9B47 EQ PUSH2 0xF3C JUMPI DUP2 PUSH4 0x893D692A EQ PUSH2 0xE20 JUMPI DUP2 PUSH4 0x8C7B04C9 EQ PUSH2 0xE02 JUMPI DUP2 PUSH4 0x95D89B41 EQ PUSH2 0xD17 JUMPI DUP2 PUSH4 0x9A49BDDE EQ PUSH2 0xCF2 JUMPI DUP2 PUSH4 0xA9059CBB EQ PUSH2 0xCC1 JUMPI DUP2 PUSH4 0xAF89D2C4 EQ PUSH2 0xC92 JUMPI DUP2 PUSH4 0xB00E0730 EQ PUSH2 0xB6E JUMPI DUP2 PUSH4 0xB0B6CC1A EQ PUSH2 0xB3C JUMPI DUP2 PUSH4 0xB3594510 EQ PUSH2 0x774 JUMPI DUP2 PUSH4 0xB3FE8BCB EQ PUSH2 0x745 JUMPI DUP2 PUSH4 0xC51CAB3A EQ PUSH2 0x6D5 JUMPI DUP2 PUSH4 0xC9D27AFE EQ PUSH2 0x54E JUMPI DUP2 PUSH4 0xCCD7A490 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xDD62ED3E EQ PUSH2 0x337 JUMPI DUP2 PUSH4 0xE49A62E9 EQ PUSH2 0x310 JUMPI DUP2 PUSH4 0xECED3DFB EQ PUSH2 0x2F4 JUMPI POP PUSH4 0xF2C26A47 EQ PUSH2 0x205 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x2A4 PUSH1 0x40 MLOAD PUSH2 0x230 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x258 DUP3 PUSH2 0x251 DUP2 PUSH2 0x2006 JUMP JUMPDEST SUB DUP4 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x270 DUP4 PUSH2 0x269 DUP2 PUSH2 0x208D JUMP JUMPDEST SUB DUP5 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP3 PUSH1 0xB SLOAD PUSH2 0x2CE PUSH1 0xD SLOAD SWAP3 PUSH2 0x2C0 PUSH1 0xE SLOAD SWAP6 PUSH2 0x2B2 PUSH1 0xFF PUSH1 0xF SLOAD AND SWAP9 PUSH1 0x40 MLOAD SWAP13 DUP14 SWAP13 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP5 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x32D PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x278C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x350 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x22CE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x396 CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x39F PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x17 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x3BC DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP1 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x51A JUMPI PUSH2 0x3D8 PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x2711 JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x4E5 JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x4AD JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78B8E65C466DF05EA5DDF0593B44648ECA1F35C039F180E31257A6F1BDD005DC SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x498 JUMPI PUSH1 0x1 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE CALLER PUSH1 0x20 DUP6 ADD MSTORE SWAP4 ISZERO ISZERO SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x60 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x80 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x5 SSTORE STOP JUMPDEST PUSH1 0x2 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDA59DB9959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x14DA59DB9A5B99C8195B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH2 0x55C CALLDATASIZE PUSH2 0x234C JUMP JUMPDEST SWAP1 PUSH2 0x565 PUSH2 0x25F5 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 PUSH1 0x16 DUP5 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x582 DUP4 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x6A2 JUMPI PUSH2 0x59E PUSH1 0xFF DUP3 DUP5 ADD SLOAD AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x8 DUP3 ADD SWAP1 CALLER PUSH1 0x0 MSTORE DUP2 DUP7 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x66E JUMPI CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP7 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x636 JUMPI POP SWAP4 PUSH2 0x48E SWAP2 PUSH32 0x78975AAF742630489BADD22949B88AC50EAAEA576339EE05440B671A33BFB6A9 SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP5 PUSH1 0x0 EQ PUSH2 0x628 JUMPI PUSH1 0x2 ADD PUSH2 0x462 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x4A6 DUP3 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x4E6F20746F6B656E7320746F20766F7465 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x105B1C9958591E481D9BDD1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x159BDD1A5B99C8195B991959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 PUSH1 0xC0 SWAP2 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH1 0x1 DUP2 ADD SLOAD SWAP2 PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0xFF PUSH1 0x3 DUP5 ADD SLOAD AND SWAP2 DUP4 ADD SLOAD SWAP3 PUSH1 0x5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB SWAP2 ADD SLOAD AND SWAP4 PUSH1 0x40 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE ISZERO ISZERO PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 DUP3 GT PUSH2 0x2EF JUMPI CALLDATASIZE PUSH1 0x23 DUP4 ADD SLT ISZERO PUSH2 0x2EF JUMPI PUSH2 0x7B7 PUSH1 0x24 SWAP3 CALLDATASIZE SWAP1 DUP5 DUP2 DUP6 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 DUP3 CALLDATALOAD SWAP4 PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x7D2 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0x229A JUMP JUMPDEST SWAP5 PUSH1 0x64 CALLDATALOAD SWAP6 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP7 PUSH1 0x0 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xAED JUMPI PUSH2 0x7F8 DUP4 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x18 DUP9 MSTORE PUSH2 0x811 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 DUP8 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x11 SLOAD SWAP6 PUSH2 0x833 DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x11 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x16 DUP9 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP8 DUP2 SSTORE PUSH1 0x1 SWAP4 DUP5 DUP3 ADD DUP9 MLOAD DUP8 DUP2 GT PUSH2 0xAA0 JUMPI PUSH2 0x869 DUP2 PUSH2 0x863 DUP5 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP5 PUSH2 0x2509 JUMP JUMPDEST DUP12 DUP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0xA2B JUMPI POP SWAP2 DUP2 PUSH1 0x7 SWAP6 SWAP5 SWAP3 PUSH2 0x8BC SWAP5 PUSH1 0x0 SWAP2 PUSH2 0xA20 JUMPI JUMPDEST POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP10 SHL OR SWAP1 SSTORE JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP5 ADD SSTORE PUSH1 0x0 PUSH1 0x3 DUP5 ADD SSTORE DUP9 DUP4 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SSTORE PUSH1 0x6 DUP2 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE ADD SWAP5 DUP3 MLOAD SWAP5 DUP6 GT PUSH2 0xA0D JUMPI POP POP PUSH2 0x8F8 DUP4 PUSH2 0x8F2 DUP7 SLOAD PUSH2 0x1EA1 JUMP JUMPDEST DUP7 PUSH2 0x2509 JUMP JUMPDEST DUP7 SWAP1 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH2 0x980 JUMPI SWAP3 DUP1 PUSH2 0x96A SWAP6 SWAP4 DUP2 SWAP4 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP9 SWAP7 PUSH1 0x0 SWAP5 PUSH2 0x975 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP6 DUP4 MSTORE CALLER DUP8 DUP5 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST ADD MLOAD SWAP3 POP DUP11 DUP1 PUSH2 0x939 JUMP JUMPDEST SWAP1 PUSH1 0x1F SWAP4 SWAP3 SWAP4 NOT DUP4 AND SWAP2 DUP6 PUSH1 0x0 MSTORE DUP9 PUSH1 0x0 KECCAK256 SWAP3 PUSH1 0x0 JUMPDEST DUP11 DUP3 DUP3 LT PUSH2 0x9F9 JUMPI POP POP SWAP2 PUSH32 0x7585F467599D0F008985F231AF99293BE388626AC16CA59505C2F8F88969CD63 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x96A SWAP9 SWAP7 SWAP5 LT PUSH2 0x9E0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x94B JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP9 DUP1 DUP1 PUSH2 0x9D3 JUMP JUMPDEST DUP4 DUP6 ADD MLOAD DUP7 SSTORE SWAP5 DUP8 ADD SWAP5 SWAP4 DUP5 ADD SWAP4 ADD PUSH2 0x996 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST SWAP1 POP DUP13 ADD MLOAD DUP16 PUSH2 0x88A JUMP JUMPDEST DUP9 SWAP3 SWAP2 DUP13 PUSH1 0x1F NOT DUP5 AND DUP7 PUSH1 0x0 MSTORE DUP4 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xA85 JUMPI POP POP SWAP2 PUSH1 0x7 SWAP9 SWAP8 SWAP6 SWAP4 SWAP2 DUP6 PUSH2 0x8BC SWAP9 SWAP7 SWAP5 LT PUSH2 0xA6C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH2 0x89D JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE DUP16 DUP1 DUP15 PUSH2 0xA5F JUMP JUMPDEST SWAP3 DUP5 ADD MLOAD DUP6 SSTORE DUP13 SWAP7 SWAP1 SWAP5 ADD SWAP4 SWAP3 DUP3 ADD SWAP3 DUP16 SWAP3 SWAP1 DUP2 ADD SWAP1 PUSH2 0xA41 JUMP JUMPDEST DUP5 PUSH1 0x41 DUP11 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP6 ADD DUP9 SWAP1 MSTORE PUSH1 0x13 DUP2 DUP9 ADD MSTORE PUSH19 0x436861696E206E6F7420617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP7 ADD DUP10 SWAP1 MSTORE PUSH1 0x23 DUP2 DUP10 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F206372656174652070726F706F PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x1CD85B PUSH1 0xEA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x14 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 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD CALLER PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0xC42 JUMPI PUSH1 0x60 PUSH1 0x20 SWAP4 PUSH1 0x5 DUP4 PUSH2 0xBCD PUSH32 0x8D5C76B09B9C1F4D0453D21436DCB0B568A50E9C0AE059E4D0AE8C95C71D07F0 SWAP6 ISZERO ISZERO PUSH2 0x246C JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP6 PUSH2 0xBDA DUP8 PUSH2 0x24FA JUMP JUMPDEST PUSH1 0x12 SSTORE DUP7 PUSH1 0x0 MSTORE PUSH1 0x17 DUP9 MSTORE PUSH2 0xC11 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP6 DUP5 SSTORE PUSH1 0x0 PUSH1 0x1 DUP6 ADD SSTORE PUSH1 0x0 PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x3 DUP5 ADD PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE TIMESTAMP PUSH2 0x2449 JUMP JUMPDEST SWAP1 DUP3 ADD SSTORE ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP5 DUP3 MSTORE CALLER DUP7 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP5 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20637265617465206F70657261 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x3A34B7B7 PUSH1 0xE1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x1A PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xCE7 PUSH2 0xCDD PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x236B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xD0F PUSH1 0x20 SWAP2 CALLDATALOAD PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 SWAP1 DUP1 SLOAD PUSH2 0xD3A DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0xDD8 JUMPI POP PUSH1 0x1 EQ PUSH2 0xD7C JUMPI JUMPDEST PUSH2 0xD78 DUP6 PUSH2 0xD64 DUP2 DUP8 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xDC0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0xD78 PUSH2 0xD54 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0xDA5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0xD78 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0xD64 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0xD54 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x12 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 DUP2 SLOAD SWAP2 PUSH2 0xE51 DUP4 ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x3 DUP2 ADD SWAP2 DUP1 DUP4 SLOAD SWAP3 PUSH2 0xE67 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x2711 JUMP JUMPDEST ADD SLOAD TIMESTAMP LT PUSH2 0xF04 JUMPI PUSH2 0xE78 DUP6 PUSH2 0x275D JUMP JUMPDEST DUP2 PUSH2 0xEFC JUMPI JUMPDEST POP ISZERO PUSH2 0xEC1 JUMPI PUSH32 0x64CEE5A70D662A7EEF5B2A171DAA51DC624F3D64A35D0855B385262B893DC5A5 PUSH1 0x40 DUP7 DUP7 DUP7 PUSH1 0x1 DUP8 PUSH1 0xFF NOT AND OR SWAP1 SSTORE DUP3 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x13DC195C985D1A5BDB881B9BDD081C185CDCD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 POP DUP7 PUSH2 0xE7E JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x14DA59DB9A5B99C81B9BDD08195B991959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE SWAP1 ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xF88 DUP3 PUSH2 0x278C JUMP JUMPDEST ISZERO PUSH2 0x1024 JUMPI PUSH1 0x13 SLOAD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0xFC7 JUMPI PUSH32 0x57DF5A6A467271F04B10F7FE9E66D21DCD8AE7EAF079099D48959F24A53B6910 PUSH1 0x20 DUP6 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG1 STOP JUMPDEST DUP1 PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 PUSH2 0x1017 PUSH2 0xFF8 PUSH2 0x101F SWAP5 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP8 DUP11 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SUB SWAP1 LOG1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0xF93 JUMP JUMPDEST PUSH1 0x64 SWAP1 PUSH1 0x20 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F7420616C6C20636861696E73207265616479 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x1080 PUSH2 0x22B8 JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH2 0x231F JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x10 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xCA1838D50CA3156F1ACE7CDE39A081CC9C9A333AF6FCA55DB71817F8717E1DCB PUSH2 0x1138 CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x115B DUP7 DUP3 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1175 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x9 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1194 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x2 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST SWAP1 SSTORE DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH2 0x11EA PUSH1 0x13 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 SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 CALLER PUSH1 0x0 MSTORE PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x12BD JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x1283 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x14 DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x15 DUP4 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD SWAP2 DUP3 MSTORE PUSH32 0x4C7C76ABE482A2C36EA52F1B999474C69F8B4AFEEAC5635F8AEA2526864BA853 SWAP2 LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x135BD91D5B1948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x84 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F2072656D6F7665206D6F64756C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0x1354 PUSH2 0x22CE JUMP JUMPDEST CALLER PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD ISZERO PUSH2 0x145C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x142B JUMPI DUP4 PUSH1 0x0 MSTORE PUSH1 0x15 DUP3 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x13F1 JUMPI PUSH32 0xF14475B19484BF096265507CC0C41CD3BF1994992088806830686E2D72722719 PUSH1 0x40 DUP6 DUP6 DUP6 DUP3 PUSH1 0x0 MSTORE PUSH1 0x14 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0xA0 SHL DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x15 DUP2 MSTORE DUP4 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE DUP4 MLOAD SWAP3 DUP4 MSTORE DUP3 ADD MSTORE LOG1 STOP JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x4D6F64756C6520616C726561647920657869737473 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x64 SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH3 0x461BCD PUSH1 0xE5 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE DUP1 DUP5 ADD DUP4 SWAP1 MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D75737420686F6C6420746F6B656E7320746F20616464206D6F64756C650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH32 0xE379B3DEB66DDFA7962A2BDF35E9A08B5BED672C9DA3ECF7CC6174D253C6DFE5 PUSH2 0x14EB CALLDATASIZE PUSH2 0x22E4 JUMP JUMPDEST POP DUP4 PUSH1 0x0 SWAP5 SWAP4 SWAP5 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH2 0x11AE PUSH1 0x2 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x150E DUP2 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST DUP7 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1528 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST PUSH1 0x7 DUP2 ADD SWAP5 DUP8 PUSH1 0x0 MSTORE DUP6 PUSH1 0x20 MSTORE PUSH2 0x1547 PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0x2618 JUMP JUMPDEST PUSH2 0x11A3 PUSH1 0x1 DUP4 ADD SWAP2 DUP3 SLOAD PUSH2 0x2449 JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x156F PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x22CE JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD SWAP5 PUSH1 0x0 NOT DUP7 LT PUSH2 0x15B6 JUMPI JUMPDEST POP POP PUSH2 0xCE7 SWAP4 POP PUSH2 0x236B JUMP JUMPDEST DUP5 DUP7 LT PUSH2 0x1622 JUMPI DUP2 ISZERO PUSH2 0x160A JUMPI CALLER ISZERO PUSH2 0x15F2 JUMPI POP PUSH2 0xCE7 SWAP5 DUP5 SWAP2 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 CALLER PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE DUP5 DUP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x0 PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP9 SWAP1 MSTORE SWAP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x0 PUSH2 0x120 PUSH1 0x40 MLOAD PUSH2 0x1670 DUP2 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MSTORE DUP3 PUSH1 0x80 DUP3 ADD MSTORE DUP3 PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD MSTORE DUP3 PUSH1 0xE0 DUP3 ADD MSTORE DUP3 PUSH2 0x100 DUP3 ADD MSTORE ADD MSTORE PUSH1 0x40 MLOAD SWAP1 PUSH2 0x16B7 DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C7 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1EDB JUMP JUMPDEST DUP3 MSTORE PUSH1 0x40 MLOAD PUSH2 0x16D9 DUP2 PUSH2 0x229 DUP2 PUSH2 0x1F7F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x16EE DUP2 PUSH2 0x229 DUP2 PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH2 0x1703 DUP2 PUSH2 0x229 DUP2 PUSH2 0x208D JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0xA SLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xB SLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC SLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x18CC JUMPI POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1740 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD DUP4 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD PUSH1 0xC PUSH1 0x0 MSTORE PUSH32 0xDF6966C971051C3D54EC59162606531493A51404A002842F56009D7E5CF4A8C7 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x18A7 JUMPI DUP6 DUP6 PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0xD SLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE SLOAD PUSH2 0x100 DUP3 ADD MSTORE PUSH1 0xFF PUSH1 0xF SLOAD AND ISZERO ISZERO PUSH2 0x120 DUP3 ADD MSTORE PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 MSTORE PUSH2 0x1808 PUSH2 0x17F2 PUSH2 0x17DC PUSH2 0x17C6 DUP6 MLOAD PUSH2 0x140 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x160 DUP7 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD DUP6 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD DUP4 DUP3 SUB PUSH1 0x1F NOT ADD PUSH1 0x80 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD SWAP1 PUSH1 0x1F NOT DUP4 DUP3 SUB ADD PUSH1 0xE0 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 PUSH1 0x20 DUP1 DUP4 PUSH1 0x5 SHL DUP4 ADD ADD SWAP5 ADD SWAP3 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH2 0x187A JUMPI DUP7 DUP1 DUP8 PUSH2 0x120 DUP12 PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD DUP3 DUP6 ADD MSTORE ADD MLOAD ISZERO ISZERO PUSH2 0x140 DUP4 ADD MSTORE SUB SWAP1 RETURN JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 PUSH1 0x20 DUP1 PUSH2 0x1898 PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP10 MLOAD PUSH2 0x2222 JUMP JUMPDEST SWAP8 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP4 SWAP3 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 DUP2 SWAP3 PUSH1 0x40 MLOAD PUSH2 0x18BE DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP3 ADD SWAP2 SWAP1 PUSH2 0x1771 JUMP JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x2EF JUMPI DUP2 CALLDATALOAD SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x16 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH2 0x192E DUP5 DUP5 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP2 DUP4 ADD SWAP3 DUP4 SLOAD SWAP3 PUSH2 0x1942 PUSH1 0xFF DUP6 AND ISZERO PUSH2 0x25A9 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x1ACE JUMPI PUSH2 0x1956 DUP7 PUSH2 0x2668 JUMP JUMPDEST DUP2 PUSH2 0x1AC6 JUMPI JUMPDEST POP ISZERO PUSH2 0x1A8C JUMPI POP PUSH1 0x7 SWAP1 PUSH1 0x1 SWAP5 DUP6 PUSH1 0xFF NOT DUP1 SWAP7 AND OR SWAP1 SSTORE ADD SWAP3 PUSH2 0x198E PUSH1 0x40 MLOAD PUSH2 0x1989 DUP2 PUSH2 0x229 DUP2 DUP10 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x2884 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE PUSH1 0x40 DUP3 DUP7 ADD MSTORE PUSH1 0x0 SWAP4 DUP1 SLOAD PUSH2 0x19A8 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST SWAP5 DUP6 PUSH1 0x40 DUP10 ADD MSTORE DUP4 DUP3 AND SWAP2 DUP3 PUSH1 0x0 EQ PUSH2 0x1A46 JUMPI POP POP PUSH1 0x1 EQ PUSH2 0x19ED JUMPI JUMPDEST PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP7 DUP7 SUB DUP8 LOG1 STOP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE DUP3 DUP2 KECCAK256 SWAP1 SWAP5 POP JUMPDEST DUP4 DUP6 LT PUSH2 0x1A32 JUMPI POP POP POP POP DUP2 ADD PUSH1 0x60 ADD DUP2 PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST DUP1 SLOAD DUP7 DUP7 ADD PUSH1 0x60 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x19F9 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP7 SWAP6 POP PUSH1 0x60 SWAP4 POP PUSH32 0xBADBD87941BB6424ED4AA4719BF01A3319B64480E49F89018C718603239553D2 SWAP7 SWAP5 SWAP3 POP AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP2 SWAP3 DUP5 DUP1 PUSH2 0x19C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x141C9BDC1BDCD85B081B9BDD081C185CDCD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 POP DUP8 PUSH2 0x195C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x159BDD1A5B99C81B9BDD08195B991959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH1 0x11 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0x1B3C PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER ISZERO PUSH2 0x1BAA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 ISZERO PUSH2 0x15F2 JUMPI POP CALLER PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP2 DUP6 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x3 SLOAD PUSH2 0x1BE4 DUP2 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP1 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1C69 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C0E JUMPI JUMPDEST PUSH2 0xD78 DUP5 PUSH2 0xD64 DUP2 DUP7 SUB DUP3 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP3 POP PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x1C51 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0xD64 DUP3 PUSH2 0x1BFE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1C39 JUMP JUMPDEST PUSH1 0xFF NOT AND PUSH1 0x20 DUP1 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 ISZERO ISZERO PUSH1 0x5 SHL DUP6 ADD SWAP1 SWAP3 ADD SWAP3 POP PUSH2 0xD64 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x1BFE JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH2 0xF57 SWAP1 CALLDATALOAD PUSH2 0x275D JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x24 CALLDATALOAD DUP2 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x2EF JUMPI PUSH2 0x1CE0 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0x229A JUMP JUMPDEST POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH2 0x1CFB PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH2 0x1DA3 JUMPI PUSH32 0x42E60114B8BC5803B43A4BCD35572ECE9A5E2CABB79A838A02D56A4C53E83313 SWAP3 POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x19 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD EQ PUSH2 0x1D84 JUMPI JUMPDEST POP PUSH2 0x11EA PUSH1 0x13 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 PUSH1 0x7 PUSH2 0x1989 PUSH2 0x1D9D SWAP3 PUSH2 0x229 PUSH1 0x40 MLOAD DUP1 SWAP5 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST DUP4 PUSH2 0x1D60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 DUP2 DUP6 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x105B1C9958591E48195E1958DD5D1959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI DUP1 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0xD78 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x7 DUP4 SLOAD SWAP4 PUSH2 0x1E1C DUP7 PUSH2 0x1E15 DUP2 PUSH1 0x1 DUP6 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP8 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD SWAP3 PUSH1 0xFF PUSH1 0x3 DUP4 ADD SLOAD SWAP2 DUP4 ADD SLOAD AND PUSH1 0x5 DUP4 ADD SLOAD SWAP2 PUSH2 0x1E5C PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x6 DUP7 ADD SLOAD AND SWAP5 PUSH2 0x1E55 PUSH1 0x40 MLOAD DUP1 SWAP9 DUP2 SWAP4 ADD PUSH2 0x2114 JUMP JUMPDEST SUB DUP7 PUSH2 0x21DD JUMP JUMPDEST PUSH2 0x1E78 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 MSTORE PUSH2 0x100 DUP1 PUSH1 0x20 DUP13 ADD MSTORE DUP11 ADD SWAP1 PUSH2 0x2222 JUMP JUMPDEST SWAP6 PUSH1 0x40 DUP10 ADD MSTORE PUSH1 0x60 DUP9 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xE0 DUP6 ADD MSTORE PUSH2 0x2222 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1ED1 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1EBB 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 0x1EB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1EEB DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F09 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x6 PUSH1 0x0 MSTORE PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1F4A JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F38 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x1F8F DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1FAD JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x7 PUSH1 0x0 MSTORE PUSH32 0xA66CC928B5EDB82AF9BD49922954155AB7B0942694BEA4CE44661D9A8736C688 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1FEE JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1FDC JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2016 DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2034 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x8 PUSH1 0x0 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2075 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2063 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x209D DUP3 PUSH2 0x1EA1 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1F62 JUMPI POP PUSH1 0x1 EQ PUSH2 0x20BB JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x9 PUSH1 0x0 MSTORE PUSH32 0x6E1540171B6C0C960B71A7020D9F60077F6AF931A8BBF590DA0223DACF75C7AF SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x20FC JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x20EA JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP3 SWAP2 DUP1 SLOAD SWAP2 PUSH2 0x2125 DUP4 PUSH2 0x1EA1 JUMP JUMPDEST SWAP2 DUP3 DUP3 MSTORE PUSH1 0x1 SWAP4 DUP5 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x2187 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2147 JUMPI JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 SWAP2 SWAP4 SWAP5 POP PUSH1 0x0 MSTORE PUSH1 0x20 SWAP3 DUP4 PUSH1 0x0 KECCAK256 SWAP3 DUP5 PUSH1 0x0 SWAP5 JUMPDEST DUP4 DUP7 LT PUSH2 0x2173 JUMPI POP POP POP POP ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST DUP1 SLOAD DUP6 DUP8 ADD DUP4 ADD MSTORE SWAP5 ADD SWAP4 DUP6 SWAP1 DUP3 ADD PUSH2 0x215C JUMP JUMPDEST SWAP3 SWAP5 POP POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 CODESIZE DUP1 DUP1 DUP1 PUSH2 0x2141 JUMP JUMPDEST PUSH2 0x140 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 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 SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x21C7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x2212 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2202 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x223B DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0x21C7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x226F DUP3 PUSH2 0x2247 JUMP JUMPDEST SWAP2 PUSH2 0x227D PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x21DD JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x2EF 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 0x2EF JUMPI DUP2 PUSH1 0x20 PUSH2 0x22B5 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x2263 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x2EF JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH1 0x64 CALLDATALOAD SWAP2 PUSH1 0x84 CALLDATALOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI PUSH2 0x22B5 SWAP2 PUSH1 0x4 ADD PUSH2 0x229A JUMP JUMPDEST CALLVALUE PUSH2 0x2EF JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x20 PUSH2 0x32D PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH1 0x3 NOT ADD SLT PUSH2 0x2EF JUMPI PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x2EF JUMPI SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 DUP4 ISZERO PUSH2 0x2430 JUMPI AND SWAP3 DUP4 ISZERO PUSH2 0x2417 JUMPI PUSH1 0x0 SWAP1 DUP4 DUP3 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 SLOAD SWAP1 DUP4 DUP3 LT PUSH2 0x23E5 JUMPI POP SWAP2 PUSH1 0x40 DUP3 DUP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP6 DUP8 PUSH1 0x20 SWAP7 MSTORE DUP3 DUP7 MSTORE SUB DUP3 DUP3 KECCAK256 SSTORE DUP7 DUP2 MSTORE KECCAK256 DUP2 DUP2 SLOAD ADD SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP4 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 SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x2456 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ISZERO PUSH2 0x2473 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4475726174696F6E206D75737420626520706F73697469766500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x24BF JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x10DA185A5B881B9BDD081CDD5C1C1BDC9D1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x2456 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x2517 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH2 0x2553 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH2 0x2548 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x253C JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH2 0x2533 JUMP JUMPDEST ISZERO PUSH2 0x2564 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20646F6573206E6F74206578697374000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x25B0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x5 SLOAD EQ PUSH2 0x2606 JUMPI PUSH1 0x2 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x261F JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x105B1C9958591E481CDE5B98D959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x2456 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x0 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH2 0x2683 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP3 DUP4 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST PUSH1 0x3 PUSH1 0x2 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x26A9 PUSH1 0x2 SLOAD PUSH1 0x10 SLOAD SWAP1 PUSH2 0x2655 JUMP JUMPDEST DIV GT ISZERO SWAP3 DUP4 SWAP2 DUP3 PUSH2 0x26BB JUMPI JUMPDEST POP POP SWAP2 SWAP1 JUMP JUMPDEST GT SWAP1 POP CODESIZE DUP1 PUSH2 0x26B5 JUMP JUMPDEST ISZERO PUSH2 0x26CC JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20646F6573206E6F742065786973740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2718 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F7065726174696F6E20616C7265616479206578656375746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x17 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH2 0x2777 DUP3 SLOAD ISZERO ISZERO PUSH2 0x26C5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP4 ADD SLOAD SWAP3 ADD SLOAD SWAP2 PUSH2 0x2698 DUP4 DUP3 PUSH2 0x2449 JUMP JUMPDEST PUSH2 0x27A5 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD EQ PUSH2 0x255D JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x27B6 JUMPI POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x27D6 PUSH2 0x27C2 DUP3 PUSH2 0x27ED JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x27E9 JUMPI PUSH2 0x27E4 SWAP1 PUSH2 0x24FA JUMP JUMPDEST PUSH2 0x27A7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2857 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2851 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x284B JUMPI PUSH1 0x3 EQ PUSH2 0x2845 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x92DCECC2D8D2C840C6D0C2D2DC40D2DCC8CAF PUSH1 0x6B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0xA4B1 SWAP1 JUMP JUMPDEST POP PUSH1 0x38 SWAP1 JUMP JUMPDEST POP PUSH1 0x89 SWAP1 JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP3 PUSH1 0x40 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0x2EF JUMPI PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP2 ADD SWAP1 PUSH1 0x20 SWAP1 DUP1 DUP3 DUP5 ADD SWAP4 PUSH1 0x40 SWAP2 DUP3 SWAP2 SUB SLT PUSH2 0x2EF JUMPI DUP2 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP3 SWAP1 DUP4 SWAP1 SUB PUSH2 0x2EF JUMPI DUP2 DUP2 ADD MLOAD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT PUSH2 0x2EF JUMPI ADD SWAP2 DUP5 PUSH1 0x3F DUP5 ADD SLT ISZERO PUSH2 0x2EF JUMPI DUP4 DUP4 ADD MLOAD SWAP3 PUSH2 0x28E3 DUP5 PUSH2 0x2247 JUMP JUMPDEST SWAP4 PUSH2 0x28F0 DUP5 MLOAD SWAP6 DUP7 PUSH2 0x21DD JUMP JUMPDEST DUP1 DUP6 MSTORE DUP6 DUP6 ADD SWAP7 DUP5 DUP3 DUP5 ADD ADD GT PUSH2 0x2EF JUMPI DUP7 DUP5 PUSH2 0x290D SWAP4 ADD PUSH2 0x21FF JUMP JUMPDEST PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x2942 JUMPI POP POP SWAP2 PUSH2 0x2930 SWAP2 DUP4 PUSH2 0x2940 SWAP5 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH2 0x236B JUMP JUMPDEST JUMP JUMPDEST SWAP1 SWAP4 SWAP2 SWAP1 PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x29D9 JUMPI POP SWAP1 DUP3 DUP3 PUSH2 0x2965 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 DUP4 ISZERO PUSH2 0x29C2 JUMPI SWAP2 DUP2 PUSH1 0x0 SWAP4 PUSH2 0x29A9 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP5 PUSH1 0x2 SLOAD PUSH2 0x2449 JUMP JUMPDEST PUSH1 0x2 SSTORE DUP6 DUP6 MSTORE DUP5 DUP4 MSTORE DUP1 DUP6 KECCAK256 DUP3 DUP2 SLOAD ADD SWAP1 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP4 SWAP5 SWAP4 PUSH4 0x2770A7EB PUSH1 0xE2 SHL SUB PUSH2 0x2AA7 JUMPI SWAP1 DUP3 DUP3 PUSH2 0x29F9 SWAP4 MLOAD ADD ADD SWAP1 PUSH2 0x285D JUMP JUMPDEST SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2A8F JUMPI PUSH1 0x0 SWAP3 DUP3 DUP5 MSTORE DUP4 DUP3 MSTORE DUP6 DUP5 KECCAK256 SLOAD SWAP6 DUP2 DUP8 LT PUSH2 0x2A61 JUMPI DUP2 DUP6 SWAP7 SWAP8 DUP6 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP7 SWAP8 MSTORE DUP8 DUP6 MSTORE SUB DUP2 DUP8 KECCAK256 SSTORE DUP2 PUSH1 0x2 SLOAD SUB PUSH1 0x2 SSTORE MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST 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 DUP8 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2AB735B737BBB71037B832B930BA34B7B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATASIZE SWAP13 0x2E SWAP12 0xDE PUSH32 0xE9A6FCE04EFDC03DFD744B785D973D2ED5FA6B725A17CFBF8E6164736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"359:24192:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;1982:22;359:24192;;1982:22;359:24192;;1982:22;359:24192;;;1982:22;359:24192;;;;1982:22;359:24192;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2466:103:5;;;:::i;:::-;359:24192:6;;;;;12753:18;359:24192;;;;;;12795:74;359:24192;;12803:37;;12795:74;:::i;:::-;12905:18;;;359:24192;12887:15;:36;359:24192;;;12951:58;359:24192;12960:18;;;359:24192;;12959:19;12951:58;:::i;:::-;13028:19;;;13048:10;;359:24192;;;;;;;;;;;;;13048:10;359:24192;;;;;;;;;13096:25;359:24192;;13048:10;;13430:66;13048:10;13430:66;13048:10;;359:24192;;;;;;;;;;;;;;13244:4;359:24192;;;;;;;;13259:156;;;;;13244:4;13287:23;:41;359:24192;;;13287:41;:::i;:::-;359:24192;;13259:156;359:24192;;;;;;13048:10;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13430:66;;;;13244:4;3068:21:5;359:24192:6;;13259:156;13359:27;;:45;359:24192;;;13359:45;:::i;:::-;359:24192;;13259:156;;359:24192;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;:::i;:::-;2466:103:5;;;:::i;:::-;359:24192:6;;;;;7761:9;359:24192;;;;;;7793:62;359:24192;;;7801:26;7793:62;:::i;:::-;7891:17;;;359:24192;7873:15;:35;359:24192;;;7935:56;359:24192;7944:17;;;359:24192;;7943:18;7935:56;:::i;:::-;8010:17;;;8028:10;;359:24192;;;;;;;;;;;;;8028:10;359:24192;;;;;;;;;8075:25;359:24192;;8028:10;;8386:61;8028:10;8386:61;8028:10;;359:24192;;;;;;;;;;;;;;8218:4;359:24192;;;;;;;;8233:138;;;;;8261:17;;:32;359:24192;;;8261:32;:::i;8233:138::-;8324:21;;:36;359:24192;;;8324:36;:::i;359:24192::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;2386:63;359:24192;;;;;;;;2386:63;359:24192;2386:63;;359:24192;2386:63;;;;359:24192;;;2386:63;;359:24192;;2386:63;;;359:24192;;2386:63;359:24192;;;;;2386:63;;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2223:45;359:24192;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;6637:10;;359:24192;;;;;;;;;;;6627:25;359:24192;;6702:51;6710:13;;;6702:51;:::i;:::-;359:24192;;;6771:15;359:24192;;6763:67;359:24192;;;;;;6763:67;:::i;:::-;359:24192;;6771:15;359:24192;;;;;;;;;;;6944:17;359:24192;6944:17;;;;:::i;:::-;;359:24192;;;;6999:9;359:24192;;;;;;;;;7073:20;;;;359:24192;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;7317:18;359:24192;;;7239:27;359:24192;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;7118:17;;;359:24192;;;7149:21;;359:24192;7184:17;;;359:24192;;;;;;;7239:15;:27;:::i;:::-;7219:17;;;359:24192;7276:18;;;6637:10;-1:-1:-1;;;;;359:24192:6;;;;;;;;7317:18;359:24192;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;7364:53;359:24192;;;;;;;;;;10599:17:1;;;359:24192:6;;;;;;;;;;;;;;;;;;6637:10;359:24192;;;;;;;;;;;;;;:::i;:::-;7364:53;;;359:24192;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7364:53;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;10599:17:1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7317:18;359:24192;;;;;;7239:27;359:24192;;;;;;;;;;;;;;;;;;;;10599:17:1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2175:42;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;11777:10;359:24192;;;;;;;;;11767:25;359:24192;;;;11851:13;12264:19;11851:13;11843:51;12312:65;11851:13;;;11843:51;:::i;:::-;11927:17;359:24192;11927:17;;;;:::i;:::-;;359:24192;;;;11992:18;359:24192;;12227:27;359:24192;;;;;;;;;12092:23;;359:24192;;12129:27;;;359:24192;;12170:18;;359:24192;;;;;;;12227:15;:27;:::i;:::-;12206:18;;;359:24192;12264:19;11777:10;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;;;11777:10;359:24192;;;;;;;;12312:65;359:24192;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2669:48;359:24192;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;3459:5:1;359:24192:6;;:::i;:::-;;;735:10:4;;3459:5:1;:::i;:::-;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;2083:30;359:24192;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;16003:18;359:24192;;;;;;;;16053:37;16045:74;16053:37;;;16045:74;:::i;:::-;359:24192;16138:18;;359:24192;;;;;16129:58;359:24192;;;16137:19;16129:58;:::i;:::-;16224:18;359:24192;16205:15;:37;359:24192;;16311:33;;;:::i;:::-;16362:23;;;359:24192;;;;;16470:55;359:24192;;;;;;;;;;;;;;;;;;;;;16470:55;359:24192;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;16362:23;;;;;;359:24192;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;19255:31;;;;:::i;:::-;359:24192;;;20129:14;359:24192;;19434:28;;;;;;19604:26;359:24192;;;;;;;19604:26;359:24192;19464:3;19501:22;20092:62;;19501:22;19464:3;19501:22;;:::i;:::-;359:24192;;20092:62;;;;;;359:24192;;;;;;;;;;;;;;;;;;20092:62;;;;19464:3;:::i;:::-;19419:13;;359:24192;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;-1:-1:-1;;;;;359:24192:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;2119:29;359:24192;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2485:47;359:24192;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24192:6;;;;;2010:31;359:24192;;;;;;;;;;;9659:61;359:24192;;;:::i;:::-;;;;;;;;9032:9;359:24192;;9550:38;:21;359:24192;;;9064:62;359:24192;;;9072:26;9064:62;:::i;:::-;359:24192;;;9144:15;359:24192;;9136:61;359:24192;;;;;;9136:61;:::i;:::-;9216:24;;;359:24192;;;;;;;9207:66;359:24192;;;;;;9215:39;9207:66;:::i;:::-;9510:30;:17;;;359:24192;;;9510:30;:::i;:::-;359:24192;;9550:21;359:24192;;;9550:38;:::i;:::-;359:24192;;;;;;;;;;9639:4;359:24192;;;;;;;;9659:61;9705:14;359:24192;;;9659:61;;;;359:24192;;;;;;;;;;;;;;;;;;9659:61;;;;359:24192;;;;;;;;;;;;;;;;23101:10;;359:24192;;;;;;;;;23091:25;359:24192;;;;;23172:13;359:24192;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;23240:7;359:24192;;;;;;;;-1:-1:-1;;;;;;359:24192:6;;;23172:13;359:24192;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;23316:24;;;359:24192;;;;;;;;;;;;;;;23172:13;359:24192;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2538:49;359:24192;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;:::i;:::-;22591:10;359:24192;;;;;;;;;;;22581:25;359:24192;;-1:-1:-1;;;;;359:24192:6;;22659:28;;359:24192;;;;;22723:13;359:24192;;;;;;;;;;22876:38;359:24192;;;;;;;22784:7;359:24192;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;22723:13;359:24192;;;;;;;;;;;;;;;;;;;;;;22876:38;359:24192;;;;;;;;;;;;;;;22723:13;359:24192;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;2780:2:1;359:24192:6;;;;;;;14757:66;359:24192;;;:::i;:::-;;;;;;;;14131:18;359:24192;;14636:49;:27;359:24192;;;14173:74;359:24192;;14181:37;;14173:74;:::i;:::-;359:24192;;;14265:15;359:24192;;14257:61;359:24192;;;;;;14257:61;:::i;:::-;14337:25;;;359:24192;;;;;;;14328:67;359:24192;;;;;;14336:40;14328:67;:::i;:::-;14585:41;:23;;;359:24192;;;14585:41;:::i;359:24192::-;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;735:10:4;359:24192:6;;;;;;;;10599:17:1;;;10580:36;;10576:309;;359:24192:6;4986:5:1;;;;;;:::i;10576:309::-;10636:24;;;10632:130;;9813:19;;9809:89;;735:10:4;9911:21:1;9907:90;;359:24192:6;4986:5:1;359:24192:6;;;;;;;;;;;735:10:4;359:24192:6;;;;;;;;;10576:309:1;;;;9907:90;359:24192:6;;;;;9955:31:1;;;;;;;;359:24192:6;9955:31:1;9809:89;359:24192:6;;;;;9855:32:1;;;;;;;;359:24192:6;9855:32:1;10632:130;359:24192:6;;;-1:-1:-1;;;10687:60:1;;735:10:4;10687:60:1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;10687:60:1;;;359:24192:6;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;2927:12:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;10804:9;359:24192;;;;;;10836:62;359:24192;;;10844:26;10836:62;:::i;:::-;10917:17;;;359:24192;;;;10908:56;359:24192;;;10916:18;10908:56;:::i;:::-;11001:17;;;359:24192;10982:15;:36;359:24192;;11086:32;;;:::i;:::-;11136:23;;;359:24192;;;;;;11302:18;359:24192;;;;;;;;;;;;11302:18;359:24192;11284:37;359:24192;;;;;;;;:::i;:::-;11284:37;:::i;:::-;359:24192;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11345:49;;;;;;359:24192;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;-1:-1:-1;;;;359:24192:6;;;;;11345:49;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11345:49;359:24192;;;;;;;;;;;11001:17;359:24192;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;11136:23;;;;;;359:24192;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;2047:30;359:24192;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;:::i;:::-;;;735:10:4;;9813:19:1;9809:89;;-1:-1:-1;;;;;359:24192:6;;9911:21:1;;9907:90;;735:10:4;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;10085:31:1;359:24192:6;735:10:4;10085:31:1;;359:24192:6;;;;;;;9809:89:1;359:24192:6;;-1:-1:-1;;;9855:32:1;;359:24192:6;9855:32:1;;;359:24192:6;;;9855:32:1;359:24192:6;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;359:24192:6;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;-1:-1:-1;359:24192:6;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;16951:15;359:24192;;16943:61;359:24192;;;;;;16943:61;:::i;:::-;359:24192;;;17023:17;359:24192;;;;;;;;;;17562:66;359:24192;;;;;17023:17;359:24192;;;;;;;;;;;;;;17421:9;359:24192;;;;;;;;17457:26;17453:94;;359:24192;;17562:66;17613:14;359:24192;;;17562:66;;;;359:24192;;;;;;;;;;;;;;;;;;17453:94;17517:18;359:24192;17499:37;359:24192;;;;17517:18;;;;;359:24192;:::i;17499:37::-;17453:94;;;359:24192;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;2335:45;359:24192;;;;;;;2335:45;359:24192;;2335:45;359:24192;2335:45;359:24192;2335:45;359:24192;2335:45;;359:24192;:::i;:::-;;;;:::i;:::-;2335:45;;;359:24192;2335:45;359:24192;;2335:45;;359:24192;2335:45;;;359:24192;;2335:45;;;359:24192;;;;;;;;2335:45;;;359:24192;;;;;;2335:45;;;;;359:24192;:::i;:::-;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;23504:7;359:24192;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;23504:7;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;359:24192:6;;;;-1:-1:-1;359:24192:6;;;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;359:24192:6;;;;:::o;:::-;;;;;;;;-1:-1:-1;;359:24192:6;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;-1:-1:-1;;;;;359:24192:6;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;359:24192:6;;;;;;:::o;:::-;;-1:-1:-1;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;359:24192:6;;;;;;;;-1:-1:-1;359:24192:6;18173:15;359:24192;;;;-1:-1:-1;359:24192:6;;;17834:371;;359:24192;;;;;;;;;;;;;;;;;;;;;;:::o;5393:300:1:-;;-1:-1:-1;;;;;359:24192:6;;;;5476:18:1;;5472:86;;359:24192:6;5571:16:1;;;5567:86;;6093:540;359:24192:6;;;;;;;;;;;6340:19:1;;;;6336:115;;359:24192:6;;;;;7083:25:1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;7083:25:1;5393:300::o;6336:115::-;359:24192:6;;-1:-1:-1;;;6386:50:1;;-1:-1:-1;;;;;359:24192:6;;;;6386:50:1;;;359:24192:6;;;;;;;;;;;;;;;;10687:60:1;5567:86;359:24192:6;;-1:-1:-1;;;5610:32:1;;5492:1;5610:32;;;359:24192:6;;;5610:32:1;5472:86;359:24192:6;;-1:-1:-1;;;5517:30:1;;5492:1;5517:30;;;359:24192:6;;;5517:30:1;359:24192:6;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;-1:-1:-1;;359:24192:6;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;-1:-1:-1;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;359:24192:6;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;2575:307:5;1899:1;2702:7;359:24192:6;2702:18:5;2698:86;;1899:1;2702:7;359:24192:6;2575:307:5:o;2698:86::-;359:24192:6;;-1:-1:-1;;;2743:30:5;;;;;359:24192:6;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;:::o;10003:580::-;;359:24192;-1:-1:-1;359:24192:6;10145:9;359:24192;;10177:62;359:24192;-1:-1:-1;359:24192:6;;;;10185:26;10177:62;:::i;:::-;10291:21;10271:17;;;359:24192;10291:21;;359:24192;10271:41;;;;;:::i;:::-;10384:3;10348:32;10271:17;359:24192;10364:16;359:24192;10348:32;;:::i;:::-;359:24192;-1:-1:-1;10422:28:6;;;;;10469:58;;10003:580;10546:30;;;10003:580;:::o;10469:58::-;10486:41;;-1:-1:-1;10469:58:6;;;;359:24192;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;359:24192:6;;;;;;;;;;;;;;;;;;;;15099:647;-1:-1:-1;359:24192:6;15252:18;359:24192;;;-1:-1:-1;359:24192:6;;15294:74;359:24192;;15302:37;;15294:74;:::i;:::-;15431:27;15405:23;;;359:24192;15431:27;;359:24192;15405:53;;;;;:::i;18450:573::-;18611:62;-1:-1:-1;359:24192:6;;;;18579:9;359:24192;;;;;;18619:26;18611:62;:::i;:::-;18778:13;18793:28;20584:1;18793:28;;;;19005:11;;19012:4;18450:573;:::o;18823:3::-;18901:29;18860:22;;;:::i;:::-;-1:-1:-1;359:24192:6;18173:15;359:24192;;;;-1:-1:-1;359:24192:6;;;17834:371;;18901:29;18900:30;18896:81;;18823:3;;;:::i;:::-;18778:13;;18896:81;18950:12;;:::o;20759:323::-;20848:11;;20844:25;;20910:1;20900:11;;20896:27;;20961:1;20951:11;;20947:26;;21008:1;20998:11;20994:29;;359:24192;;-1:-1:-1;;;21046:29:6;;359:24192;21046:29;;;359:24192;;;;;;-1:-1:-1;;;359:24192:6;;;;;;21046:29;20994;21018:5;21011:12;:::o;20947:26::-;20964:9;20971:2;20964:9;:::o;20896:27::-;20913:10;20920:3;20913:10;:::o;20844:25::-;20861:8;20868:1;20861:8;:::o;359:24192::-;;;;;;;;;;;;-1:-1:-1;;;;;359:24192:6;;;;;;;;;;;;:::o;21222:1113::-;359:24192;;21381:39;;;;;;;;;359:24192;;;;;;;;;21381:39;;;359:24192;-1:-1:-1;;;;;;359:24192:6;;;21381:39;359:24192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;21443:58:6;;359:24192;;;;;21612:36;359:24192;;21688:6;359:24192;;21612:36;;;;:::i;:::-;359:24192;-1:-1:-1;;;;;359:24192:6;21672:10;21688:6;:::i;:::-;21222:1113::o;21439:890::-;359:24192;;;;-1:-1:-1;;;21716:54:6;;359:24192;;;;;;21881:36;359:24192;;21881:36;;;;:::i;:::-;-1:-1:-1;;;;;359:24192:6;;;;7528:21:1;;7524:91;;359:24192:6;;6643:425:1;359:24192:6;6233:21:1;7083:25;359:24192:6;6233:21:1;359:24192:6;6233:21:1;:::i;:::-;;359:24192:6;;;;;;;;;;;;;;;;;;;;7083:25:1;21222:1113:6:o;7524:91:1:-;359:24192:6;-1:-1:-1;;;7572:32:1;;-1:-1:-1;7572:32:1;;;359:24192:6;;;7572:32:1;21712:617:6;359:24192;;;-1:-1:-1;;;21969:54:6;359:24192;;;;;22136:36;359:24192;;22136:36;;;;:::i;:::-;359:24192;-1:-1:-1;;;;;359:24192:6;;;;8054:21:1;;8050:89;;6093:540;359:24192:6;;;;;;;;;;;6340:19:1;;;;6336:115;;359:24192:6;;;;;7083:25:1;359:24192:6;;;;;;;;;;;;6810:21:1;359:24192:6;;6810:21:1;359:24192:6;;;;;7083:25:1;21222:1113:6:o;6336:115:1:-;359:24192:6;-1:-1:-1;;;6386:50:1;;-1:-1:-1;;;;;359:24192:6;;6386:50:1;;;359:24192:6;;;;;;;;;;;;;;;;10687:60:1;8050:89;359:24192:6;;-1:-1:-1;;;8098:30:1;;-1:-1:-1;8098:30:1;;;359:24192:6;;;8098:30:1;21965:364:6;359:24192;;-1:-1:-1;;;22291:27:6;;;;;359:24192;;;;;;;;-1:-1:-1;;;359:24192:6;;;;;;22291:27"},"methodIdentifiers":{"activeModules(bytes32)":"b3fe8bcb","addModule(bytes32,address)":"35324eee","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","checkChainConnection(uint256)":"4de184f6","checkMultiSigResult(uint256)":"057b2074","checkProposalResult(uint256)":"7e5a9b47","checkSyncReadiness(uint256)":"e49a62e9","createMultiSigOperation(bytes32,uint256)":"b00e0730","createProposal(string,uint256,bytes,uint256)":"b3594510","currentChainId()":"6cbadbfa","decimals()":"313ce567","dleInfo()":"f2c26a47","executeMultiSigOperation(uint256)":"893d692a","executeProposal(uint256)":"0d61b519","executedMultiSig(uint256)":"af89d2c4","executedProposals(uint256)":"3b60288a","getCurrentChainId()":"5cf0e8a4","getDLEInfo()":"204c5d1f","getModuleAddress(bytes32)":"22dbefbb","getSupportedChainCount()":"eced3dfb","getSupportedChainId(uint256)":"9a49bdde","isChainSupported(uint256)":"5221c1f0","isModuleActive(bytes32)":"4b145793","modules(bytes32)":"b0b6cc1a","multiSigCounter()":"8c7b04c9","multiSigOperations(uint256)":"c51cab3a","name()":"06fdde03","proposalCounter()":"0c0512e9","proposals(uint256)":"013cf08b","quorumPercentage()":"4fa76ec9","removeModule(bytes32)":"4114509b","signMultiSigOperation(uint256,bool)":"ccd7a490","supportedChains(uint256)":"548d496f","symbol()":"95d89b41","syncExecutionFromChain(uint256,uint256,bytes)":"044bc2bd","syncMultiSigFromChain(uint256,uint256,uint256,uint256,bytes)":"2ee09598","syncToAllChains(uint256)":"7ce288ea","syncVoteFromChain(uint256,uint256,uint256,uint256,bytes)":"456d10c1","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","vote(uint256,bool)":"c9d27afe"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"initialPartners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"initialAmounts\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"supportedChainIds\",\"type\":\"uint256[]\"}],\"internalType\":\"struct DLE.DLEConfig\",\"name\":\"config\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_currentChainId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"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\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainExecutionSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainMultiSigSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fromChainId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"toChainId\",\"type\":\"uint256\"}],\"name\":\"CrossChainVoteSync\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"supportedChainIds\",\"type\":\"uint256[]\"}],\"name\":\"DLEInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"InitialTokensDistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"moduleId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"moduleAddress\",\"type\":\"address\"}],\"name\":\"ModuleAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"moduleId\",\"type\":\"bytes32\"}],\"name\":\"ModuleRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"}],\"name\":\"MultiSigExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"}],\"name\":\"MultiSigOperationCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"operationId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"support\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturePower\",\"type\":\"uint256\"}],\"name\":\"MultiSigSigned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"support\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"votingPower\",\"type\":\"uint256\"}],\"name\":\"ProposalVoted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"SyncCompleted\",\"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\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"activeModules\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_moduleAddress\",\"type\":\"address\"}],\"name\":\"addModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"uint256\",\"name\":\"_chainId\",\"type\":\"uint256\"}],\"name\":\"checkChainConnection\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isAvailable\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"}],\"name\":\"checkMultiSigResult\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"passed\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"quorumReached\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"checkProposalResult\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"passed\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"quorumReached\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"checkSyncReadiness\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"allChainsReady\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_operationHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"_duration\",\"type\":\"uint256\"}],\"name\":\"createMultiSigOperation\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_duration\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_governanceChainId\",\"type\":\"uint256\"}],\"name\":\"createProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentChainId\",\"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\":\"dleInfo\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"}],\"name\":\"executeMultiSigOperation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"executeProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"executedMultiSig\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"executedProposals\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCurrentChainId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDLEInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"internalType\":\"struct DLE.DLEInfo\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"getModuleAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSupportedChainCount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_index\",\"type\":\"uint256\"}],\"name\":\"getSupportedChainId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_chainId\",\"type\":\"uint256\"}],\"name\":\"isChainSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"isModuleActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"modules\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"multiSigCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"multiSigOperations\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"forSignatures\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"againstSignatures\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumPercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_moduleId\",\"type\":\"bytes32\"}],\"name\":\"removeModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_support\",\"type\":\"bool\"}],\"name\":\"signMultiSigOperation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"supportedChains\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"syncExecutionFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_operationId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_forSignatures\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_againstSignatures\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"syncMultiSigFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"syncToAllChains\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_fromChainId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"syncVoteFromChain\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_support\",\"type\":\"bool\"}],\"name\":\"vote\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"\\u041e\\u0441\\u043d\\u043e\\u0432\\u043d\\u043e\\u0439 \\u043a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 DLE \\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\\u043d\\u043e\\u0439 \\u0430\\u0440\\u0445\\u0438\\u0442\\u0435\\u043a\\u0442\\u0443\\u0440\\u043e\\u0439 \\u0438 \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438-\\u0447\\u0435\\u0439\\u043d \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u043e\\u0439\",\"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.\"}}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"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\":{\"addModule(bytes32,address)\":{\"details\":\"\\u0414\\u043e\\u0431\\u0430\\u0432\\u0438\\u0442\\u044c \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleAddress\":\"\\u0410\\u0434\\u0440\\u0435\\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\",\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"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}.\"},\"checkChainConnection(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u043f\\u043e\\u0434\\u043a\\u043b\\u044e\\u0447\\u0435\\u043d\\u0438\\u0435 \\u043a \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0435\",\"params\":{\"_chainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"},\"returns\":{\"isAvailable\":\"\\u0414\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u0430 \\u043b\\u0438 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0430\"}},\"checkMultiSigResult(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442 \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"},\"returns\":{\"passed\":\"\\u041f\\u0440\\u043e\\u0448\\u043b\\u0430 \\u043b\\u0438 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044f\",\"quorumReached\":\"\\u0414\\u043e\\u0441\\u0442\\u0438\\u0433\\u043d\\u0443\\u0442 \\u043b\\u0438 \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\"}},\"checkProposalResult(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"},\"returns\":{\"passed\":\"\\u041f\\u0440\\u043e\\u0448\\u043b\\u043e \\u043b\\u0438 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"quorumReached\":\"\\u0414\\u043e\\u0441\\u0442\\u0438\\u0433\\u043d\\u0443\\u0442 \\u043b\\u0438 \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\"}},\"checkSyncReadiness(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c \\u0432\\u0441\\u0435 \\u043f\\u043e\\u0434\\u043a\\u043b\\u044e\\u0447\\u0435\\u043d\\u0438\\u044f \\u043f\\u0435\\u0440\\u0435\\u0434 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0435\\u0439\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"},\"returns\":{\"allChainsReady\":\"\\u0413\\u043e\\u0442\\u043e\\u0432\\u044b \\u043b\\u0438 \\u0432\\u0441\\u0435 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"createMultiSigOperation(bytes32,uint256)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_duration\":\"\\u0414\\u043b\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c \\u0441\\u0431\\u043e\\u0440\\u0430 \\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0435\\u0439\",\"_operationHash\":\"\\u0425\\u0435\\u0448 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"createProposal(string,uint256,bytes,uint256)\":{\"details\":\"\\u0421\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u0441 \\u0432\\u044b\\u0431\\u043e\\u0440\\u043e\\u043c \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u0434\\u043b\\u044f \\u043a\\u0432\\u043e\\u0440\\u0443\\u043c\\u0430\",\"params\":{\"_description\":\"\\u041e\\u043f\\u0438\\u0441\\u0430\\u043d\\u0438\\u0435 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_duration\":\"\\u0414\\u043b\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c \\u0433\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f \\u0432 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\\u0445\",\"_governanceChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u0434\\u043b\\u044f \\u0441\\u0431\\u043e\\u0440\\u0430 \\u0433\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\",\"_operation\":\"\\u041e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044f \\u0434\\u043b\\u044f \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f\"}},\"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}.\"},\"executeMultiSigOperation(uint256)\":{\"details\":\"\\u0418\\u0441\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"executeProposal(uint256)\":{\"details\":\"\\u0418\\u0441\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u044c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"getCurrentChainId()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0442\\u0435\\u043a\\u0443\\u0449\\u0438\\u0439 ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"},\"getDLEInfo()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u044e \\u043e DLE\"},\"getModuleAddress(bytes32)\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"getSupportedChainCount()\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u043c\\u044b\\u0445 \\u0446\\u0435\\u043f\\u043e\\u0447\\u0435\\u043a\"},\"getSupportedChainId(uint256)\":{\"details\":\"\\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u044c ID \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u043c\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043f\\u043e \\u0438\\u043d\\u0434\\u0435\\u043a\\u0441\\u0443\",\"params\":{\"_index\":\"\\u0418\\u043d\\u0434\\u0435\\u043a\\u0441 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"isChainSupported(uint256)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c, \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u0442\\u0441\\u044f \\u043b\\u0438 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0430\",\"params\":{\"_chainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\"}},\"isModuleActive(bytes32)\":{\"details\":\"\\u041f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0438\\u0442\\u044c, \\u0430\\u043a\\u0442\\u0438\\u0432\\u0435\\u043d \\u043b\\u0438 \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"name()\":{\"details\":\"Returns the name of the token.\"},\"removeModule(bytes32)\":{\"details\":\"\\u0423\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c \\u043c\\u043e\\u0434\\u0443\\u043b\\u044c\",\"params\":{\"_moduleId\":\"ID \\u043c\\u043e\\u0434\\u0443\\u043b\\u044f\"}},\"signMultiSigOperation(uint256,bool)\":{\"details\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u044e\",\"params\":{\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\",\"_support\":\"\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"syncExecutionFromChain(uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u0435 \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"syncMultiSigFromChain(uint256,uint256,uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u043c\\u0443\\u043b\\u044c\\u0442\\u0438\\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u044c \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_againstSignatures\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438 \\u043f\\u0440\\u043e\\u0442\\u0438\\u0432\",\"_forSignatures\":\"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0438 \\u0437\\u0430\",\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_operationId\":\"ID \\u043e\\u043f\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438\"}},\"syncToAllChains(uint256)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u044f \\u0442\\u043e\\u043b\\u044c\\u043a\\u043e \\u043f\\u0440\\u0438 100% \\u0433\\u043e\\u0442\\u043e\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"syncVoteFromChain(uint256,uint256,uint256,uint256,bytes)\":{\"details\":\"\\u0421\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u0433\\u043e\\u043b\\u043e\\u0441 \\u0438\\u0437 \\u0434\\u0440\\u0443\\u0433\\u043e\\u0439 \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438\",\"params\":{\"_againstVotes\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u0430 \\u043f\\u0440\\u043e\\u0442\\u0438\\u0432\",\"_forVotes\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u0430 \\u0437\\u0430\",\"_fromChainId\":\"ID \\u0446\\u0435\\u043f\\u043e\\u0447\\u043a\\u0438 \\u043e\\u0442\\u043a\\u0443\\u0434\\u0430 \\u0441\\u0438\\u043d\\u0445\\u0440\\u043e\\u043d\\u0438\\u0437\\u0438\\u0440\\u0443\\u0435\\u043c\",\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}},\"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`.\"},\"vote(uint256,bool)\":{\"details\":\"\\u0413\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\\u0430\\u0442\\u044c \\u0437\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435\",\"params\":{\"_proposalId\":\"ID \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\",\"_support\":\"\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f\"}}},\"title\":\"DLE (Digital Legal Entity)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DLE.sol\":\"DLE\"},\"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\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@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\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]},\"contracts/DLE.sol\":{\"keccak256\":\"0x8d5a5b67babee137483971a38e8fc3824fcd45536d1ca68248a062efe196d425\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fcf67e5f1f41f6867250ae7cedf77c6508299769a7db844619c4b93dd570272c\",\"dweb:/ipfs/QmWmEnVYru2kqJwiPKVPBUX1o4K871GYmMuANC6TY7K1N8\"]}},\"version\":1}"}}}}} \ No newline at end of file diff --git a/backend/artifacts/contracts/DLE.sol/DLE.dbg.json b/backend/artifacts/contracts/DLE.sol/DLE.dbg.json index 314c9e3..976136f 100644 --- a/backend/artifacts/contracts/DLE.sol/DLE.dbg.json +++ b/backend/artifacts/contracts/DLE.sol/DLE.dbg.json @@ -1,4 +1,4 @@ { "_format": "hh-sol-dbg-1", - "buildInfo": "../../build-info/6575c8c945d0e94a5880cf71f96c424f.json" + "buildInfo": "../../build-info/f60ede94c341608b6f6d2f67c953fa04.json" } diff --git a/backend/artifacts/contracts/DLE.sol/DLE.json b/backend/artifacts/contracts/DLE.sol/DLE.json index 8931a6a..f3a9a19 100644 --- a/backend/artifacts/contracts/DLE.sol/DLE.json +++ b/backend/artifacts/contracts/DLE.sol/DLE.json @@ -47,21 +47,6 @@ "name": "kpp", "type": "uint256" }, - { - "internalType": "uint48", - "name": "votingDelay", - "type": "uint48" - }, - { - "internalType": "uint32", - "name": "votingPeriod", - "type": "uint32" - }, - { - "internalType": "uint256", - "name": "proposalThreshold", - "type": "uint256" - }, { "internalType": "uint256", "name": "quorumPercentage", @@ -76,6 +61,11 @@ "internalType": "uint256[]", "name": "initialAmounts", "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "supportedChainIds", + "type": "uint256[]" } ], "internalType": "struct DLE.DLEConfig", @@ -83,62 +73,14 @@ "type": "tuple" }, { - "internalType": "address", - "name": "timelockAddress", - "type": "address" + "internalType": "uint256", + "name": "_currentChainId", + "type": "uint256" } ], "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": [ { @@ -225,287 +167,9 @@ "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": [], - "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": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "GovernorOnlyProposer", - "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": "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" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "expiry", - "type": "uint256" - } - ], - "name": "VotesExpiredSignature", + "name": "ReentrancyGuardReentrantCall", "type": "error" }, { @@ -533,6 +197,81 @@ "name": "Approval", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "fromChainId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "toChainId", + "type": "uint256" + } + ], + "name": "CrossChainExecutionSync", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "operationId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "fromChainId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "toChainId", + "type": "uint256" + } + ], + "name": "CrossChainMultiSigSync", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "fromChainId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "toChainId", + "type": "uint256" + } + ], + "name": "CrossChainVoteSync", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -592,76 +331,14 @@ }, { "indexed": false, - "internalType": "address", - "name": "timelockAddress", - "type": "address" - }, - { - "indexed": false, - "internalType": "address", - "name": "governorAddress", - "type": "address" + "internalType": "uint256[]", + "name": "supportedChainIds", + "type": "uint256[]" } ], "name": "DLEInitialized", "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": [ @@ -686,9 +363,9 @@ "inputs": [ { "indexed": false, - "internalType": "string", - "name": "moduleName", - "type": "string" + "internalType": "bytes32", + "name": "moduleId", + "type": "bytes32" }, { "indexed": false, @@ -697,7 +374,20 @@ "type": "address" } ], - "name": "ModuleInstalled", + "name": "ModuleAdded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "moduleId", + "type": "bytes32" + } + ], + "name": "ModuleRemoved", "type": "event" }, { @@ -706,11 +396,73 @@ { "indexed": false, "internalType": "uint256", - "name": "proposalId", + "name": "operationId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "operationHash", + "type": "bytes32" + } + ], + "name": "MultiSigExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "operationId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "initiator", + "type": "address" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "operationHash", + "type": "bytes32" + } + ], + "name": "MultiSigOperationCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "operationId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "signer", + "type": "address" + }, + { + "indexed": false, + "internalType": "bool", + "name": "support", + "type": "bool" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "signaturePower", "type": "uint256" } ], - "name": "ProposalCanceled", + "name": "MultiSigSigned", "type": "event" }, { @@ -725,45 +477,9 @@ { "indexed": false, "internalType": "address", - "name": "proposer", + "name": "initiator", "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", @@ -783,12 +499,6 @@ "name": "proposalId", "type": "uint256" }, - { - "indexed": false, - "internalType": "address", - "name": "initiator", - "type": "address" - }, { "indexed": false, "internalType": "bytes", @@ -796,19 +506,6 @@ "type": "bytes" } ], - "name": "ProposalCreated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - } - ], "name": "ProposalExecuted", "type": "event" }, @@ -821,14 +518,26 @@ "name": "proposalId", "type": "uint256" }, + { + "indexed": false, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "bool", + "name": "support", + "type": "bool" + }, { "indexed": false, "internalType": "uint256", - "name": "etaSeconds", + "name": "votingPower", "type": "uint256" } ], - "name": "ProposalQueued", + "name": "ProposalVoted", "type": "event" }, { @@ -839,184 +548,9 @@ "internalType": "uint256", "name": "proposalId", "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "signer", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "signaturesCount", - "type": "uint256" } ], - "name": "ProposalSigned", - "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": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "initiator", - "type": "address" - }, - { - "indexed": false, - "internalType": "address[]", - "name": "partners", - "type": "address[]" - }, - { - "indexed": false, - "internalType": "uint256[]", - "name": "amounts", - "type": "uint256[]" - }, - { - "indexed": false, - "internalType": "string", - "name": "description", - "type": "string" - } - ], - "name": "TokenDistributionProposalCreated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address[]", - "name": "partners", - "type": "address[]" - }, - { - "indexed": false, - "internalType": "uint256[]", - "name": "amounts", - "type": "uint256[]" - } - ], - "name": "TokenDistributionProposalExecuted", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "signer", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "signaturesCount", - "type": "uint256" - } - ], - "name": "TokenDistributionProposalSigned", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "depositor", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "TokensDepositedToTreasury", + "name": "SyncCompleted", "type": "event" }, { @@ -1045,260 +579,40 @@ "type": "event" }, { - "anonymous": false, "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "initiator", - "type": "address" - }, - { - "indexed": false, - "internalType": "address", - "name": "recipient", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "string", - "name": "description", - "type": "string" - } - ], - "name": "TreasuryProposalCreated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "recipient", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "TreasuryProposalExecuted", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "signer", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "signaturesCount", - "type": "uint256" - } - ], - "name": "TreasuryProposalSigned", - "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" } ], + "name": "activeModules", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], "stateMutability": "view", "type": "function" }, { - "inputs": [], - "name": "CLOCK_MODE", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "pure", - "type": "function" - }, - { - "inputs": [], - "name": "COUNTING_MODE", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "pure", - "type": "function" - }, - { - "inputs": [], - "name": "EXTENDED_BALLOT_TYPEHASH", - "outputs": [ + "inputs": [ { "internalType": "bytes32", - "name": "", + "name": "_moduleId", "type": "bytes32" + }, + { + "internalType": "address", + "name": "_moduleAddress", + "type": "address" } ], - "stateMutability": "view", + "name": "addModule", + "outputs": [], + "stateMutability": "nonpayable", "type": "function" }, { @@ -1371,27 +685,103 @@ { "inputs": [ { - "internalType": "address[]", - "name": "targets", - "type": "address[]" + "internalType": "uint256", + "name": "_chainId", + "type": "uint256" + } + ], + "name": "checkChainConnection", + "outputs": [ + { + "internalType": "bool", + "name": "isAvailable", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_operationId", + "type": "uint256" + } + ], + "name": "checkMultiSigResult", + "outputs": [ + { + "internalType": "bool", + "name": "passed", + "type": "bool" }, { - "internalType": "uint256[]", - "name": "values", - "type": "uint256[]" + "internalType": "bool", + "name": "quorumReached", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_proposalId", + "type": "uint256" + } + ], + "name": "checkProposalResult", + "outputs": [ + { + "internalType": "bool", + "name": "passed", + "type": "bool" }, { - "internalType": "bytes[]", - "name": "calldatas", - "type": "bytes[]" - }, + "internalType": "bool", + "name": "quorumReached", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_proposalId", + "type": "uint256" + } + ], + "name": "checkSyncReadiness", + "outputs": [ + { + "internalType": "bool", + "name": "allChainsReady", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ { "internalType": "bytes32", - "name": "descriptionHash", + "name": "_operationHash", "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_duration", + "type": "uint256" } ], - "name": "cancel", + "name": "createMultiSigOperation", "outputs": [ { "internalType": "uint256", @@ -1404,238 +794,24 @@ }, { "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", + "name": "_description", "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", + "name": "_duration", "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": [ - { - "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": [ { "internalType": "bytes", "name": "_operation", "type": "bytes" }, - { - "internalType": "uint256[]", - "name": "_targetChains", - "type": "uint256[]" - }, { "internalType": "uint256", - "name": "_timelock", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "_governanceChain", + "name": "_governanceChainId", "type": "uint256" } ], @@ -1651,29 +827,8 @@ "type": "function" }, { - "inputs": [ - { - "internalType": "address[]", - "name": "_partners", - "type": "address[]" - }, - { - "internalType": "uint256[]", - "name": "_amounts", - "type": "uint256[]" - }, - { - "internalType": "uint256", - "name": "_timelock", - "type": "uint256" - }, - { - "internalType": "string", - "name": "_description", - "type": "string" - } - ], - "name": "createTokenDistributionProposal", + "inputs": [], + "name": "currentChainId", "outputs": [ { "internalType": "uint256", @@ -1681,41 +836,7 @@ "type": "uint256" } ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_recipient", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "_timelock", - "type": "uint256" - }, - { - "internalType": "string", - "name": "_description", - "type": "string" - } - ], - "name": "createTreasuryProposal", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", + "stateMutability": "view", "type": "function" }, { @@ -1731,89 +852,6 @@ "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": "_amount", - "type": "uint256" - } - ], - "name": "depositToTreasury", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, { "inputs": [], "name": "dleInfo", @@ -1867,92 +905,15 @@ "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": "uint256", - "name": "_proposalId", + "name": "_operationId", "type": "uint256" } ], - "name": "executeTokenDistributionProposal", + "name": "executeMultiSigOperation", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -1965,159 +926,20 @@ "type": "uint256" } ], - "name": "executeTreasuryProposal", + "name": "executeProposal", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ - { - "internalType": "address", - "name": "_address", - "type": "address" - } - ], - "name": "getAvailableWithdrawal", - "outputs": [ { "internalType": "uint256", "name": "", "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": "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", + "name": "executedMultiSig", "outputs": [ { "internalType": "bool", @@ -2131,27 +953,122 @@ { "inputs": [ { - "internalType": "address[]", - "name": "targets", - "type": "address[]" - }, + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "executedProposals", + "outputs": [ { - "internalType": "uint256[]", - "name": "values", - "type": "uint256[]" - }, + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getCurrentChainId", + "outputs": [ { - "internalType": "bytes[]", - "name": "calldatas", - "type": "bytes[]" - }, + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getDLEInfo", + "outputs": [ + { + "components": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "string", + "name": "location", + "type": "string" + }, + { + "internalType": "string", + "name": "coordinates", + "type": "string" + }, + { + "internalType": "uint256", + "name": "jurisdiction", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "oktmo", + "type": "uint256" + }, + { + "internalType": "string[]", + "name": "okvedCodes", + "type": "string[]" + }, + { + "internalType": "uint256", + "name": "kpp", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "creationTimestamp", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isActive", + "type": "bool" + } + ], + "internalType": "struct DLE.DLEInfo", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ { "internalType": "bytes32", - "name": "descriptionHash", + "name": "_moduleId", "type": "bytes32" } ], - "name": "hashProposal", + "name": "getModuleAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getSupportedChainCount", "outputs": [ { "internalType": "uint256", @@ -2163,8 +1080,33 @@ "type": "function" }, { - "inputs": [], - "name": "initialTokensDistributed", + "inputs": [ + { + "internalType": "uint256", + "name": "_index", + "type": "uint256" + } + ], + "name": "getSupportedChainId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_chainId", + "type": "uint256" + } + ], + "name": "isChainSupported", "outputs": [ { "internalType": "bool", @@ -2178,30 +1120,44 @@ { "inputs": [ { - "internalType": "string", - "name": "_moduleName", - "type": "string" - }, - { - "internalType": "address", - "name": "_moduleAddress", - "type": "address" + "internalType": "bytes32", + "name": "_moduleId", + "type": "bytes32" } ], - "name": "installModule", - "outputs": [], - "stateMutability": "nonpayable", + "name": "isModuleActive", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", "type": "function" }, { "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "modules", + "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], - "name": "lastWithdrawalBlock", + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "multiSigCounter", "outputs": [ { "internalType": "uint256", @@ -2212,6 +1168,50 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "multiSigOperations", + "outputs": [ + { + "internalType": "bytes32", + "name": "operationHash", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "forSignatures", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "againstSignatures", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "executed", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "initiator", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [], "name": "name", @@ -2225,156 +1225,6 @@ "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": [ - { - "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": [], "name": "proposalCounter", @@ -2388,143 +1238,6 @@ "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": "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": [ { @@ -2536,25 +1249,25 @@ "name": "proposals", "outputs": [ { - "internalType": "bytes", - "name": "operation", - "type": "bytes" + "internalType": "uint256", + "name": "id", + "type": "uint256" + }, + { + "internalType": "string", + "name": "description", + "type": "string" }, { "internalType": "uint256", - "name": "timelock", + "name": "forVotes", "type": "uint256" }, { "internalType": "uint256", - "name": "governanceChain", + "name": "againstVotes", "type": "uint256" }, - { - "internalType": "address", - "name": "initiator", - "type": "address" - }, { "internalType": "bool", "name": "executed", @@ -2562,145 +1275,18 @@ }, { "internalType": "uint256", - "name": "quorumRequired", + "name": "deadline", "type": "uint256" }, { - "internalType": "uint256", - "name": "signaturesCount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address[]", - "name": "targets", - "type": "address[]" + "internalType": "address", + "name": "initiator", + "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" + "internalType": "bytes", + "name": "operation", + "type": "bytes" } ], "stateMutability": "view", @@ -2722,61 +1308,30 @@ { "inputs": [ { - "internalType": "address", - "name": "target", - "type": "address" - }, + "internalType": "bytes32", + "name": "_moduleId", + "type": "bytes32" + } + ], + "name": "removeModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ { "internalType": "uint256", - "name": "value", + "name": "_operationId", "type": "uint256" }, { - "internalType": "bytes", - "name": "data", - "type": "bytes" + "internalType": "bool", + "name": "_support", + "type": "bool" } ], - "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", + "name": "signMultiSigOperation", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -2785,69 +1340,11 @@ "inputs": [ { "internalType": "uint256", - "name": "_proposalId", - "type": "uint256" - } - ], - "name": "signProposal", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_proposalId", - "type": "uint256" - } - ], - "name": "signTokenDistributionProposal", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_proposalId", - "type": "uint256" - } - ], - "name": "signTreasuryProposal", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "proposalId", - "type": "uint256" - } - ], - "name": "state", - "outputs": [ - { - "internalType": "enum IGovernor.ProposalState", "name": "", - "type": "uint8" + "type": "uint256" } ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "bytes4", - "name": "interfaceId", - "type": "bytes4" - } - ], - "name": "supportsInterface", + "name": "supportedChains", "outputs": [ { "internalType": "bool", @@ -2872,86 +1369,105 @@ "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": [], - "name": "tokenDistributionProposalCounter", - "outputs": [ + "inputs": [ { "internalType": "uint256", - "name": "", + "name": "_proposalId", "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fromChainId", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" } ], - "stateMutability": "view", + "name": "syncExecutionFromChain", + "outputs": [], + "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", + "name": "_operationId", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fromChainId", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_forSignatures", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_againstSignatures", + "type": "uint256" + }, + { + "internalType": "bytes", "name": "", + "type": "bytes" + } + ], + "name": "syncMultiSigFromChain", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_proposalId", "type": "uint256" } ], - "name": "tokenDistributionProposals", - "outputs": [ + "name": "syncToAllChains", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ { "internalType": "uint256", - "name": "timelock", - "type": "uint256" - }, - { - "internalType": "address", - "name": "initiator", - "type": "address" - }, - { - "internalType": "bool", - "name": "executed", - "type": "bool" - }, - { - "internalType": "uint256", - "name": "quorumRequired", + "name": "_proposalId", "type": "uint256" }, { "internalType": "uint256", - "name": "signaturesCount", + "name": "_fromChainId", "type": "uint256" }, { - "internalType": "string", - "name": "description", - "type": "string" + "internalType": "uint256", + "name": "_forVotes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_againstVotes", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" } ], - "stateMutability": "view", + "name": "syncVoteFromChain", + "outputs": [], + "stateMutability": "nonpayable", "type": "function" }, { @@ -2967,19 +1483,6 @@ "stateMutability": "view", "type": "function" }, - { - "inputs": [], - "name": "totalTreasuryBalance", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [ { @@ -3033,145 +1536,27 @@ "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [], - "name": "treasuryProposalCounter", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [ { "internalType": "uint256", - "name": "", + "name": "_proposalId", "type": "uint256" - } - ], - "name": "treasuryProposals", - "outputs": [ - { - "internalType": "address", - "name": "recipient", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "timelock", - "type": "uint256" - }, - { - "internalType": "address", - "name": "initiator", - "type": "address" }, { "internalType": "bool", - "name": "executed", + "name": "_support", "type": "bool" - }, - { - "internalType": "uint256", - "name": "quorumRequired", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "signaturesCount", - "type": "uint256" - }, - { - "internalType": "string", - "name": "description", - "type": "string" } ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "newQuorumNumerator", - "type": "uint256" - } - ], - "name": "updateQuorumNumerator", + "name": "vote", "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": "0x610180604052346200009f57620000206200001962000387565b906200132d565b604051616d099081620023ba823960805181614d74015260a05181614e29015260c05181614d3e015260e05181614dc301526101005181614de90152610120518161263601526101405181612662015261016051818181612a690152818161378a0152818161382a01528181613a5c015281816143e501526169da0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000d657604052565b620000a4565b601f909101601f19168101906001600160401b03821190821017620000d657604052565b604051906101c082016001600160401b03811183821017620000d657604052565b6040519061014082016001600160401b03811183821017620000d657604052565b604051906200015182620000ba565b565b60005b838110620001675750506000910152565b818101518382015260200162000156565b81601f820112156200009f5780516001600160401b038111620000d65760405192620001af601f8301601f191660200185620000dc565b818452602082840101116200009f57620001d0916020808501910162000153565b90565b6001600160401b038111620000d65760051b60200190565b9080601f830112156200009f578151906200020682620001d3565b92620002166040519485620000dc565b828452602092838086019160051b830101928084116200009f57848301915b848310620002465750505050505090565b82516001600160401b0381116200009f5786916200026a8484809489010162000178565b81520192019162000235565b519065ffffffffffff821682036200009f57565b519063ffffffff821682036200009f57565b51906001600160a01b03821682036200009f57565b81601f820112156200009f57805191620002cb83620001d3565b92620002db6040519485620000dc565b808452602092838086019260051b8201019283116200009f578301905b82821062000307575050505090565b83809162000315846200029c565b815201910190620002f8565b81601f820112156200009f578051916200033b83620001d3565b926200034b6040519485620000dc565b808452602092838086019260051b8201019283116200009f578301905b82821062000377575050505090565b8151815290830190830162000368565b62009163908138038060405193620003a08286620000dc565b843982016040838203126200009f5782516001600160401b03908181116200009f578401936101c0858403126200009f57620003db62000100565b9480518381116200009f5784620003f491830162000178565b865260208101518381116200009f57846200041191830162000178565b602087015260408101518381116200009f57846200043191830162000178565b604087015260608101518381116200009f57846200045191830162000178565b60608701526080810151608087015260a081015160a087015260c08101518381116200009f578462000485918301620001eb565b60c087015260e081015160e0870152610100620004a481830162000276565b90870152610120620004b88183016200028a565b9087015261014080820151908701526101608082015190870152610180808201518481116200009f5785620004ef918401620002b1565b908701526101a090818101519384116200009f57620001d09460209462000517920162000321565b90860152016200029c565b90600182811c9216801562000554575b60208310146200053e57565b634e487b7160e01b600052602260045260246000fd5b91607f169162000532565b8181106200056b575050565b600081556001016200055f565b90601f821162000586575050565b620001519160036000526020600020906020601f840160051c83019310620005b7575b601f0160051c01906200055f565b9091508190620005a9565b90601f8211620005d0575050565b620001519160046000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200060e575050565b6200015191600b6000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200064c575050565b620001519160056000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f82116200068a575050565b620001519160066000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f8211620006c8575050565b620001519160166000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000706575050565b620001519160176000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000744575050565b620001519160186000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b90601f821162000782575050565b620001519160156000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b9190601f8111620007c257505050565b62000151926000526020600020906020601f840160051c83019310620005b757601f0160051c01906200055f565b80519091906001600160401b038111620000d6576200081c816200081660045462000522565b620005c2565b602080601f83116001146200085b57508192936000926200084f575b50508160011b916000199060031b1c191617600455565b01519050388062000838565b6004600052601f198316949091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b926000905b878210620008ca575050836001959610620008b0575b505050811b01600455565b015160001960f88460031b161c19169055388080620008a5565b806001859682949686015181550195019301906200088f565b80519091906001600160401b038111620000d6576200090f8162000909600b5462000522565b62000600565b602080601f83116001146200094e575081929360009262000942575b50508160011b916000199060031b1c191617600b55565b0151905038806200092b565b600b600052601f198316949091907f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9926000905b878210620009bd575050836001959610620009a3575b505050811b01600b55565b015160001960f88460031b161c1916905538808062000998565b8060018596829496860151815501950193019062000982565b80519091906001600160401b038111620000d65762000a0281620009fc60165462000522565b620006ba565b602080601f831160011462000a41575081929360009262000a35575b50508160011b916000199060031b1c191617601655565b01519050388062000a1e565b6016600052601f198316949091907fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289926000905b87821062000ab057505083600195961062000a96575b505050811b01601655565b015160001960f88460031b161c1916905538808062000a8b565b8060018596829496860151815501950193019062000a75565b80519091906001600160401b038111620000d65762000af58162000aef60175462000522565b620006f8565b602080601f831160011462000b34575081929360009262000b28575b50508160011b916000199060031b1c191617601755565b01519050388062000b11565b6017600052601f198316949091907fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15926000905b87821062000ba357505083600195961062000b89575b505050811b01601755565b015160001960f88460031b161c1916905538808062000b7e565b8060018596829496860151815501950193019062000b68565b80519091906001600160401b038111620000d65762000be88162000be260185462000522565b62000736565b602080601f831160011462000c27575081929360009262000c1b575b50508160011b916000199060031b1c191617601855565b01519050388062000c04565b6018600052601f198316949091907fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e926000905b87821062000c9657505083600195961062000c7c575b505050811b01601855565b015160001960f88460031b161c1916905538808062000c71565b8060018596829496860151815501950193019062000c5b565b81519192916001600160401b038111620000d65762000cdb8162000cd4845462000522565b84620007b2565b602080601f831160011462000d1a57508192939460009262000d0e575b50508160011b916000199060031b1c1916179055565b01519050388062000cf8565b90601f1983169562000d3185600052602060002090565b926000905b88821062000d715750508360019596971062000d57575b505050811b019055565b015160001960f88460031b161c1916905538808062000d4d565b8060018596829496860151815501950193019062000d36565b634e487b7160e01b600052601160045260246000fd5b805190680100000000000000008211620000d657601b5482601b5580831062000e12575b50601b600052602090810190600080516020620091038339815191526000925b84841062000df3575050505050565b6001838262000e058394518662000caf565b0192019301929062000de4565b601b6000908152600080516020620091038339815191529182019184015b82811062000e4057505062000dc4565b8062000e4f6001925462000522565b8062000e5e575b500162000e30565b601f90818111841462000e785750508281555b3862000e56565b8362000e9d9262000e8e85600052602060002090565b920160051c820191016200055f565b6000818152602081208183555562000e71565b805180516001600160401b038111620000d65762000edb8162000ed560155462000522565b62000774565b6020918290601f831160011462000f9c5762000f7e93836101209462000151979462000f299460009262000f90575b50508160011b916000199060031b1c1916176015555b820151620009d6565b62000f38604082015162000ac9565b62000f47606082015162000bbc565b608081015160195560a0810151601a5562000f6660c082015162000da0565b60e0810151601c55610100810151601d550151151590565b60ff8019601e54169115151617601e55565b01519050388062000f0a565b6015600052601f19831691907f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4759260005b8181106200101f57508462000151979462000f299462000f7e9894610120986001951062001005575b505050811b0160155562000f20565b015160001960f88460031b161c1916905538808062000ff6565b92938660018192878601518155019501930162000fcd565b156200103f57565b60405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606490fd5b156200108c57565b60405162461bcd60e51b815260206004820152601360248201527f4e6f20696e697469616c20706172746e657273000000000000000000000000006044820152606490fd5b6000198114620010e15760010190565b62000d8a565b634e487b7160e01b600052603260045260246000fd5b8051821015620011125760209160051b010190565b620010e7565b156200112057565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156200115c57565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6040810190604081528251809252606081019160208094019060005b818110620011f0575050508281830391015281808451928381520193019160005b828110620011db575050505090565b835185529381019392810192600101620011cc565b82516001600160a01b031685529385019391850191600101620011ab565b90602091620012298151809281855285808601910162000153565b601f01601f1916010190565b98969592620012829062001273620012629a9e9d9c9a620012919597948d6101609081815201906200120e565b6020978d898184039101526200120e565b908b820360408d01526200120e565b9089820360608b01526200120e565b92608088015260a087015285820360c08701528251908183528083019281808460051b8301019501936000915b848310620012fc57505050505060e08501979097526001600160a01b0391821661010085015291811661012084015292909216610140909101529150565b90919293949584806200131c600193601f198682030187528a516200120e565b9801930193019194939290620012be565b90916200137f6101608301516200134e61010085015165ffffffffffff1690565b61012085015163ffffffff166101408601518651602088015194909384939130906001600160a01b038c1662001591565b6200138f60ff1960265416602655565b620014008251602084015160408501516060860151608087015160a08801519160c08901519360e08a015195620013c562000121565b978852602088015260408701526060860152608085015260a084015260c083015260e082015242610100820152600161012082015262000eb0565b6200140f610160830151602555565b610180820192835151916200142d6101a08501938451511462001037565b6200143c855151151562001084565b60005b85518051821015620014d957906200148962001481620014756200146884620014d396620010fd565b516001600160a01b031690565b6001600160a01b031690565b151562001118565b620014a36200149a828751620010fd565b51151562001154565b620014cd620014b862001468838a51620010fd565b620014c5838851620010fd565b519062001994565b620010d1565b6200143f565b5050937f5cc2d55798cee8f02a1864e506ff754519b7fbe25d3bd5258441c00b83b7bb0493927ff9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a59162001534600160ff196026541617602655565b5190519062001549604051928392836200118f565b0390a16200158c82519160208401519060408501519360608601519560808101519060a081015160e060c083015192015192604051998a99309830978c62001235565b0390a1565b969897959095949392919460405190620015ab82620000ba565b6001808352603160f81b60208401528b51906001600160401b038211620000d657620015e482620015de60035462000522565b62000578565b60209c601f8311600114620016c55794620016a0979462001640620001519e9f958580620016b39f9e9d9b976200168e97620016949a6200169a9d600094620016b9575b50501b916000199060031b1c191617600355620007f0565b6200164b8262001a62565b610120526200165a8162001b72565b610140528151602083012060e05260208151910120610100524660a0526200168162001cd7565b6080523060c052620008e3565b62001779565b620017c7565b6200184b565b6001600160a01b031661016052620018d3565b62001884565b01519250388062001628565b6003600052929c9092907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9160005b601f19851681106200176257509462001640620001519e9f620016949686620016b39f9e9d9b97966200169a9b96620016a09e9b6200168e99601f1981161062001748575b505050811b01600355620007f0565b015160001960f88460031b161c1916905538808062001739565b8183015184559285019260209283019201620016f4565b6010547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617601055565b63ffffffff80821691821562001832577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055565b60405163f1cfbf0560e01b815260006004820152602490fd5b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355565b606481116200197557601254600091908062001943575060008051602062009123833981519152915060005b6200191d6200190e8362001d43565b65ffffffffffff431662001f0f565b5050604080516001600160d01b039092168252602082019290925290819081016200158c565b600019908082810111620010e15760208460126000805160206200912383398151915296522001015460301c620018ff565b6044906040519063243e544560e01b8252600482015260646024820152fd5b91906001600160a01b038316801562001a4957600254828101809111620010e1576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841162001a1f5762000151929350620021a1565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b0390fd5b60405163ec442f0560e01b815260006004820152602490fd5b908151602080821060001462001a8057505090620001d09062001c82565b6001600160401b038211620000d65762001aa78262001aa160055462000522565b6200063e565b80601f831160011462001ae7575081929360009262001adb575b50508160011b916000199060031b1c19161760055560ff90565b01519050388062001ac1565b6005600052601f198316949091907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0926000905b87821062001b5957505083600195961062001b3f575b505050811b0160055560ff90565b015160001960f88460031b161c1916905538808062001b31565b8060018596829496860151815501950193019062001b1b565b908151602080821060001462001b9057505090620001d09062001c82565b6001600160401b038211620000d65762001bb78262001bb160065462000522565b6200067c565b80601f831160011462001bf7575081929360009262001beb575b50508160011b916000199060031b1c19161760065560ff90565b01519050388062001bd1565b6006600052601f198316949091907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f926000905b87821062001c6957505083600195961062001c4f575b505050811b0160065560ff90565b015160001960f88460031b161c1916905538808062001c41565b8060018596829496860151815501950193019062001c2b565b601f81511162001cb057602081519101516020821062001ca0571790565b6000198260200360031b1b161790565b60405163305a27a960e01b81526020600482015290819062001a459060248301906200120e565b60e051610100516040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815260c0810181811060018060401b03821117620000d65760405251902090565b6001600160d01b039081811162001d58571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b600019810191908211620010e157565b600a546000908062001d9a575050600090565b600019918183810111620010e157600a905201600080516020620090e3833981519152015460301c90565b80546000918162001dd857505050600090565b600019928284810111620010e15760209181522001015460301c90565b6012549068010000000000000000821015620000d65760018201806012558210156200111257601260005280516020919091015160301b65ffffffffffff191665ffffffffffff9190911617600080516020620090c383398151915290910155565b600a549068010000000000000000821015620000d6576001820180600a558210156200111257600a60005280516020919091015160301b65ffffffffffff191665ffffffffffff9190911617600080516020620090e383398151915290910155565b90815468010000000000000000811015620000d65760018101808455811015620011125760009283526020928390208251929093015160301b65ffffffffffff191665ffffffffffff9290921691909117910155565b601254919291801562001fdc5762001f2b62001f449162001d77565b6012600052600080516020620090c38339815191520190565b9081549165ffffffffffff9081841691831680831162001fca5786920362001f8c5762001f8592509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505062001fc49062001faf62001fa162000142565b65ffffffffffff9092168252565b6001600160d01b038516602082015262001df5565b62001f85565b604051632520601d60e01b8152600490fd5b50620020059062001ff062001fa162000142565b6001600160d01b038416602082015262001df5565b60009190565b600a549192918015620020ab5762002027620020409162001d77565b600a600052600080516020620090e38339815191520190565b9081549165ffffffffffff9081841691831680831162001fca57869203620020815762001f8592509065ffffffffffff82549181199060301b169116179055565b505062001fc4906200209662001fa162000142565b6001600160d01b038516602082015262001e57565b506200200590620020bf62001fa162000142565b6001600160d01b038416602082015262001e57565b805492939280156200217757620020ef620020fc9162001d77565b8260005260206000200190565b9182549265ffffffffffff9182851692811680841162001fca578793036200213e575062001f8592509065ffffffffffff82549181199060301b169116179055565b91505062001fc491620021626200215462000142565b65ffffffffffff9093168352565b6001600160d01b038616602083015262001eb9565b509062002005916200218c6200215462000142565b6001600160d01b038516602083015262001eb9565b90620021ad8162001d43565b4365ffffffffffff16926001600160d01b03918280620021cc62001d87565b16911601828111620010e157620021e490856200200b565b50506001600160a01b0390811690811562002345575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169491169084821415806200233b575b6200224a575b5050505050565b81620022cf575b50508262002262575b808062002243565b620022c3620022aa6000805160206200914383398151915293620022a36200229c8760018060a01b03166000526009602052604060002090565b9162001d43565b906200237d565b6040805192851683529316602082015291829190820190565b0390a23880806200225a565b6001600160a01b038216600090815260096020526040902090620022f38562001d43565b8480620023008562001dc5565b169116900390848211620010e157620022aa859262002330926000805160206200914383398151915295620020d4565b0390a2388062002251565b508315156200223d565b620023508462001d43565b83806200235c62001d87565b1691169003838111620010e1576200237590866200200b565b5050620021fa565b906001600160d01b03908180620023948562001dc5565b16911601908111620010e157620023b59165ffffffffffff431690620020d4565b909156fe60806040526004361015610023575b361561001957600080fd5b610021613877565b005b60003560e01c80627e637e14610582578063013cf08b1461057d57806301ffc9a71461057857806302a251a31461057357806306f3f9e61461056e57806306fdde0314610569578063095ea7b3146105645780630965211e1461055f5780630c0512e91461055a5780630eb1259614610555578063108b4e0714610550578063143489d01461054b578063150b7a0214610546578063160cbed71461054157806318160ddd1461053c578063194a94fc146105375780631b470faf146105325780631c0f4d8d1461052d57806323b872dd146105285780632656227d146105235780632d63f6931461051e5780632fe3e26114610519578063313ce5671461051457806335c4364f1461050f5780633932abb11461050a5780633a46b1a8146105055780633e4f49e61461050057806343859632146104fb578063452115d6146104f65780634bf5d7e9146104f15780634fa76ec9146104ec578063544ffc9c146104e757806354fd4d50146104e257806356781388146104dd578063587cde1e146104d85780635b8d0e0d146104d35780635c19a95c146104ce5780635f398a14146104c957806360c4247f146104c45780636fcfff45146104bf57806370a08231146104ba57806379051887146104b55780637b3c71d3146104b05780637d5e81e2146104ab5780637e63b733146104a65780637ecebe00146104a1578063823081581461049c57806384b0196e146104975780638e539e8c146104925780638ff262e31461048d57806391ddadf41461048857806395d89b411461048357806396e973fb1461047e57806397c3d334146104795780639a802a6d146104745780639ab24eb01461046f5780639be65b401461046a578063a7713a7014610465578063a890c91014610460578063a9059cbb1461045b578063a9a9529414610456578063ab27301614610451578063ab58fb8e1461044c578063b493193614610447578063b58131b014610442578063bc197c811461043d578063c01f9e3714610438578063c0e58a0e14610433578063c28bc2fa1461042e578063c3cda52014610429578063c59057e414610424578063d1fad4cd1461041f578063d33219b41461041a578063dd4e2ba514610415578063dd62ed3e14610410578063deaaa7cc1461040b578063e540d01d14610406578063eb9019d414610401578063ec4a59d9146103fc578063ece40cc1146103f7578063f1127ed8146103f2578063f23a6e61146103ed578063f2c26a47146103e8578063f8ce560a146103e3578063fc0c546a146103de5763fd5c4be70361000e57613859565b613814565b61375a565b61362a565b613550565b613499565b613444565b613426565b6133c4565b61331d565b6132cf565b61326c565b61320e565b6131e5565b6130b4565b613098565b612fcb565b612f5f565b612e93565b612e75565b612dd5565b612db7565b612d90565b612d59565b612c2c565b612c10565b612bdb565b612b67565b612b44565b612b26565b612ad4565b6129f1565b6129d5565b612998565b6128f1565b6128ce565b6127b6565b6126e7565b61261d565b612577565b612502565b6123d6565b61234e565b6122f9565b612288565b61224b565b612200565b6121e2565b612173565b61214d565b6120c5565b612059565b612009565b611fa7565b611f5a565b611f3c565b611ede565b611e20565b611dc7565b611d9a565b611c7c565b611c56565b611c0c565b611bf0565b611bb5565b611b7e565b611a29565b611970565b6117cb565b611671565b6115e8565b6115ca565b611380565b611221565b6111ed565b61106c565b610e75565b610bc5565b610ba2565b610ad4565b6109de565b61091e565b6108f7565b61087e565b6107ea565b346105ee5760203660031901126105ee576100216004358060005260216020526040600020600160058201916105e28354916105c160ff841615615e15565b6105d1600282015442101561629d565b600660078201549101541115615fa3565b60ff191617905561654d565b600080fd5b90600182811c92168015610623575b602083101461060d57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610602565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161065657604052565b61062d565b604081019081106001600160401b0382111761065657604052565b602081019081106001600160401b0382111761065657604052565b60c081019081106001600160401b0382111761065657604052565b60a081019081106001600160401b0382111761065657604052565b61010081019081106001600160401b0382111761065657604052565b90601f801991011681019081106001600160401b0382111761065657604052565b9060405191826000825492610718846105f3565b9081845260019485811690816000146107875750600114610744575b5050610742925003836106e3565b565b9093915060005260209081600020936000915b81831061076f57505061074293508201013880610734565b85548884018501529485019487945091830191610757565b91505061074294506020925060ff191682840152151560051b8201013880610734565b919082519283825260005b8481106107d6575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016107b5565b346105ee5760203660031901126105ee57600435600052601f602052610859604060002061081781610704565b9060028101549060038101549060018060a01b0360048201541660ff60068301541690600860078401549301549360405197889760e0895260e08901906107aa565b956020880152604087015260608601521515608085015260a084015260c08301520390f35b346105ee5760203660031901126105ee5760043563ffffffff60e01b81168091036105ee576020906332a2ad4360e11b81149081156108db575b81156108ca575b506040519015158152f35b6301ffc9a760e01b149050386108bf565b630271189760e51b811491506108b8565b60009103126105ee57565b346105ee5760003660031901126105ee57602063ffffffff60105460301c16604051908152f35b346105ee5760203660031901126105ee5760043561093a614111565b606481116109ab577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b036109746152c0565b1661098f610981836150e0565b65ffffffffffff43166154c4565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206109db9281815201906107aa565b90565b346105ee57600080600319360112610ac0576040519080600b54610a01816105f3565b80855291600191808316908115610a965750600114610a3b575b610a3785610a2b818703826106e3565b604051918291826109ca565b0390f35b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828410610a7e575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101610a63565b869550610a3796935060209250610a2b94915060ff191682840152151560051b8201019293610a1b565b80fd5b6001600160a01b038116036105ee57565b346105ee5760403660031901126105ee57600435610af181610ac3565b6024353315610b89576001600160a01b038216918215610b70573360009081526001602052604090208291610b38915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b346105ee5760003660031901126105ee57602060ff602654166040519015158152f35b346105ee5760003660031901126105ee576020602254604051908152f35b60165460009291610bf3826105f3565b80825291600190818116908115610c6a5750600114610c1157505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410610c5257505060209250010190565b80546020858501810191909152909301928101610c40565b915050602093945060ff929192191683830152151560051b010190565b60175460009291610c97826105f3565b80825291600190818116908115610c6a5750600114610cb557505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410610cf657505060209250010190565b80546020858501810191909152909301928101610ce4565b60185460009291610d1e826105f3565b80825291600190818116908115610c6a5750600114610d3c57505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410610d7d57505060209250010190565b80546020858501810191909152909301928101610d6b565b9060009291805491610da6836105f3565b918282526001938481169081600014610e085750600114610dc8575b50505050565b90919394506000526020928360002092846000945b838610610df4575050505001019038808080610dc2565b805485870183015294019385908201610ddd565b9294505050602093945060ff191683830152151560051b01019038808080610dc2565b95939091926109db9897959360018060a01b038094168852602088015260408701521660608501521515608084015260a083015260c0820152610100908160e082015201906107aa565b346105ee5760203660031901126105ee576004356000526021602052604060002060018060a01b0390610a376008838354169260018101549460028201549060038301541660ff60058401541690600684015492610ee9600786015495610ee26040518099819301610d95565b03876106e3565b60405198899889610e2b565b6040519061012082018281106001600160401b0382111761065657604052565b604051906107428261065b565b6001600160401b0381116106565760051b60200190565b81601f820112156105ee57803591610f5083610f22565b92610f5e60405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610f88575050505090565b8380918335610f9681610ac3565b815201910190610f7a565b81601f820112156105ee57803591610fb883610f22565b92610fc660405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610ff0575050505090565b81358152908301908301610fe2565b6001600160401b03811161065657601f01601f191660200190565b92919261102682610fff565b9161103460405193846106e3565b8294818452818301116105ee578281602093846000960137010152565b9080601f830112156105ee578160206109db9335910161101a565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761109d903690600401610f39565b906024358181116105ee576110b6903690600401610fa1565b90604435916064359182116105ee57610a37936111da6110fb7f8fd808cdcd18f44b7f33c61fb97b83154c1d653ef4a9a2d236b290644edd6c83943690600401611051565b6111088351855114615906565b6111148351151561594b565b61111f428711615986565b33600090815260208190526040902061113b905b5415156159c5565b6111cc6023549661115361114e89613e12565b602355565b61115b615a1d565b61117461116d60025460255490614a1a565b6064900490565b9061117d610ef5565b8781526020810189905260408101939093523360608401526080830152600060a083015260c0820152600060e0820152826101008201526111c78860005260208052604060002090565b615d20565b604051938493338886615dd8565b0390a16040519081529081906020820190565b346105ee5760203660031901126105ee57600435600052600c602052602060018060a01b0360406000205416604051908152f35b346105ee5760803660031901126105ee5761123d600435610ac3565b611248602435610ac3565b6064356001600160401b0381116105ee57611267903690600401611051565b506013546001600160a01b0316300361128c57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b9080601f830112156105ee578135906112b682610f22565b926112c460405194856106e3565b828452602092838086019160051b830101928084116105ee57848301915b8483106112f25750505050505090565b82356001600160401b0381116105ee57869161131384848094890101611051565b8152019201916112e2565b60806003198201126105ee576001600160401b03916004358381116105ee578261134a91600401610f39565b926024358181116105ee578361136291600401610fa1565b926044359182116105ee576113799160040161129e565b9060643590565b346105ee5761138e3661131e565b61139c818385879697613930565b926113a6846141a2565b506013546113c4906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615611579576000966115ab575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b825281806114268c8a8a8d60048601616b77565b03915afa9182156115795760009261157e575b505061144f876000526014602052604060002090565b55601354611465906001600160a01b03166113b8565b90813b156105ee5760008094611491878b51998a97889687956308f2a0bb60e41b875260048701616bbd565b03925af1908115611579576114b5926114b092611560575b5042613b2e565b615113565b65ffffffffffff81161561154f57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289261153e84611520610a3796600161150688600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b8061156d61157392610643565b806108ec565b386114a9565b6143a8565b61159d9250803d106115a4575b61159581836106e3565b810190614399565b3880611439565b503d61158b565b6115c3919650823d84116115a45761159581836106e3565b94386113ef565b346105ee5760003660031901126105ee576020600254604051908152f35b346105ee5760403660031901126105ee576004356001600160401b0381116105ee5761165c61163c7f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401611051565b60243561164881610ac3565b6040519283926040845260408401906107aa565b6001600160a01b0390911660208301520390a1005b346105ee5760803660031901126105ee5760043561168e81610ac3565b6044356064356024356001600160401b0382116105ee57610a37936111da6116db7ff80f5ce91f7d79d29fd2bd635816739c0fae47505f5a30a820e49ace80884165943690600401611051565b6116ef6001600160a01b0384161515615fe5565b6116fa84151561642c565b611708602854851115616478565b611713428711615986565b33600090815260208190526040902061172b90611133565b6117bd6024549661174361173e89613e12565b602455565b61174b615a1d565b61175d61116d60025460255490614a1a565b90611766610ef5565b6001600160a01b0388168152926020840189905260408401523360608401526080830152600060a083015260c0820152600060e0820152826101008201526117b8886000526021602052604060002090565b6164c4565b604051938493338886616516565b346105ee576020806003193601126105ee576004356117f4816000526021602052604060002090565b600581019261181361180e61180a865460ff1690565b1590565b615e15565b61182260028301544210615e61565b33600090815260208190526040902061183e905b541515615ea0565b60009060048301918254905b8181106118fe5750506040513360601b6001600160601b03191691810191825261188d9290916118889083906014015b03601f1981018452836106e3565b615f32565b6006600782019161189e8354613e12565b92839055604080518581523360208201529081018490527fc5fb6601ac4858dba31868a09f1646a3bfe4638f325353bb142719b81e3645a190606090a1015411156118e557005b6118f961002192600160ff19825416179055565b61654d565b8061191661190f61192c9387614440565b50546105f3565b158015611931575b61192790615ef5565b613e12565b61184a565b506119276119486119428388614440565b50610704565b805133916001600160a01b0391611966919081018901908901615ee0565b161415905061191e565b346105ee5760603660031901126105ee5760043561198d81610ac3565b60243561199981610ac3565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106119e3575b6119d79350614809565b60405160018152602090f35b8284106119ff576119fa836119d79503338361491b565b6119cd565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b611a323661131e565b611a40818385879597613930565b92611a4a846141f4565b50611a75611a6285600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611b19575b94611a9b9291610a379686616c0b565b6013543091166001600160a01b0316141580611af8575b611ae9575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081016111da565b611af36000600d55565b611ab7565b50611b1461180a600d546001600160801b0381169060801c1490565b611ab2565b9290939160005b8451811015611b7457611b559030611b4b6113b8611b3e848a613e37565b516001600160a01b031690565b14611b5a57613e12565b611b20565b611927611b67828a613e37565b5160208151910120615853565b5091939092611a8b565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b346105ee5760003660031901126105ee5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346105ee5760003660031901126105ee57602060405160128152f35b346105ee5760203660031901126105ee576100216004358060005260208052604060002060016005820191611c4a8354916105c160ff841615615e15565b60ff19161790556160e4565b346105ee5760003660031901126105ee57602065ffffffffffff60105416604051908152f35b346105ee5760403660031901126105ee57600435611c9981610ac3565b6001600160a01b0316600090815260096020526040812090611cbc602435614568565b91805482938160058111611d0e575b5090602094611cda92846157f2565b80611cf45750505b6040516001600160d01b039091168152f35b91611d00849293614431565b92815220015460301c611ce2565b94611d1886615195565b8603958611611d6357602095611cda9385875265ffffffffffff80838a8a2001541690851610600014611d515750915b91925094611ccb565b929150611d5d90613b20565b90611d48565b613994565b634e487b7160e01b600052602160045260246000fd5b60081115611d8857565b611d68565b906008821015611d885752565b346105ee5760203660031901126105ee576020611db860043561676f565b611dc56040518092611d8d565bf35b346105ee5760403660031901126105ee57602060ff611e14602435611deb81610ac3565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346105ee57611e2e3661131e565b90611e3d828285879697613930565b611e468161676f565b6008811015611d885760018060ff83161b1615611eb157506000908152600c60205260409020546001600160a01b03163303611e9957610a3793611e8993616a36565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b90611ed5606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60016044820152fd5b346105ee5760003660031901126105ee57610a37604051611efe8161065b565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906107aa565b346105ee5760003660031901126105ee576020602554604051908152f35b346105ee5760203660031901126105ee57600435600052601160205260406000208054610a3760026001840154930154604051938493846040919493926060820195825260208201520152565b346105ee5760003660031901126105ee57610a37604051611fc78161065b565b60018152603160f81b60208201526040519182916020835260208301906107aa565b6024359060ff821682036105ee57565b6064359060ff821682036105ee57565b346105ee5760403660031901126105ee576020612051612027611fe9565b60405161203381610676565b600081526040519161204483610676565b6000835233600435613fc2565b604051908152f35b346105ee5760203660031901126105ee57602060043561207881610ac3565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f840112156105ee578235916001600160401b0383116105ee57602083818601950101116105ee57565b346105ee5760c03660031901126105ee576120de611fe9565b604435906120eb82610ac3565b6001600160401b03906064358281116105ee5761210c903690600401612098565b6084358481116105ee57612124903690600401611051565b9160a4359485116105ee57610a3795612144611e89963690600401611051565b94600435613e50565b346105ee5760203660031901126105ee5761002160043561216d81610ac3565b336145a1565b346105ee5760803660031901126105ee5761218c611fe9565b6001600160401b03906044358281116105ee576121ad903690600401612098565b90916064359384116105ee576121d8612051936121d06020963690600401611051565b93369161101a565b9033600435613fc2565b346105ee5760203660031901126105ee576020612051600435614458565b346105ee5760203660031901126105ee5760043561221d81610ac3565b60018060a01b03166000526009602052602061223d604060002054615145565b63ffffffff60405191168152f35b346105ee5760203660031901126105ee57602061205160043561226d81610ac3565b6001600160a01b031660009081526020819052604090205490565b346105ee5760203660031901126105ee5760043565ffffffffffff8082168092036105ee576122b5614111565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b346105ee5760603660031901126105ee57612312611fe9565b6044356001600160401b0381116105ee5760209161234161233a612051933690600401612098565b369161101a565b6040519161204483610676565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761237f903690600401610f39565b906024358181116105ee57612398903690600401610fa1565b916044358281116105ee576123b190369060040161129e565b6064359283116105ee57610a37936123d0611e89943690600401611051565b926139dc565b346105ee576020806003193601126105ee576004356123fe8160005260208052604060002090565b600581019261241461180e61180a865460ff1690565b61242360028301544210615e61565b33600090815260208190526040902061243b90611836565b60009060048301918254905b8181106124ec5750506040513360601b6001600160601b03191691810191825261247b92909161188890839060140161187a565b6006600782019161248c8354613e12565b92839055604080518581523360208201529081018490527f77c69d1b59f862d9677ac552a49c26ba3fe18ccc64ad8da630a5343c306dea6190606090a1015411156124d357005b6124e761002192600160ff19825416179055565b6160e4565b8061191661190f6124fd9387614440565b612447565b346105ee5760203660031901126105ee5760043561251f81610ac3565b60018060a01b031660005260076020526020604060002054604051908152f35b926109db96959260c09592855260018060a01b0316602085015215156040840152606083015260808201528160a082015201906107aa565b346105ee5760203660031901126105ee576004356000526020805260406000206002810154610a37600860018060a01b036003850154169360ff6005820154166006820154906125dd6007840154936125d66040518097819301610d95565b03856106e3565b6040519687968761253f565b90815180825260208080930193019160005b828110612609575050505090565b8351855293810193928101926001016125fb565b346105ee5760003660031901126105ee576126b861265a7f0000000000000000000000000000000000000000000000000000000000000000614e4f565b610a376126867f0000000000000000000000000000000000000000000000000000000000000000614f48565b6126c66040519161269683610676565b60008352604051958695600f60f81b875260e0602088015260e08701906107aa565b9085820360408701526107aa565b90466060850152306080850152600060a085015283820360c08501526125e9565b346105ee5760203660031901126105ee57612703600435614568565b600a5490600082916005841161275b575b61271e9350615720565b60008161273357505060405160008152602090f35b600a612740602093614431565b9152600080516020616cb4833981519152015460301c611ce2565b919261276681615195565b8103908111611d635761271e93600a835265ffffffffffff8083600080516020616cb4833981519152015416908516106000146127a4575091612714565b9291506127b090613b20565b90612714565b346105ee5760803660031901126105ee576004356127d2611fe9565b90604435916127e083610ac3565b6064356001600160401b0381116105ee5761180a612805612892923690600401611051565b6001600160a01b038616600090815260076020526040902080546001810190915561288c9060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a0815261288481610691565b519020614d15565b86615002565b6128ad5790611e8991610a37936128a761388b565b92613f46565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346105ee5760003660031901126105ee57602060405165ffffffffffff43168152f35b346105ee57600080600319360112610ac0576040519080600454612914816105f3565b80855291600191808316908115610a96575060011461293d57610a3785610a2b818703826106e3565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410612980575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101612965565b346105ee5760203660031901126105ee576004356129b581610ac3565b60018060a01b031660005260276020526020604060002054604051908152f35b346105ee5760003660031901126105ee57602060405160648152f35b346105ee5760603660031901126105ee57600435612a0e81610ac3565b6044356001600160401b0381116105ee57612a6591612a336020923690600401611051565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa801561157957610a3791600091612ab6575b506040519081529081906020820190565b612ace915060203d81116115a45761159581836106e3565b38612aa5565b346105ee5760203660031901126105ee57600435612af181610ac3565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612b1d90615354565b16604051908152f35b346105ee5760003660031901126105ee576020602454604051908152f35b346105ee5760003660031901126105ee5760206001600160d01b03612b1d6152c0565b346105ee5760203660031901126105ee57600435612b8481610ac3565b612b8c614111565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b346105ee5760403660031901126105ee57612c05600435612bfb81610ac3565b6024359033614809565b602060405160018152f35b346105ee5760203660031901126105ee57602060405160018152f35b346105ee5760203660031901126105ee57600435612c5481600052601f602052604060002090565b6006810190612c6a61180e61180a845460ff1690565b612c7960028201544210615e61565b336000908152602081905260409020612c9190611836565b6040513360601b6001600160601b0319166020820152612ccb90612cc281603481015b03601f1981018352826106e3565b60058301615f32565b60076008820191612cdc8354613e12565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a101541115612d2357005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f906109a690611e89565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b346105ee5760203660031901126105ee576020612051600435612db281610ac3565b616620565b346105ee5760003660031901126105ee576020600f54604051908152f35b346105ee5760a03660031901126105ee57612df1600435610ac3565b612dfc602435610ac3565b6001600160401b036044358181116105ee57612e1c903690600401610fa1565b506064358181116105ee57612e35903690600401610fa1565b506084359081116105ee57612e4e903690600401611051565b50610a37612e5a614185565b6040516001600160e01b031990911681529081906020820190565b346105ee5760203660031901126105ee5760206120516004356139aa565b346105ee5760203660031901126105ee57600435612eb281151561642c565b3360005260006020528060406000205410612f23576109a681612ef77fbd67ec2db294b72ed21ac12cf37aa44775b63ea7ab9345652a1d28be069c4100933033614809565b612f0b612f0682602854613b2e565b602855565b60408051338152602081019290925290918291820190565b60405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606490fd5b60603660031901126105ee57600435612f7781610ac3565b604435906001600160401b0382116105ee5760008091612f9e610021943690600401612098565b90612fa7614111565b81604051928392833781018481520391602435905af1612fc56140e1565b9061496e565b346105ee5760c03660031901126105ee57600435612fe881610ac3565b60443590602435612ff7611ff9565b83421161307f576130736100219461307a926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261305b826106ac565b61306e60a4359360843593519020614d15565b614be2565b9182614997565b6145a1565b604051632341d78760e11b815260048101859052602490fd5b346105ee5760206120516130ab3661131e565b92919091613930565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee576130e5903690600401611051565b6024359182116105ee577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111da613124610a37943690600401610fa1565b926131d760443594613138835115156162e0565b6131448151151561631e565b61314f428711615986565b6022549561316461315f88613e12565b602255565b61316c615a1d565b61317e61116d60025460255490614a1a565b91613187610ef5565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526131d286600052601f602052604060002090565b616360565b604051918291338684616404565b346105ee5760003660031901126105ee576013546040516001600160a01b039091168152602090f35b346105ee5760003660031901126105ee57610a3760405161322e8161065b565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906107aa565b346105ee5760403660031901126105ee5760206132c660043561328e81610ac3565b6024359061329b82610ac3565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b346105ee5760003660031901126105ee5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff821682036105ee57565b346105ee5760203660031901126105ee5761333661330a565b61333e614111565b63ffffffff8082169182156133ab577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346105ee5760403660031901126105ee57612a6560206004356133e681610ac3565b60006040516133f481610676565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b346105ee5760003660031901126105ee576020602854604051908152f35b346105ee5760203660031901126105ee57600435613460614111565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b346105ee5760403660031901126105ee576004356134b681610ac3565b6024359063ffffffff821682036105ee57610a3791613506916134d7614955565b506134e0614955565b506001600160a01b03166000908152600960205260409020613500614955565b50614440565b50604051906135148261065b565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b346105ee5760a03660031901126105ee5761356c600435610ac3565b613577602435610ac3565b6084356001600160401b0381116105ee57613596903690600401611051565b506013546001600160a01b0316300361128c5760405163f23a6e6160e01b8152602090f35b979499989592613600906135f261360e946135e46101009b98958d6101209081815201906107aa565b8c810360208e0152906107aa565b908a820360408c01526107aa565b9088820360608a01526107aa565b97608087015260a086015260c085015260e08401521515910152565b346105ee57600080600319360112610ac05760405190818160155461364e816105f3565b8084529360019180831690811561373657506001146136d9575b5050613676925003826106e3565b6040519061368e8261368781610be3565b03836106e3565b610a376040516136a8816136a181610c87565b03826106e3565b6040516136b8816136a181610d0e565b601954601a54601c5491601d549360ff601e541695604051998a998a6135bb565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b84831061371b575061367693505081016020013880613668565b81935090816020925483858901015201910190918492613701565b9150506020925061367694915060ff191682840152151560051b8201013880613668565b346105ee5760203660031901126105ee57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa91821561157957610a37926064926137de926000926137f0575b506137d890614458565b90614a1a565b04604051918291829190602083019252565b6137d891925061380d9060203d81116115a45761159581836106e3565b91906137ce565b346105ee5760003660031901126105ee576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346105ee5760003660031901126105ee576020602354604051908152f35b6013546001600160a01b0316300361128c57565b6040519061389882610676565b60008252565b90815180825260208080930193019160005b8281106138be575050505090565b83516001600160a01b0316855293810193928101926001016138b0565b90815180825260208092019182818360051b85019501936000915b8483106139065750505050505090565b909192939495848061392083856001950387528a516107aa565b98019301930191949392906138f6565b929061397c9261398e9260405194859261396c613959602086019960808b5260a087019061389e565b601f1996878783030160408801526125e9565b90858583030160608601526138db565b906080830152039081018352826106e3565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611d63571690565b91939290936139eb8233614246565b15613ae857600f549485613a07575b6109db9495503393613c53565b65ffffffffffff43811660001901818111611d6357613a58916020916000604051613a3181610676565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561157957600091613aca575b50868110613aa357506139fa565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613ae2915060203d81116115a45761159581836106e3565b38613a95565b60405163d9b3955760e01b8152336004820152602490fd5b604090613b1c6000939594606083019683526020830190611d8d565b0152565b9060018201809211611d6357565b91908201809211611d6357565b90613b4582610f22565b613b5260405191826106e3565b8281528092613b63601f1991610f22565b019060005b828110613b7457505050565b806060602080938501015201613b68565b9592613bb890613bc6939b9a9899969592885260209b60018060a01b03168c8901526101208060408a015288019061389e565b9086820360608801526125e9565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b838210613c255750505050506109db96975090613c0c9184820360a08601526138db565b9360c083015260e08201526101008184039101526107aa565b90919293958380613c448f93600194601f199082030186528a516107aa565b98019201920190939291613be8565b919493909294613c6b86516020880120828686613930565b958351855190818114801590613e07575b8015613dff575b613dd657505065ffffffffffff9485613cb8613ca98a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613daf577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e095613daa9363ffffffff613cfa60105493808516904316613b2e565b9260301c16613d88613d168c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a16178155613d5f613d3b86615113565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b613d6883615145565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b613d9c613d958951613b3b565b9184613b2e565b936040519889988d8a613b85565b0390a1565b87613db98161676f565b6040516331b75e4d60e01b8152918291611a259160048401613b00565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b508015613c83565b508351811415613c7c565b6000198114611d635760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015613e4b5760209160051b010190565b613e21565b93909291969561180a613f0a91613f048a613e868160018060a01b03166000526007602052604060002080549060018201905590565b613e9136888a61101a565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152612884816106c7565b8a615002565b613f25576109db959691613f1f91369161101a565b92613fc2565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916109db939160405193613f5985610676565b60008552613fc2565b93909260ff613f8e936109db97958752166020860152604085015260a0606085015260a08401906107aa565b9160808184039101526107aa565b909260ff6080936109db96958452166020830152604082015281606082015201906107aa565b929190613fce8461676f565b6008811015611d88576002600160ff83161b16156140b3575083600052600c60205261402a61402261401c614011604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b836143b4565b8383876142ae565b9480511560001461407757506140717fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613f9c565b0390a290565b614071907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886613f62565b6040516331b75e4d60e01b8152600481018690526064916140d8906024830190611d8d565b60026044820152fd5b3d1561410c573d906140f282610fff565b9161410060405193846106e3565b82523d6000602084013e565b606090565b6013546001600160a01b031633810361416d57300361412c57565b61413536610fff565b61414260405191826106e3565b368152602081019036600083376000602036830101525190205b806141656158ae565b0361415c5750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b0316300361128c5763bc197c8160e01b90565b6141ab8161676f565b906008821015611d88576010600160ff84161b16156141c8575090565b6141eb606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60106044820152fd5b6141fd8161676f565b906008821015611d88576030600160ff84161b161561421a575090565b61423d606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60306044820152fd5b908051603481106142a65760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b016142a65761428591602919820190614a2d565b901591821561429357505090565b6001600160a01b03918216911614919050565b505050600190565b6142c5909291926000526011602052604060002090565b91600383016142f06142e983839060018060a01b0316600052602052604060002090565b5460ff1690565b6143785761431660ff9392614323929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b168061433a5750614335828254613b2e565b905590565b600181036143515750600101614335828254613b2e565b60020361436657600201614335828254613b2e565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b908160209103126105ee575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561157957600091614419575090565b6109db915060203d81116115a45761159581836106e3565b600019810191908211611d6357565b8054821015613e4b5760005260206000200190600090565b601254906000198201828111611d6357821115613e4b57600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff9281848216111561455d57506144b790615113565b83908260058111614507575b506144ce9350615789565b806144e157505b6001600160d01b031690565b6144ec601291614431565b9152600080516020616c94833981519152015460301c6144d5565b909261451282615195565b8203918211611d63576144ce94601287528083600080516020616c948339815191520154169085161060001461454b5750915b386144c3565b92915061455790613b20565b90614545565b935050505060301c90565b65ffffffffffff43168082101561458357506109db90615113565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b0319821681179092556107429694169461461e9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580614768575b614648575b5050505050565b816146cd575b50508261465d575b8080614641565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916146aa916146a490916150e0565b90614771565b604080516001600160d01b039384168152919092166020820152a2388080614656565b6001600160a01b031660009081526009602052604090206146ed846150e0565b6001600160d01b0390818061470185615354565b1691169003818111611d635761474561475e917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690615664565b6040805192851683529316602082015291829190820190565b0390a2388061464e565b5083151561463c565b906001600160d01b0390818061478685615354565b16911601908111611d63576147a49165ffffffffffff431690615664565b9091565b6001600160d01b039081806147bb61530a565b16911601908111611d63576147a49065ffffffffffff43166155ad565b6001600160d01b039081806147eb61530a565b1691169003908111611d63576147a49065ffffffffffff43166155ad565b6001600160a01b038082169493929190851561490257821680156148e9576001600160a01b038216600090815260208190526040902054958487106148ba578461074296970361486b8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36166ec565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610b8957811615610b7057610b216149529260018060a01b03166000526001602052604060002090565b55565b604051906149628261065b565b60006020838281520152565b909190610742575080511561498557805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b03811660009081526007602052604090208054600181019091558092036149c3575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b9180830460021490151715611d6357565b908160041b9180830460101490151715611d6357565b81810292918115918404141715611d6357565b9190825182118015614ab6575b614a8d57614a4781613b20565b821180614a98575b614a5a9015156149ee565b60280180602811611d6357818303838111611d635703614a8d57614a7d92614abf565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b14614a4f565b50818111614a3a565b929092614acb84613b20565b831180614b52575b614ade9015156149ee565b936000948101809111611d63579192905b818310614aff5750505060019190565b9092919360ff614b20614b1b6020888601015160ff60f81b1690565b614b70565b1690600f8211614b465790614b37614b3e92614a04565b0194613e12565b919290614aef565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614ad3565b60f81c602f811180614bd8575b15614b8c57602f190160ff1690565b6060811180614bce575b15614ba5576056190160ff1690565b6040811180614bc4575b15614bbe576036190160ff1690565b5060ff90565b5060478110614baf565b5060678110614b96565b50603a8110614b7d565b916109db9391614bf193614bfa565b90929192614c88565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411614c7257926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156115795780516001600160a01b03811615614c6957918190565b50809160019190565b50505060009160039190565b60041115611d8857565b614c9181614c7e565b80614c9a575050565b614ca381614c7e565b60018103614cbd5760405163f645eedf60e01b8152600490fd5b614cc681614c7e565b60028103614ce75760405163fce698f760e01b815260048101839052602490fd5b80614cf3600392614c7e565b14614cfb5750565b6040516335e2f38360e21b81526004810191909152602490fd5b604290614d20614d3b565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480614e26575b15614d96577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261398e81610691565b507f00000000000000000000000000000000000000000000000000000000000000004614614d6d565b60ff8114614e8d5760ff811690601f8211614e7b5760405191614e718361065b565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614ea0836105f3565b80835292600190818116908115614f265750600114614ec7575b506109db925003826106e3565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310614f0b57506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614ef2565b9050602092506109db94915060ff191682840152151560051b82010138614eba565b60ff8114614f6a5760ff811690601f8211614e7b5760405191614e718361065b565b50604051600654816000614f7d836105f3565b80835292600190818116908115614f265750600114614fa357506109db925003826106e3565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310614fe757506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614fce565b9091813b61502a5761501491926150a4565b5061501e81614c7e565b15918261429357505090565b600091829160405161506081612cb46020820194630b135d3f60e11b998a875260248401526040604484015260648301906107aa565b51915afa9061506d6140e1565b82615096575b8261507d57505090565b61509291925060208082518301019101614399565b1490565b915060208251101591615073565b81519190604183036150d5576150ce92506020820151906060604084015193015160001a90614bfa565b9192909190565b505060009160029190565b6001600160d01b03908181116150f4571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111615126571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff90818111615156571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b811561517f570490565b634e487b7160e01b600052601260045260246000fd5b60018111156109db57600181600160801b8110156152ae575b61525661524c61524261523861522e61522461526297600488600160401b61525d9a10156152a1575b640100000000811015615294575b62010000811015615287575b61010081101561527b575b601081101561526f575b1015615267575b60030260011c61521d818b615175565b0160011c90565b61521d818a615175565b61521d8189615175565b61521d8188615175565b61521d8187615175565b61521d8186615175565b8093615175565b821190565b900390565b60011b61520d565b811c9160021b91615206565b60081c91811b916151fc565b60101c9160081b916151f1565b60201c9160101b916151e5565b60401c9160201b916151d7565b50600160401b9050608082901c6151ae565b601254600090806152d2575050600090565b80600019810111611d635760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a546000908061531c575050600090565b80600019810111611d6357600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b80546000918161536657505050600090565b600019928284810111611d635760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b821015610656576001820180601255821015613e4b57610742916012600052600080516020616c9483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b821015610656576001820180600a55821015613e4b5761074291600a600052600080516020616cb483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b8110156106565761549791600182018155614440565b6154bf578151815465ffffffffffff191665ffffffffffff91909116178155610742916153f8565b615382565b6012549192918015615583576154dc6154f491614431565b6012600052600080516020616c948339815191520190565b9081549165ffffffffffff90818416918316808311615571578692036155395761553292509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505061556c9061555861554a610f15565b65ffffffffffff9092168252565b6001600160d01b0385166020820152615398565b615532565b604051632520601d60e01b8152600490fd5b506155a79061559361554a610f15565b6001600160d01b0384166020820152615398565b60009190565b600a549192918015615640576155c56155dd91614431565b600a600052600080516020616cb48339815191520190565b9081549165ffffffffffff908184169183168083116155715786920361561b5761553292509065ffffffffffff82549181199060301b169116179055565b505061556c9061562c61554a610f15565b6001600160d01b038516602082015261541a565b506155a79061565061554a610f15565b6001600160d01b038416602082015261541a565b805492939280156156fb5761567b61568891614431565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411615571578793036156c7575061553292509065ffffffffffff82549181199060301b169116179055565b91505061556c916156e76156d9610f15565b65ffffffffffff9093168352565b6001600160d01b038616602083015261547a565b50906155a79161570c6156d9610f15565b6001600160d01b038516602083015261547a565b905b82811061572e57505090565b90918082169080831860011c8201809211611d6357600a60005265ffffffffffff8083600080516020616cb4833981519152015416908516106000146157775750915b90615722565b92915061578390613b20565b90615771565b905b82811061579757505090565b90918082169080831860011c8201809211611d6357601260005265ffffffffffff8083600080516020616c94833981519152015416908516106000146157e05750915b9061578b565b9291506157ec90613b20565b906157da565b91905b8382106158025750505090565b9091928083169080841860011c8201809211611d635760008581526020902082015465ffffffffffff90811690841610156158415750925b91906157f5565b93925061584d90613b20565b9161583a565b600d548060801c9160018301926001600160801b038093168385161461589b57600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c83146158f35782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b1561590d57565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561595257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b1561598d57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b156159cc57565b60405162461bcd60e51b815260206004820152602360248201527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b604051615a2981610676565b6000815290565b818110615a3b575050565b60008155600101615a30565b91818110615a5457505050565b6107429260005260206000209182019101615a30565b8151916001600160401b03831161065657600160401b831161065657615a9583835481855584615a47565b602080910191600052806000209060005b848110615ab4575050505050565b83516001600160a01b03168382015592810192600101615aa6565b8151916001600160401b03831161065657600160401b831161065657615afa83835481855584615a47565b602080910191600052806000209060005b848110615b19575050505050565b83518382015592810192600101615b0b565b9190601f8111615b3a57505050565b610742926000526020600020906020601f840160051c83019310615b66575b601f0160051c0190615a30565b9091508190615b59565b91909182516001600160401b03811161065657615b9781615b9184546105f3565b84615b2b565b602080601f8311600114615bd3575081929394600092615bc8575b50508160011b916000199060031b1c1916179055565b015190503880615bb2565b90601f19831695615be985600052602060002090565b926000905b888210615c2657505083600195969710615c0d575b505050811b019055565b015160001960f88460031b161c19169055388080615c03565b80600185968294968601518155019501930190615bee565b815191600160401b8311610656578154838355808410615c9c575b50615c6e602080920192600052602060002090565b6000925b848410615c80575050505050565b60018382615c9083945186615b70565b01920193019290615c72565b6000838152846020822092830192015b828110615cba575050615c59565b80615cc7600192546105f3565b80615cd4575b5001615cac565b601f908181118414615cec5750508281555b38615ccd565b83615d0e92615d0085600052602060002090565b920160051c82019101615a30565b60008181526020812081835555615ce6565b600861010061074293615d34815185615a6a565b615d45602082015160018601615acf565b604081015160028501556060810151615d85906001600160a01b03165b6003860180546001600160a01b0319166001600160a01b03909216919091179055565b615d96608082015160048601615c3e565b615dbb615da660a0830151151590565b600586019060ff801983541691151516179055565b60c0810151600685015560e0810151600785015501519101615b70565b93906109db9593613f8e93615e0792875260018060a01b0316602087015260a0604087015260a086019061389e565b9084820360608601526125e9565b15615e1c57565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b15615e6857565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b15615ea757565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b908160209103126105ee57516109db81610ac3565b15615efc57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b8054600160401b81101561065657615f4f91600182018155614440565b9190916154bf5761074291615b70565b15615f6657565b60405162461bcd60e51b8152602060048201526015602482015274141c9bdc1bdcd85b081b9bdd08195e1958dd5d1959605a1b6044820152606490fd5b15615faa57565b60405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742071756f72756d60681b6044820152606490fd5b15615fec57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b1561602757565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6060810191815260209060608282015283548093526080810192600094855282852090855b8181106160c7575050506040818403910152808454928381520193835280832092905b8282106160b0575050505090565b8354855293840193600193840193909101906160a2565b82546001600160a01b03168652948401946001928301920161607f565b906160f88260005260208052604060002090565b61610e616109600583015460ff1690565b615f5f565b616122600782015460068301541115615fa3565b600181810193906000815b616166575b5050613daa7fe8585c604452fcb59bc021fce36eb8241ffc18bd81b50ce6cd5cea81ceeaa58d93946040519384938461605a565b83548110156161ec57806161a261619b6113b86161866161e69589614440565b905460039190911b1c6001600160a01b031690565b1515615fe5565b6161c36161bc6161b2838a614440565b90549060031b1c90565b1515616020565b6119276161d36161868388614440565b6161e06161b2848b614440565b906161f1565b8161612d565b616132565b91906001600160a01b03831680156148e957600254828101809111611d63576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116162775761074292935061666e565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b156162a457565b60405162461bcd60e51b8152602060048201526014602482015273151a5b595b1bd8dac81b9bdd08195e1c1a5c995960621b6044820152606490fd5b156162e757565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561632557565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b90610100600891616372815185615b70565b616383602082015160018601615acf565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556163ce60a082015160058601615c3e565b6163f36163de60c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526109db929101906107aa565b1561643357565b60405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606490fd5b1561647f57565b60405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742074726561737572792062616c616e63650000006044820152606490fd5b815181546001600160a01b0319166001600160a01b03909116178155610742916008906101009060208101516001850155604081015160028501556060810151615d85906001600160a01b0316615d62565b9081526001600160a01b03918216602082015291166040820152606081019190915260a0608082018190526109db929101906107aa565b80600052602160205260406000209061656c60ff600584015416615f5f565b616580600783015460068401541115615fa3565b60018201908154926028549361659885821115616478565b8403938411611d63576165f6613daa916165d27f0bb768aa97fa4e8a8f73bfa7bc210f1a29f29c765d44f0c29acc04a549e32e4396602855565b805485546165e9916001600160a01b031630614809565b546001600160a01b031690565b9254604080519384526001600160a01b039094166020840152928201929092529081906060820190565b6001600160a01b031660009081526020819052604090205480158015616664575b61665e576166556109db9160285490614a1a565b60025490615175565b50600090565b5060285415616641565b906107429161668461667f836150e0565b6147a8565b50506001600160a01b039081169081156166d4575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116614620565b6166e56166e0846150e0565b6147d8565b5050616699565b61074292916001600160a01b03918216919081908315616744575b16918215616731575b60005260086020528060406000205416916000526040600020541690614620565b61673d6166e0856150e0565b5050616710565b61675061667f866150e0565b5050616707565b908160209103126105ee575180151581036105ee5790565b61677881616881565b9061678282611d7e565b6005820361687d5761679f91506000526014602052604060002090565b546013546167b5906001600160a01b03166113b8565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa90811561157957600091616860575b50156167f357505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa91821561157957600092616833575b50501561682e57600790565b600290565b6168529250803d10616859575b61684a81836106e3565b810190616757565b3880616822565b503d616840565b6168779150843d86116168595761684a81836106e3565b386167e5565b5090565b61689581600052600c602052604060002090565b5460ff8160f01c1661698d5760f81c616987576168c2614011613ca983600052600c602052604060002090565b801561696e5765ffffffffffff431680911015616967576168e2826139aa565b106168ed5750600190565b6168f961180a82616994565b8015616942575b1561690b5750600390565b614011600161692761693493600052600c602052604060002090565b015465ffffffffffff1690565b61693d57600490565b600590565b5061696261180a8260005260116020526040600020600181015490541090565b616900565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa91821561157957616a3192606492616a1f926000926137f057506137d890614458565b04916002600182015491015490613b2e565b101590565b90616a42939291613930565b616a4b8161676f565b6008811015611d8857603b600160ff83161b1615616b4a5750616a90616a7b82600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1616ad0816000526014602052604060002090565b5480616ada575090565b601354616aef906001600160a01b03166113b8565b803b156105ee5760405163c4d252f560e01b815260048101929092526000908290602490829084905af1801561157957616b37575b5060008181526014602052604081205590565b8061156d616b4492610643565b38616b24565b90616b6e606492604051926331b75e4d60e01b845260048401526024830190611d8d565b603b6044820152fd5b949392616ba3608093616b95616bb19460a08a5260a08a019061389e565b9088820360208a01526125e9565b9086820360408801526138db565b93600060608201520152565b9192616bec60a094616bde616bfa949998979960c0875260c087019061389e565b9085820360208701526125e9565b9083820360408501526138db565b946000606083015260808201520152565b9290939160018060a01b036013541690813b156105ee57600093616c5a6040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601616b77565b039134905af19081156115795760009261495292616c84575b506000526014602052604060002090565b616c8d90610643565b38616c7356febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212209a5de699f7aefb288e8394e1a1967891a7fa659845a380ec582ae5c3dad15a8264736f6c63430008140033bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a83ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724", - "deployedBytecode": "0x60806040526004361015610023575b361561001957600080fd5b610021613877565b005b60003560e01c80627e637e14610582578063013cf08b1461057d57806301ffc9a71461057857806302a251a31461057357806306f3f9e61461056e57806306fdde0314610569578063095ea7b3146105645780630965211e1461055f5780630c0512e91461055a5780630eb1259614610555578063108b4e0714610550578063143489d01461054b578063150b7a0214610546578063160cbed71461054157806318160ddd1461053c578063194a94fc146105375780631b470faf146105325780631c0f4d8d1461052d57806323b872dd146105285780632656227d146105235780632d63f6931461051e5780632fe3e26114610519578063313ce5671461051457806335c4364f1461050f5780633932abb11461050a5780633a46b1a8146105055780633e4f49e61461050057806343859632146104fb578063452115d6146104f65780634bf5d7e9146104f15780634fa76ec9146104ec578063544ffc9c146104e757806354fd4d50146104e257806356781388146104dd578063587cde1e146104d85780635b8d0e0d146104d35780635c19a95c146104ce5780635f398a14146104c957806360c4247f146104c45780636fcfff45146104bf57806370a08231146104ba57806379051887146104b55780637b3c71d3146104b05780637d5e81e2146104ab5780637e63b733146104a65780637ecebe00146104a1578063823081581461049c57806384b0196e146104975780638e539e8c146104925780638ff262e31461048d57806391ddadf41461048857806395d89b411461048357806396e973fb1461047e57806397c3d334146104795780639a802a6d146104745780639ab24eb01461046f5780639be65b401461046a578063a7713a7014610465578063a890c91014610460578063a9059cbb1461045b578063a9a9529414610456578063ab27301614610451578063ab58fb8e1461044c578063b493193614610447578063b58131b014610442578063bc197c811461043d578063c01f9e3714610438578063c0e58a0e14610433578063c28bc2fa1461042e578063c3cda52014610429578063c59057e414610424578063d1fad4cd1461041f578063d33219b41461041a578063dd4e2ba514610415578063dd62ed3e14610410578063deaaa7cc1461040b578063e540d01d14610406578063eb9019d414610401578063ec4a59d9146103fc578063ece40cc1146103f7578063f1127ed8146103f2578063f23a6e61146103ed578063f2c26a47146103e8578063f8ce560a146103e3578063fc0c546a146103de5763fd5c4be70361000e57613859565b613814565b61375a565b61362a565b613550565b613499565b613444565b613426565b6133c4565b61331d565b6132cf565b61326c565b61320e565b6131e5565b6130b4565b613098565b612fcb565b612f5f565b612e93565b612e75565b612dd5565b612db7565b612d90565b612d59565b612c2c565b612c10565b612bdb565b612b67565b612b44565b612b26565b612ad4565b6129f1565b6129d5565b612998565b6128f1565b6128ce565b6127b6565b6126e7565b61261d565b612577565b612502565b6123d6565b61234e565b6122f9565b612288565b61224b565b612200565b6121e2565b612173565b61214d565b6120c5565b612059565b612009565b611fa7565b611f5a565b611f3c565b611ede565b611e20565b611dc7565b611d9a565b611c7c565b611c56565b611c0c565b611bf0565b611bb5565b611b7e565b611a29565b611970565b6117cb565b611671565b6115e8565b6115ca565b611380565b611221565b6111ed565b61106c565b610e75565b610bc5565b610ba2565b610ad4565b6109de565b61091e565b6108f7565b61087e565b6107ea565b346105ee5760203660031901126105ee576100216004358060005260216020526040600020600160058201916105e28354916105c160ff841615615e15565b6105d1600282015442101561629d565b600660078201549101541115615fa3565b60ff191617905561654d565b600080fd5b90600182811c92168015610623575b602083101461060d57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610602565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161065657604052565b61062d565b604081019081106001600160401b0382111761065657604052565b602081019081106001600160401b0382111761065657604052565b60c081019081106001600160401b0382111761065657604052565b60a081019081106001600160401b0382111761065657604052565b61010081019081106001600160401b0382111761065657604052565b90601f801991011681019081106001600160401b0382111761065657604052565b9060405191826000825492610718846105f3565b9081845260019485811690816000146107875750600114610744575b5050610742925003836106e3565b565b9093915060005260209081600020936000915b81831061076f57505061074293508201013880610734565b85548884018501529485019487945091830191610757565b91505061074294506020925060ff191682840152151560051b8201013880610734565b919082519283825260005b8481106107d6575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016107b5565b346105ee5760203660031901126105ee57600435600052601f602052610859604060002061081781610704565b9060028101549060038101549060018060a01b0360048201541660ff60068301541690600860078401549301549360405197889760e0895260e08901906107aa565b956020880152604087015260608601521515608085015260a084015260c08301520390f35b346105ee5760203660031901126105ee5760043563ffffffff60e01b81168091036105ee576020906332a2ad4360e11b81149081156108db575b81156108ca575b506040519015158152f35b6301ffc9a760e01b149050386108bf565b630271189760e51b811491506108b8565b60009103126105ee57565b346105ee5760003660031901126105ee57602063ffffffff60105460301c16604051908152f35b346105ee5760203660031901126105ee5760043561093a614111565b606481116109ab577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b036109746152c0565b1661098f610981836150e0565b65ffffffffffff43166154c4565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206109db9281815201906107aa565b90565b346105ee57600080600319360112610ac0576040519080600b54610a01816105f3565b80855291600191808316908115610a965750600114610a3b575b610a3785610a2b818703826106e3565b604051918291826109ca565b0390f35b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828410610a7e575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101610a63565b869550610a3796935060209250610a2b94915060ff191682840152151560051b8201019293610a1b565b80fd5b6001600160a01b038116036105ee57565b346105ee5760403660031901126105ee57600435610af181610ac3565b6024353315610b89576001600160a01b038216918215610b70573360009081526001602052604090208291610b38915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b346105ee5760003660031901126105ee57602060ff602654166040519015158152f35b346105ee5760003660031901126105ee576020602254604051908152f35b60165460009291610bf3826105f3565b80825291600190818116908115610c6a5750600114610c1157505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410610c5257505060209250010190565b80546020858501810191909152909301928101610c40565b915050602093945060ff929192191683830152151560051b010190565b60175460009291610c97826105f3565b80825291600190818116908115610c6a5750600114610cb557505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410610cf657505060209250010190565b80546020858501810191909152909301928101610ce4565b60185460009291610d1e826105f3565b80825291600190818116908115610c6a5750600114610d3c57505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410610d7d57505060209250010190565b80546020858501810191909152909301928101610d6b565b9060009291805491610da6836105f3565b918282526001938481169081600014610e085750600114610dc8575b50505050565b90919394506000526020928360002092846000945b838610610df4575050505001019038808080610dc2565b805485870183015294019385908201610ddd565b9294505050602093945060ff191683830152151560051b01019038808080610dc2565b95939091926109db9897959360018060a01b038094168852602088015260408701521660608501521515608084015260a083015260c0820152610100908160e082015201906107aa565b346105ee5760203660031901126105ee576004356000526021602052604060002060018060a01b0390610a376008838354169260018101549460028201549060038301541660ff60058401541690600684015492610ee9600786015495610ee26040518099819301610d95565b03876106e3565b60405198899889610e2b565b6040519061012082018281106001600160401b0382111761065657604052565b604051906107428261065b565b6001600160401b0381116106565760051b60200190565b81601f820112156105ee57803591610f5083610f22565b92610f5e60405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610f88575050505090565b8380918335610f9681610ac3565b815201910190610f7a565b81601f820112156105ee57803591610fb883610f22565b92610fc660405194856106e3565b808452602092838086019260051b8201019283116105ee578301905b828210610ff0575050505090565b81358152908301908301610fe2565b6001600160401b03811161065657601f01601f191660200190565b92919261102682610fff565b9161103460405193846106e3565b8294818452818301116105ee578281602093846000960137010152565b9080601f830112156105ee578160206109db9335910161101a565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761109d903690600401610f39565b906024358181116105ee576110b6903690600401610fa1565b90604435916064359182116105ee57610a37936111da6110fb7f8fd808cdcd18f44b7f33c61fb97b83154c1d653ef4a9a2d236b290644edd6c83943690600401611051565b6111088351855114615906565b6111148351151561594b565b61111f428711615986565b33600090815260208190526040902061113b905b5415156159c5565b6111cc6023549661115361114e89613e12565b602355565b61115b615a1d565b61117461116d60025460255490614a1a565b6064900490565b9061117d610ef5565b8781526020810189905260408101939093523360608401526080830152600060a083015260c0820152600060e0820152826101008201526111c78860005260208052604060002090565b615d20565b604051938493338886615dd8565b0390a16040519081529081906020820190565b346105ee5760203660031901126105ee57600435600052600c602052602060018060a01b0360406000205416604051908152f35b346105ee5760803660031901126105ee5761123d600435610ac3565b611248602435610ac3565b6064356001600160401b0381116105ee57611267903690600401611051565b506013546001600160a01b0316300361128c57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b9080601f830112156105ee578135906112b682610f22565b926112c460405194856106e3565b828452602092838086019160051b830101928084116105ee57848301915b8483106112f25750505050505090565b82356001600160401b0381116105ee57869161131384848094890101611051565b8152019201916112e2565b60806003198201126105ee576001600160401b03916004358381116105ee578261134a91600401610f39565b926024358181116105ee578361136291600401610fa1565b926044359182116105ee576113799160040161129e565b9060643590565b346105ee5761138e3661131e565b61139c818385879697613930565b926113a6846141a2565b506013546113c4906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615611579576000966115ab575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b825281806114268c8a8a8d60048601616b77565b03915afa9182156115795760009261157e575b505061144f876000526014602052604060002090565b55601354611465906001600160a01b03166113b8565b90813b156105ee5760008094611491878b51998a97889687956308f2a0bb60e41b875260048701616bbd565b03925af1908115611579576114b5926114b092611560575b5042613b2e565b615113565b65ffffffffffff81161561154f57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289261153e84611520610a3796600161150688600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b8061156d61157392610643565b806108ec565b386114a9565b6143a8565b61159d9250803d106115a4575b61159581836106e3565b810190614399565b3880611439565b503d61158b565b6115c3919650823d84116115a45761159581836106e3565b94386113ef565b346105ee5760003660031901126105ee576020600254604051908152f35b346105ee5760403660031901126105ee576004356001600160401b0381116105ee5761165c61163c7f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401611051565b60243561164881610ac3565b6040519283926040845260408401906107aa565b6001600160a01b0390911660208301520390a1005b346105ee5760803660031901126105ee5760043561168e81610ac3565b6044356064356024356001600160401b0382116105ee57610a37936111da6116db7ff80f5ce91f7d79d29fd2bd635816739c0fae47505f5a30a820e49ace80884165943690600401611051565b6116ef6001600160a01b0384161515615fe5565b6116fa84151561642c565b611708602854851115616478565b611713428711615986565b33600090815260208190526040902061172b90611133565b6117bd6024549661174361173e89613e12565b602455565b61174b615a1d565b61175d61116d60025460255490614a1a565b90611766610ef5565b6001600160a01b0388168152926020840189905260408401523360608401526080830152600060a083015260c0820152600060e0820152826101008201526117b8886000526021602052604060002090565b6164c4565b604051938493338886616516565b346105ee576020806003193601126105ee576004356117f4816000526021602052604060002090565b600581019261181361180e61180a865460ff1690565b1590565b615e15565b61182260028301544210615e61565b33600090815260208190526040902061183e905b541515615ea0565b60009060048301918254905b8181106118fe5750506040513360601b6001600160601b03191691810191825261188d9290916118889083906014015b03601f1981018452836106e3565b615f32565b6006600782019161189e8354613e12565b92839055604080518581523360208201529081018490527fc5fb6601ac4858dba31868a09f1646a3bfe4638f325353bb142719b81e3645a190606090a1015411156118e557005b6118f961002192600160ff19825416179055565b61654d565b8061191661190f61192c9387614440565b50546105f3565b158015611931575b61192790615ef5565b613e12565b61184a565b506119276119486119428388614440565b50610704565b805133916001600160a01b0391611966919081018901908901615ee0565b161415905061191e565b346105ee5760603660031901126105ee5760043561198d81610ac3565b60243561199981610ac3565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106119e3575b6119d79350614809565b60405160018152602090f35b8284106119ff576119fa836119d79503338361491b565b6119cd565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b611a323661131e565b611a40818385879597613930565b92611a4a846141f4565b50611a75611a6285600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611b19575b94611a9b9291610a379686616c0b565b6013543091166001600160a01b0316141580611af8575b611ae9575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081016111da565b611af36000600d55565b611ab7565b50611b1461180a600d546001600160801b0381169060801c1490565b611ab2565b9290939160005b8451811015611b7457611b559030611b4b6113b8611b3e848a613e37565b516001600160a01b031690565b14611b5a57613e12565b611b20565b611927611b67828a613e37565b5160208151910120615853565b5091939092611a8b565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b346105ee5760003660031901126105ee5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346105ee5760003660031901126105ee57602060405160128152f35b346105ee5760203660031901126105ee576100216004358060005260208052604060002060016005820191611c4a8354916105c160ff841615615e15565b60ff19161790556160e4565b346105ee5760003660031901126105ee57602065ffffffffffff60105416604051908152f35b346105ee5760403660031901126105ee57600435611c9981610ac3565b6001600160a01b0316600090815260096020526040812090611cbc602435614568565b91805482938160058111611d0e575b5090602094611cda92846157f2565b80611cf45750505b6040516001600160d01b039091168152f35b91611d00849293614431565b92815220015460301c611ce2565b94611d1886615195565b8603958611611d6357602095611cda9385875265ffffffffffff80838a8a2001541690851610600014611d515750915b91925094611ccb565b929150611d5d90613b20565b90611d48565b613994565b634e487b7160e01b600052602160045260246000fd5b60081115611d8857565b611d68565b906008821015611d885752565b346105ee5760203660031901126105ee576020611db860043561676f565b611dc56040518092611d8d565bf35b346105ee5760403660031901126105ee57602060ff611e14602435611deb81610ac3565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346105ee57611e2e3661131e565b90611e3d828285879697613930565b611e468161676f565b6008811015611d885760018060ff83161b1615611eb157506000908152600c60205260409020546001600160a01b03163303611e9957610a3793611e8993616a36565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b90611ed5606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60016044820152fd5b346105ee5760003660031901126105ee57610a37604051611efe8161065b565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906107aa565b346105ee5760003660031901126105ee576020602554604051908152f35b346105ee5760203660031901126105ee57600435600052601160205260406000208054610a3760026001840154930154604051938493846040919493926060820195825260208201520152565b346105ee5760003660031901126105ee57610a37604051611fc78161065b565b60018152603160f81b60208201526040519182916020835260208301906107aa565b6024359060ff821682036105ee57565b6064359060ff821682036105ee57565b346105ee5760403660031901126105ee576020612051612027611fe9565b60405161203381610676565b600081526040519161204483610676565b6000835233600435613fc2565b604051908152f35b346105ee5760203660031901126105ee57602060043561207881610ac3565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f840112156105ee578235916001600160401b0383116105ee57602083818601950101116105ee57565b346105ee5760c03660031901126105ee576120de611fe9565b604435906120eb82610ac3565b6001600160401b03906064358281116105ee5761210c903690600401612098565b6084358481116105ee57612124903690600401611051565b9160a4359485116105ee57610a3795612144611e89963690600401611051565b94600435613e50565b346105ee5760203660031901126105ee5761002160043561216d81610ac3565b336145a1565b346105ee5760803660031901126105ee5761218c611fe9565b6001600160401b03906044358281116105ee576121ad903690600401612098565b90916064359384116105ee576121d8612051936121d06020963690600401611051565b93369161101a565b9033600435613fc2565b346105ee5760203660031901126105ee576020612051600435614458565b346105ee5760203660031901126105ee5760043561221d81610ac3565b60018060a01b03166000526009602052602061223d604060002054615145565b63ffffffff60405191168152f35b346105ee5760203660031901126105ee57602061205160043561226d81610ac3565b6001600160a01b031660009081526020819052604090205490565b346105ee5760203660031901126105ee5760043565ffffffffffff8082168092036105ee576122b5614111565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b346105ee5760603660031901126105ee57612312611fe9565b6044356001600160401b0381116105ee5760209161234161233a612051933690600401612098565b369161101a565b6040519161204483610676565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee5761237f903690600401610f39565b906024358181116105ee57612398903690600401610fa1565b916044358281116105ee576123b190369060040161129e565b6064359283116105ee57610a37936123d0611e89943690600401611051565b926139dc565b346105ee576020806003193601126105ee576004356123fe8160005260208052604060002090565b600581019261241461180e61180a865460ff1690565b61242360028301544210615e61565b33600090815260208190526040902061243b90611836565b60009060048301918254905b8181106124ec5750506040513360601b6001600160601b03191691810191825261247b92909161188890839060140161187a565b6006600782019161248c8354613e12565b92839055604080518581523360208201529081018490527f77c69d1b59f862d9677ac552a49c26ba3fe18ccc64ad8da630a5343c306dea6190606090a1015411156124d357005b6124e761002192600160ff19825416179055565b6160e4565b8061191661190f6124fd9387614440565b612447565b346105ee5760203660031901126105ee5760043561251f81610ac3565b60018060a01b031660005260076020526020604060002054604051908152f35b926109db96959260c09592855260018060a01b0316602085015215156040840152606083015260808201528160a082015201906107aa565b346105ee5760203660031901126105ee576004356000526020805260406000206002810154610a37600860018060a01b036003850154169360ff6005820154166006820154906125dd6007840154936125d66040518097819301610d95565b03856106e3565b6040519687968761253f565b90815180825260208080930193019160005b828110612609575050505090565b8351855293810193928101926001016125fb565b346105ee5760003660031901126105ee576126b861265a7f0000000000000000000000000000000000000000000000000000000000000000614e4f565b610a376126867f0000000000000000000000000000000000000000000000000000000000000000614f48565b6126c66040519161269683610676565b60008352604051958695600f60f81b875260e0602088015260e08701906107aa565b9085820360408701526107aa565b90466060850152306080850152600060a085015283820360c08501526125e9565b346105ee5760203660031901126105ee57612703600435614568565b600a5490600082916005841161275b575b61271e9350615720565b60008161273357505060405160008152602090f35b600a612740602093614431565b9152600080516020616cb4833981519152015460301c611ce2565b919261276681615195565b8103908111611d635761271e93600a835265ffffffffffff8083600080516020616cb4833981519152015416908516106000146127a4575091612714565b9291506127b090613b20565b90612714565b346105ee5760803660031901126105ee576004356127d2611fe9565b90604435916127e083610ac3565b6064356001600160401b0381116105ee5761180a612805612892923690600401611051565b6001600160a01b038616600090815260076020526040902080546001810190915561288c9060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a0815261288481610691565b519020614d15565b86615002565b6128ad5790611e8991610a37936128a761388b565b92613f46565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346105ee5760003660031901126105ee57602060405165ffffffffffff43168152f35b346105ee57600080600319360112610ac0576040519080600454612914816105f3565b80855291600191808316908115610a96575060011461293d57610a3785610a2b818703826106e3565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410612980575050508101602001610a2b82610a37610a1b565b80546020858701810191909152909301928101612965565b346105ee5760203660031901126105ee576004356129b581610ac3565b60018060a01b031660005260276020526020604060002054604051908152f35b346105ee5760003660031901126105ee57602060405160648152f35b346105ee5760603660031901126105ee57600435612a0e81610ac3565b6044356001600160401b0381116105ee57612a6591612a336020923690600401611051565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa801561157957610a3791600091612ab6575b506040519081529081906020820190565b612ace915060203d81116115a45761159581836106e3565b38612aa5565b346105ee5760203660031901126105ee57600435612af181610ac3565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612b1d90615354565b16604051908152f35b346105ee5760003660031901126105ee576020602454604051908152f35b346105ee5760003660031901126105ee5760206001600160d01b03612b1d6152c0565b346105ee5760203660031901126105ee57600435612b8481610ac3565b612b8c614111565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b346105ee5760403660031901126105ee57612c05600435612bfb81610ac3565b6024359033614809565b602060405160018152f35b346105ee5760203660031901126105ee57602060405160018152f35b346105ee5760203660031901126105ee57600435612c5481600052601f602052604060002090565b6006810190612c6a61180e61180a845460ff1690565b612c7960028201544210615e61565b336000908152602081905260409020612c9190611836565b6040513360601b6001600160601b0319166020820152612ccb90612cc281603481015b03601f1981018352826106e3565b60058301615f32565b60076008820191612cdc8354613e12565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a101541115612d2357005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f906109a690611e89565b346105ee5760203660031901126105ee57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b346105ee5760203660031901126105ee576020612051600435612db281610ac3565b616620565b346105ee5760003660031901126105ee576020600f54604051908152f35b346105ee5760a03660031901126105ee57612df1600435610ac3565b612dfc602435610ac3565b6001600160401b036044358181116105ee57612e1c903690600401610fa1565b506064358181116105ee57612e35903690600401610fa1565b506084359081116105ee57612e4e903690600401611051565b50610a37612e5a614185565b6040516001600160e01b031990911681529081906020820190565b346105ee5760203660031901126105ee5760206120516004356139aa565b346105ee5760203660031901126105ee57600435612eb281151561642c565b3360005260006020528060406000205410612f23576109a681612ef77fbd67ec2db294b72ed21ac12cf37aa44775b63ea7ab9345652a1d28be069c4100933033614809565b612f0b612f0682602854613b2e565b602855565b60408051338152602081019290925290918291820190565b60405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606490fd5b60603660031901126105ee57600435612f7781610ac3565b604435906001600160401b0382116105ee5760008091612f9e610021943690600401612098565b90612fa7614111565b81604051928392833781018481520391602435905af1612fc56140e1565b9061496e565b346105ee5760c03660031901126105ee57600435612fe881610ac3565b60443590602435612ff7611ff9565b83421161307f576130736100219461307a926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261305b826106ac565b61306e60a4359360843593519020614d15565b614be2565b9182614997565b6145a1565b604051632341d78760e11b815260048101859052602490fd5b346105ee5760206120516130ab3661131e565b92919091613930565b346105ee5760803660031901126105ee576001600160401b036004358181116105ee576130e5903690600401611051565b6024359182116105ee577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111da613124610a37943690600401610fa1565b926131d760443594613138835115156162e0565b6131448151151561631e565b61314f428711615986565b6022549561316461315f88613e12565b602255565b61316c615a1d565b61317e61116d60025460255490614a1a565b91613187610ef5565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526131d286600052601f602052604060002090565b616360565b604051918291338684616404565b346105ee5760003660031901126105ee576013546040516001600160a01b039091168152602090f35b346105ee5760003660031901126105ee57610a3760405161322e8161065b565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906107aa565b346105ee5760403660031901126105ee5760206132c660043561328e81610ac3565b6024359061329b82610ac3565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b346105ee5760003660031901126105ee5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff821682036105ee57565b346105ee5760203660031901126105ee5761333661330a565b61333e614111565b63ffffffff8082169182156133ab577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346105ee5760403660031901126105ee57612a6560206004356133e681610ac3565b60006040516133f481610676565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b346105ee5760003660031901126105ee576020602854604051908152f35b346105ee5760203660031901126105ee57600435613460614111565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b346105ee5760403660031901126105ee576004356134b681610ac3565b6024359063ffffffff821682036105ee57610a3791613506916134d7614955565b506134e0614955565b506001600160a01b03166000908152600960205260409020613500614955565b50614440565b50604051906135148261065b565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b346105ee5760a03660031901126105ee5761356c600435610ac3565b613577602435610ac3565b6084356001600160401b0381116105ee57613596903690600401611051565b506013546001600160a01b0316300361128c5760405163f23a6e6160e01b8152602090f35b979499989592613600906135f261360e946135e46101009b98958d6101209081815201906107aa565b8c810360208e0152906107aa565b908a820360408c01526107aa565b9088820360608a01526107aa565b97608087015260a086015260c085015260e08401521515910152565b346105ee57600080600319360112610ac05760405190818160155461364e816105f3565b8084529360019180831690811561373657506001146136d9575b5050613676925003826106e3565b6040519061368e8261368781610be3565b03836106e3565b610a376040516136a8816136a181610c87565b03826106e3565b6040516136b8816136a181610d0e565b601954601a54601c5491601d549360ff601e541695604051998a998a6135bb565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b84831061371b575061367693505081016020013880613668565b81935090816020925483858901015201910190918492613701565b9150506020925061367694915060ff191682840152151560051b8201013880613668565b346105ee5760203660031901126105ee57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa91821561157957610a37926064926137de926000926137f0575b506137d890614458565b90614a1a565b04604051918291829190602083019252565b6137d891925061380d9060203d81116115a45761159581836106e3565b91906137ce565b346105ee5760003660031901126105ee576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346105ee5760003660031901126105ee576020602354604051908152f35b6013546001600160a01b0316300361128c57565b6040519061389882610676565b60008252565b90815180825260208080930193019160005b8281106138be575050505090565b83516001600160a01b0316855293810193928101926001016138b0565b90815180825260208092019182818360051b85019501936000915b8483106139065750505050505090565b909192939495848061392083856001950387528a516107aa565b98019301930191949392906138f6565b929061397c9261398e9260405194859261396c613959602086019960808b5260a087019061389e565b601f1996878783030160408801526125e9565b90858583030160608601526138db565b906080830152039081018352826106e3565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611d63571690565b91939290936139eb8233614246565b15613ae857600f549485613a07575b6109db9495503393613c53565b65ffffffffffff43811660001901818111611d6357613a58916020916000604051613a3181610676565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561157957600091613aca575b50868110613aa357506139fa565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613ae2915060203d81116115a45761159581836106e3565b38613a95565b60405163d9b3955760e01b8152336004820152602490fd5b604090613b1c6000939594606083019683526020830190611d8d565b0152565b9060018201809211611d6357565b91908201809211611d6357565b90613b4582610f22565b613b5260405191826106e3565b8281528092613b63601f1991610f22565b019060005b828110613b7457505050565b806060602080938501015201613b68565b9592613bb890613bc6939b9a9899969592885260209b60018060a01b03168c8901526101208060408a015288019061389e565b9086820360608801526125e9565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b838210613c255750505050506109db96975090613c0c9184820360a08601526138db565b9360c083015260e08201526101008184039101526107aa565b90919293958380613c448f93600194601f199082030186528a516107aa565b98019201920190939291613be8565b919493909294613c6b86516020880120828686613930565b958351855190818114801590613e07575b8015613dff575b613dd657505065ffffffffffff9485613cb8613ca98a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613daf577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e095613daa9363ffffffff613cfa60105493808516904316613b2e565b9260301c16613d88613d168c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a16178155613d5f613d3b86615113565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b613d6883615145565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b613d9c613d958951613b3b565b9184613b2e565b936040519889988d8a613b85565b0390a1565b87613db98161676f565b6040516331b75e4d60e01b8152918291611a259160048401613b00565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b508015613c83565b508351811415613c7c565b6000198114611d635760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015613e4b5760209160051b010190565b613e21565b93909291969561180a613f0a91613f048a613e868160018060a01b03166000526007602052604060002080549060018201905590565b613e9136888a61101a565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152612884816106c7565b8a615002565b613f25576109db959691613f1f91369161101a565b92613fc2565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916109db939160405193613f5985610676565b60008552613fc2565b93909260ff613f8e936109db97958752166020860152604085015260a0606085015260a08401906107aa565b9160808184039101526107aa565b909260ff6080936109db96958452166020830152604082015281606082015201906107aa565b929190613fce8461676f565b6008811015611d88576002600160ff83161b16156140b3575083600052600c60205261402a61402261401c614011604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b836143b4565b8383876142ae565b9480511560001461407757506140717fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613f9c565b0390a290565b614071907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886613f62565b6040516331b75e4d60e01b8152600481018690526064916140d8906024830190611d8d565b60026044820152fd5b3d1561410c573d906140f282610fff565b9161410060405193846106e3565b82523d6000602084013e565b606090565b6013546001600160a01b031633810361416d57300361412c57565b61413536610fff565b61414260405191826106e3565b368152602081019036600083376000602036830101525190205b806141656158ae565b0361415c5750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b0316300361128c5763bc197c8160e01b90565b6141ab8161676f565b906008821015611d88576010600160ff84161b16156141c8575090565b6141eb606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60106044820152fd5b6141fd8161676f565b906008821015611d88576030600160ff84161b161561421a575090565b61423d606492604051926331b75e4d60e01b845260048401526024830190611d8d565b60306044820152fd5b908051603481106142a65760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b016142a65761428591602919820190614a2d565b901591821561429357505090565b6001600160a01b03918216911614919050565b505050600190565b6142c5909291926000526011602052604060002090565b91600383016142f06142e983839060018060a01b0316600052602052604060002090565b5460ff1690565b6143785761431660ff9392614323929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b168061433a5750614335828254613b2e565b905590565b600181036143515750600101614335828254613b2e565b60020361436657600201614335828254613b2e565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b908160209103126105ee575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561157957600091614419575090565b6109db915060203d81116115a45761159581836106e3565b600019810191908211611d6357565b8054821015613e4b5760005260206000200190600090565b601254906000198201828111611d6357821115613e4b57600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff9281848216111561455d57506144b790615113565b83908260058111614507575b506144ce9350615789565b806144e157505b6001600160d01b031690565b6144ec601291614431565b9152600080516020616c94833981519152015460301c6144d5565b909261451282615195565b8203918211611d63576144ce94601287528083600080516020616c948339815191520154169085161060001461454b5750915b386144c3565b92915061455790613b20565b90614545565b935050505060301c90565b65ffffffffffff43168082101561458357506109db90615113565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b0319821681179092556107429694169461461e9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580614768575b614648575b5050505050565b816146cd575b50508261465d575b8080614641565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916146aa916146a490916150e0565b90614771565b604080516001600160d01b039384168152919092166020820152a2388080614656565b6001600160a01b031660009081526009602052604090206146ed846150e0565b6001600160d01b0390818061470185615354565b1691169003818111611d635761474561475e917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690615664565b6040805192851683529316602082015291829190820190565b0390a2388061464e565b5083151561463c565b906001600160d01b0390818061478685615354565b16911601908111611d63576147a49165ffffffffffff431690615664565b9091565b6001600160d01b039081806147bb61530a565b16911601908111611d63576147a49065ffffffffffff43166155ad565b6001600160d01b039081806147eb61530a565b1691169003908111611d63576147a49065ffffffffffff43166155ad565b6001600160a01b038082169493929190851561490257821680156148e9576001600160a01b038216600090815260208190526040902054958487106148ba578461074296970361486b8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36166ec565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610b8957811615610b7057610b216149529260018060a01b03166000526001602052604060002090565b55565b604051906149628261065b565b60006020838281520152565b909190610742575080511561498557805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b03811660009081526007602052604090208054600181019091558092036149c3575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b9180830460021490151715611d6357565b908160041b9180830460101490151715611d6357565b81810292918115918404141715611d6357565b9190825182118015614ab6575b614a8d57614a4781613b20565b821180614a98575b614a5a9015156149ee565b60280180602811611d6357818303838111611d635703614a8d57614a7d92614abf565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b14614a4f565b50818111614a3a565b929092614acb84613b20565b831180614b52575b614ade9015156149ee565b936000948101809111611d63579192905b818310614aff5750505060019190565b9092919360ff614b20614b1b6020888601015160ff60f81b1690565b614b70565b1690600f8211614b465790614b37614b3e92614a04565b0194613e12565b919290614aef565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614ad3565b60f81c602f811180614bd8575b15614b8c57602f190160ff1690565b6060811180614bce575b15614ba5576056190160ff1690565b6040811180614bc4575b15614bbe576036190160ff1690565b5060ff90565b5060478110614baf565b5060678110614b96565b50603a8110614b7d565b916109db9391614bf193614bfa565b90929192614c88565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411614c7257926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156115795780516001600160a01b03811615614c6957918190565b50809160019190565b50505060009160039190565b60041115611d8857565b614c9181614c7e565b80614c9a575050565b614ca381614c7e565b60018103614cbd5760405163f645eedf60e01b8152600490fd5b614cc681614c7e565b60028103614ce75760405163fce698f760e01b815260048101839052602490fd5b80614cf3600392614c7e565b14614cfb5750565b6040516335e2f38360e21b81526004810191909152602490fd5b604290614d20614d3b565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480614e26575b15614d96577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261398e81610691565b507f00000000000000000000000000000000000000000000000000000000000000004614614d6d565b60ff8114614e8d5760ff811690601f8211614e7b5760405191614e718361065b565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614ea0836105f3565b80835292600190818116908115614f265750600114614ec7575b506109db925003826106e3565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310614f0b57506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614ef2565b9050602092506109db94915060ff191682840152151560051b82010138614eba565b60ff8114614f6a5760ff811690601f8211614e7b5760405191614e718361065b565b50604051600654816000614f7d836105f3565b80835292600190818116908115614f265750600114614fa357506109db925003826106e3565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310614fe757506109db935050810160200138614eba565b81935090816020925483858901015201910190918492614fce565b9091813b61502a5761501491926150a4565b5061501e81614c7e565b15918261429357505090565b600091829160405161506081612cb46020820194630b135d3f60e11b998a875260248401526040604484015260648301906107aa565b51915afa9061506d6140e1565b82615096575b8261507d57505090565b61509291925060208082518301019101614399565b1490565b915060208251101591615073565b81519190604183036150d5576150ce92506020820151906060604084015193015160001a90614bfa565b9192909190565b505060009160029190565b6001600160d01b03908181116150f4571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111615126571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff90818111615156571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b811561517f570490565b634e487b7160e01b600052601260045260246000fd5b60018111156109db57600181600160801b8110156152ae575b61525661524c61524261523861522e61522461526297600488600160401b61525d9a10156152a1575b640100000000811015615294575b62010000811015615287575b61010081101561527b575b601081101561526f575b1015615267575b60030260011c61521d818b615175565b0160011c90565b61521d818a615175565b61521d8189615175565b61521d8188615175565b61521d8187615175565b61521d8186615175565b8093615175565b821190565b900390565b60011b61520d565b811c9160021b91615206565b60081c91811b916151fc565b60101c9160081b916151f1565b60201c9160101b916151e5565b60401c9160201b916151d7565b50600160401b9050608082901c6151ae565b601254600090806152d2575050600090565b80600019810111611d635760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a546000908061531c575050600090565b80600019810111611d6357600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b80546000918161536657505050600090565b600019928284810111611d635760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b821015610656576001820180601255821015613e4b57610742916012600052600080516020616c9483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b821015610656576001820180600a55821015613e4b5761074291600a600052600080516020616cb483398151915201906153f865ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b8110156106565761549791600182018155614440565b6154bf578151815465ffffffffffff191665ffffffffffff91909116178155610742916153f8565b615382565b6012549192918015615583576154dc6154f491614431565b6012600052600080516020616c948339815191520190565b9081549165ffffffffffff90818416918316808311615571578692036155395761553292509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505061556c9061555861554a610f15565b65ffffffffffff9092168252565b6001600160d01b0385166020820152615398565b615532565b604051632520601d60e01b8152600490fd5b506155a79061559361554a610f15565b6001600160d01b0384166020820152615398565b60009190565b600a549192918015615640576155c56155dd91614431565b600a600052600080516020616cb48339815191520190565b9081549165ffffffffffff908184169183168083116155715786920361561b5761553292509065ffffffffffff82549181199060301b169116179055565b505061556c9061562c61554a610f15565b6001600160d01b038516602082015261541a565b506155a79061565061554a610f15565b6001600160d01b038416602082015261541a565b805492939280156156fb5761567b61568891614431565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411615571578793036156c7575061553292509065ffffffffffff82549181199060301b169116179055565b91505061556c916156e76156d9610f15565b65ffffffffffff9093168352565b6001600160d01b038616602083015261547a565b50906155a79161570c6156d9610f15565b6001600160d01b038516602083015261547a565b905b82811061572e57505090565b90918082169080831860011c8201809211611d6357600a60005265ffffffffffff8083600080516020616cb4833981519152015416908516106000146157775750915b90615722565b92915061578390613b20565b90615771565b905b82811061579757505090565b90918082169080831860011c8201809211611d6357601260005265ffffffffffff8083600080516020616c94833981519152015416908516106000146157e05750915b9061578b565b9291506157ec90613b20565b906157da565b91905b8382106158025750505090565b9091928083169080841860011c8201809211611d635760008581526020902082015465ffffffffffff90811690841610156158415750925b91906157f5565b93925061584d90613b20565b9161583a565b600d548060801c9160018301926001600160801b038093168385161461589b57600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c83146158f35782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b1561590d57565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561595257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b1561598d57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b156159cc57565b60405162461bcd60e51b815260206004820152602360248201527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b604051615a2981610676565b6000815290565b818110615a3b575050565b60008155600101615a30565b91818110615a5457505050565b6107429260005260206000209182019101615a30565b8151916001600160401b03831161065657600160401b831161065657615a9583835481855584615a47565b602080910191600052806000209060005b848110615ab4575050505050565b83516001600160a01b03168382015592810192600101615aa6565b8151916001600160401b03831161065657600160401b831161065657615afa83835481855584615a47565b602080910191600052806000209060005b848110615b19575050505050565b83518382015592810192600101615b0b565b9190601f8111615b3a57505050565b610742926000526020600020906020601f840160051c83019310615b66575b601f0160051c0190615a30565b9091508190615b59565b91909182516001600160401b03811161065657615b9781615b9184546105f3565b84615b2b565b602080601f8311600114615bd3575081929394600092615bc8575b50508160011b916000199060031b1c1916179055565b015190503880615bb2565b90601f19831695615be985600052602060002090565b926000905b888210615c2657505083600195969710615c0d575b505050811b019055565b015160001960f88460031b161c19169055388080615c03565b80600185968294968601518155019501930190615bee565b815191600160401b8311610656578154838355808410615c9c575b50615c6e602080920192600052602060002090565b6000925b848410615c80575050505050565b60018382615c9083945186615b70565b01920193019290615c72565b6000838152846020822092830192015b828110615cba575050615c59565b80615cc7600192546105f3565b80615cd4575b5001615cac565b601f908181118414615cec5750508281555b38615ccd565b83615d0e92615d0085600052602060002090565b920160051c82019101615a30565b60008181526020812081835555615ce6565b600861010061074293615d34815185615a6a565b615d45602082015160018601615acf565b604081015160028501556060810151615d85906001600160a01b03165b6003860180546001600160a01b0319166001600160a01b03909216919091179055565b615d96608082015160048601615c3e565b615dbb615da660a0830151151590565b600586019060ff801983541691151516179055565b60c0810151600685015560e0810151600785015501519101615b70565b93906109db9593613f8e93615e0792875260018060a01b0316602087015260a0604087015260a086019061389e565b9084820360608601526125e9565b15615e1c57565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b15615e6857565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b15615ea757565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b908160209103126105ee57516109db81610ac3565b15615efc57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b8054600160401b81101561065657615f4f91600182018155614440565b9190916154bf5761074291615b70565b15615f6657565b60405162461bcd60e51b8152602060048201526015602482015274141c9bdc1bdcd85b081b9bdd08195e1958dd5d1959605a1b6044820152606490fd5b15615faa57565b60405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742071756f72756d60681b6044820152606490fd5b15615fec57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b1561602757565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b6060810191815260209060608282015283548093526080810192600094855282852090855b8181106160c7575050506040818403910152808454928381520193835280832092905b8282106160b0575050505090565b8354855293840193600193840193909101906160a2565b82546001600160a01b03168652948401946001928301920161607f565b906160f88260005260208052604060002090565b61610e616109600583015460ff1690565b615f5f565b616122600782015460068301541115615fa3565b600181810193906000815b616166575b5050613daa7fe8585c604452fcb59bc021fce36eb8241ffc18bd81b50ce6cd5cea81ceeaa58d93946040519384938461605a565b83548110156161ec57806161a261619b6113b86161866161e69589614440565b905460039190911b1c6001600160a01b031690565b1515615fe5565b6161c36161bc6161b2838a614440565b90549060031b1c90565b1515616020565b6119276161d36161868388614440565b6161e06161b2848b614440565b906161f1565b8161612d565b616132565b91906001600160a01b03831680156148e957600254828101809111611d63576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116162775761074292935061666e565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b156162a457565b60405162461bcd60e51b8152602060048201526014602482015273151a5b595b1bd8dac81b9bdd08195e1c1a5c995960621b6044820152606490fd5b156162e757565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561632557565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b90610100600891616372815185615b70565b616383602082015160018601615acf565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556163ce60a082015160058601615c3e565b6163f36163de60c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526109db929101906107aa565b1561643357565b60405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606490fd5b1561647f57565b60405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742074726561737572792062616c616e63650000006044820152606490fd5b815181546001600160a01b0319166001600160a01b03909116178155610742916008906101009060208101516001850155604081015160028501556060810151615d85906001600160a01b0316615d62565b9081526001600160a01b03918216602082015291166040820152606081019190915260a0608082018190526109db929101906107aa565b80600052602160205260406000209061656c60ff600584015416615f5f565b616580600783015460068401541115615fa3565b60018201908154926028549361659885821115616478565b8403938411611d63576165f6613daa916165d27f0bb768aa97fa4e8a8f73bfa7bc210f1a29f29c765d44f0c29acc04a549e32e4396602855565b805485546165e9916001600160a01b031630614809565b546001600160a01b031690565b9254604080519384526001600160a01b039094166020840152928201929092529081906060820190565b6001600160a01b031660009081526020819052604090205480158015616664575b61665e576166556109db9160285490614a1a565b60025490615175565b50600090565b5060285415616641565b906107429161668461667f836150e0565b6147a8565b50506001600160a01b039081169081156166d4575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116614620565b6166e56166e0846150e0565b6147d8565b5050616699565b61074292916001600160a01b03918216919081908315616744575b16918215616731575b60005260086020528060406000205416916000526040600020541690614620565b61673d6166e0856150e0565b5050616710565b61675061667f866150e0565b5050616707565b908160209103126105ee575180151581036105ee5790565b61677881616881565b9061678282611d7e565b6005820361687d5761679f91506000526014602052604060002090565b546013546167b5906001600160a01b03166113b8565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa90811561157957600091616860575b50156167f357505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa91821561157957600092616833575b50501561682e57600790565b600290565b6168529250803d10616859575b61684a81836106e3565b810190616757565b3880616822565b503d616840565b6168779150843d86116168595761684a81836106e3565b386167e5565b5090565b61689581600052600c602052604060002090565b5460ff8160f01c1661698d5760f81c616987576168c2614011613ca983600052600c602052604060002090565b801561696e5765ffffffffffff431680911015616967576168e2826139aa565b106168ed5750600190565b6168f961180a82616994565b8015616942575b1561690b5750600390565b614011600161692761693493600052600c602052604060002090565b015465ffffffffffff1690565b61693d57600490565b600590565b5061696261180a8260005260116020526040600020600181015490541090565b616900565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa91821561157957616a3192606492616a1f926000926137f057506137d890614458565b04916002600182015491015490613b2e565b101590565b90616a42939291613930565b616a4b8161676f565b6008811015611d8857603b600160ff83161b1615616b4a5750616a90616a7b82600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1616ad0816000526014602052604060002090565b5480616ada575090565b601354616aef906001600160a01b03166113b8565b803b156105ee5760405163c4d252f560e01b815260048101929092526000908290602490829084905af1801561157957616b37575b5060008181526014602052604081205590565b8061156d616b4492610643565b38616b24565b90616b6e606492604051926331b75e4d60e01b845260048401526024830190611d8d565b603b6044820152fd5b949392616ba3608093616b95616bb19460a08a5260a08a019061389e565b9088820360208a01526125e9565b9086820360408801526138db565b93600060608201520152565b9192616bec60a094616bde616bfa949998979960c0875260c087019061389e565b9085820360208701526125e9565b9083820360408501526138db565b946000606083015260808201520152565b9290939160018060a01b036013541690813b156105ee57600093616c5a6040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601616b77565b039134905af19081156115795760009261495292616c84575b506000526014602052604060002090565b616c8d90610643565b38616c7356febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212209a5de699f7aefb288e8394e1a1967891a7fa659845a380ec582ae5c3dad15a8264736f6c63430008140033", + "bytecode": "0x608060405234620011075762003e8380380390816200001e8162001168565b918239604081838101031262001107578051906001600160401b03821162001107576101809283838301828401031262001107576040519384016001600160401b0381118582101762000b7b57604052818301516001600160401b038111620011075762000094908284019085850101620011b3565b8452818301602001516001600160401b0381116200110757620000bf908284019085850101620011b3565b6020850152818301604001516001600160401b0381116200110757620000ed908284019085850101620011b3565b6040850152818301606001516001600160401b03811162001107576200011b908284019085850101620011b3565b60608501528183016080818101519086015260a0808201519086015260c001516001600160401b038111620011075783830101818301601f8201121562001107578051620001736200016d826200120a565b62001168565b9160208084848152019260051b820101918486018311620011075760208201905b83821062001134575050505060c085015281830160e08181015190860152610100808201519086015261012001516001600160401b0381116200110757818301601f8286860101011215620011075780848401015190620001f96200016d836200120a565b91602083828152019184860160208360051b838a8a01010101116200110757916020838888010101925b60208360051b828a8a0101010184106200110c575050505061012085015281830161014001516001600160401b03811162001107576200026b90828401908585010162001222565b6101408501528183016101600151926001600160401b03841162001107576020936200029d9284019184010162001222565b610160840152015181516020830151815191939092916001600160401b03811162000b7b57620002cf6003546200127f565b601f8111620010b4575b506020601f82116001146200104457819293949560009262001038575b50508160011b916000199060031b1c1916176003555b82516001600160401b03811162000b7b576200032a6004546200127f565b601f811162000fe5575b506020601f821160011462000f76578192939460009262000f6a575b50508160011b916000199060031b1c1916176004555b6001600555805191602082015160408301516060840151608085015160a08601519060c08701519260e088015194604051968761014081011060018060401b036101408a01111762000b7b5761014088016040528a8852602088015260408701526060860152608085015260a084015260c083015260e0820152426101008201526001610120820152835160018060401b03811162000b7b576200040c6006546200127f565b601f811162000f17575b506020601f821160011462000ea757819293949560009262000e9b575b50508160011b916000199060031b1c1916176006555b602081015180519093906001600160401b03811162000b7b576200046f6007546200127f565b601f811162000e48575b506020601f821160011462000dd857819293949560009262000dcc575b50508160011b916000199060031b1c1916176007555b604082015180519093906001600160401b03811162000b7b57620004d26008546200127f565b601f811162000d79575b506020601f821160011462000d0957819293949560009262000cfd575b50508160011b916000199060031b1c1916176008555b606083015180519093906001600160401b03811162000b7b57620005356009546200127f565b601f811162000caa575b506020601f821160011462000c3a57819293949560009262000c2e575b50508160011b916000199060031b1c1916176009555b6080810151600a5560a0810151600b5560c081015180519068010000000000000000821162000b7b57600c5482600c5580831062000b91575b50600c60009081527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c792916020015b82821062000a495786866101208760e0810151600d55610100810151600e550151151560ff8019600f5416911617600f5561010082015160105560135560005b61016082015190815181101562000660576200063b816200065a93620012e5565b5160005260186020526040600020600160ff19825416179055620012d5565b6200061a565b8261012081015151610140820151510362000a04576101208101515115620009bf5760005b6101208201518051821015620007f1576001600160a01b03908190620006ad908490620012e5565b511615620007bd57620006c682610140850151620012e5565b51156200078a57620006de82610120850151620012e5565b511690620006f281610140850151620012e5565b51918015620007715760025483810181116200075b577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60208562000755966000940160025584845283825260408420818154019055604051908152a3620012d5565b62000685565b634e487b7160e01b600052601160045260246000fd5b60405163ec442f0560e01b815260006004820152602490fd5b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b8261012081015161014082015190604051916040830160408452825180915260206060850193019060005b8181106200099f57867ff9e7aa11bcdcbb8ac33b5dba92fca799ef091e54c29270822065501d8edea1a587806200085c8989838203602085015262001310565b0390a1805160208201516040830151926060810151608082015190620008e160a084015191620008d260c086015198620008c361016060e089015198015198620008b46040519b6101408d526101408d019062001346565b908b820360208d015262001346565b9089820360408b015262001346565b90878203606089015262001346565b91608086015260a085015283810360c0850152845180825260208201916020808360051b8301019701926000915b8383106200096f577f11b248463a1620b36a975da8f250009f56fb5dd0e9d5027a90a834d0ee84d6f688806200095c8c8b8b60e08501523061010085015283820361012085015262001310565b0390a1604051612b1590816200136e8239f35b90919293976020806200098f600193601f198682030187528c5162001346565b9a0193019301919392906200090f565b82516001600160a01b03168552602094850194909201916001016200081c565b60405162461bcd60e51b815260206004820152601360248201527f4e6f20696e697469616c20706172746e657273000000000000000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606490fd5b80518051906001600160401b03821162000b7b5762000a6986546200127f565b601f811162000b39575b50602090601f831160011462000ac457928260019493602093869560009262000ab8575b5050600019600383901b1c191690841b1787555b01940191019092620005da565b01519050388062000a97565b908660005260206000209160005b601f198516811062000b20575083602093600196938796938794601f1981161062000b06575b505050811b01875562000aab565b015160001960f88460031b161c1916905538808062000af8565b9192602060018192868501518155019401920162000ad2565b62000b6990876000526020600020601f850160051c8101916020861062000b70575b601f0160051c0190620012bc565b3862000a73565b909150819062000b5b565b634e487b7160e01b600052604160045260246000fd5b600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7908382015b818301811062000bce575050620005ab565b8062000bdd600192546200127f565b8062000bec575b500162000bbc565b601f8111831462000c045750600081555b3862000be4565b60009082825262000c24601f60208420920160051c8201858301620012bc565b8183555562000bfd565b0151905038806200055c565b600960005260206000209060005b601f198416811062000c91575060019394959683601f1981161062000c77575b505050811b0160095562000572565b015160001960f88460031b161c1916905538808062000c68565b9091602060018192858b01518155019301910162000c48565b600960005262000cf6907f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b386200053f565b015190503880620004f9565b600860005260206000209060005b601f198416811062000d60575060019394959683601f1981161062000d46575b505050811b016008556200050f565b015160001960f88460031b161c1916905538808062000d37565b9091602060018192858b01518155019301910162000d17565b600860005262000dc5907ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620004dc565b01519050388062000496565b600760005260206000209060005b601f198416811062000e2f575060019394959683601f1981161062000e15575b505050811b01600755620004ac565b015160001960f88460031b161c1916905538808062000e06565b9091602060018192858b01518155019301910162000de6565b600760005262000e94907fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000479565b01519050388062000433565b600660005260206000209060005b601f198416811062000efe575060019394959683601f1981161062000ee4575b505050811b0160065562000449565b015160001960f88460031b161c1916905538808062000ed5565b9091602060018192858b01518155019301910162000eb5565b600660005262000f63907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000416565b01519050388062000350565b600460005260206000209060005b601f198416811062000fcc5750600193949583601f1981161062000fb2575b505050811b0160045562000366565b015160001960f88460031b161c1916905538808062000fa3565b9091602060018192858a01518155019301910162000f84565b600460005262001031907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b3862000334565b015190503880620002f6565b600360005260206000209060005b601f19841681106200109b575060019394959683601f1981161062001081575b505050811b016003556200030c565b015160001960f88460031b161c1916905538808062001072565b9091602060018192858b01518155019301910162001052565b600360005262001100907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c8101916020851062000b7057601f0160051c0190620012bc565b38620002d9565b600080fd5b8351916001600160a01b03831683036200110757602081819482935201940193915062000223565b81516001600160401b03811162001107576020916200115c8392838a8c0191880101620011b3565b81520191019062000194565b6040519190601f01601f191682016001600160401b0381118382101762000b7b57604052565b60005b838110620011a25750506000910152565b818101518382015260200162001191565b81601f82011215620011075780516001600160401b03811162000b7b57620011e5601f8201601f191660200162001168565b928184526020828401011162001107576200120791602080850191016200118e565b90565b6001600160401b03811162000b7b5760051b60200190565b9080601f830112156200110757815190620012416200016d836200120a565b9182938184526020808095019260051b82010192831162001107578301905b8282106200126f575050505090565b8151815290830190830162001260565b90600182811c92168015620012b1575b60208310146200129b57565b634e487b7160e01b600052602260045260246000fd5b91607f16916200128f565b818110620012c8575050565b60008155600101620012bc565b60001981146200075b5760010190565b8051821015620012fa5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b90815180825260208080930193019160005b82811062001331575050505090565b83518552938101939281019260010162001322565b9060209162001361815180928185528580860191016200118e565b601f01601f191601019056fe60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea26469706673582212203d9c2e9bde7fe9a6fce04efdc03dfd744b785d973d2ed5fa6b725a17cfbf8e6164736f6c63430008140033", + "deployedBytecode": "0x60808060405260048036101561001457600080fd5b60003560e01c918263013cf08b14611dda57508163044bc2bd14611cab578163057b207414611c9057816306fdde0314611bc2578163095ea7b314611b235781630c0512e914611b055781630d61b519146118ff57816318160ddd146118e1578163204c5d1f1461164e57816322dbefbb14610b3c57816323b872dd146115565781632ee09598146114bc578163313ce567146114a057816335324eee146113385781633b60288a146113095781634114509b146111ef578163456d10c1146111095781634b145793146107455781634de184f6146110e65781634fa76ec9146110eb5781635221c1f0146110e6578163548d496f146110b75781635cf0e8a4146110995781636cbadbfa1461109957816370a082311461105f5781637ce288ea14610f6b5781637e5a9b4714610f3c578163893d692a14610e205781638c7b04c914610e0257816395d89b4114610d175781639a49bdde14610cf2578163a9059cbb14610cc1578163af89d2c414610c92578163b00e073014610b6e578163b0b6cc1a14610b3c578163b359451014610774578163b3fe8bcb14610745578163c51cab3a146106d5578163c9d27afe1461054e578163ccd7a49014610388578163dd62ed3e14610337578163e49a62e914610310578163eced3dfb146102f4575063f2c26a471461020557600080fd5b346102ef5760003660031901126102ef576102a46040516102308161022981611edb565b03826121dd565b6040516102408161022981611f7f565b604051906102588261025181612006565b03836121dd565b60405191610270836102698161208d565b03846121dd565b600a5492600b546102ce600d54926102c0600e54956102b260ff600f5416986040519c8d9c8d610120908181520190612222565b8c810360208e015290612222565b908a820360408c0152612222565b9088820360608a0152612222565b94608087015260a086015260c085015260e084015215156101008301520390f35b600080fd5b346102ef5760003660031901126102ef57602090604051908152f35b346102ef5760203660031901126102ef5761032d6020913561278c565b6040519015158152f35b346102ef5760403660031901126102ef576103506122b8565b6103586122ce565b9060018060a01b038091166000526001602052604060002091166000526020526020604060002054604051908152f35b346102ef576103963661234c565b9061039f6125f5565b80600052602092601784526040600020906103bc825415156126c5565b8082015442101561051a576103d860ff60038401541615612711565b60068201903360005281865260ff604060002054166104e5573360005260008652604060002054156104ad57509361048e917f78b8e65c466df05ea5ddf0593b44648eca1f35c039f180e31257a6f1bdd005dc95336000526000835260406000205492526040600020600160ff198254161790558460001461049857600101610462828254612449565b90555b604080519384523360208501529315159383019390935260608201929092529081906080820190565b0390a16001600555005b6002016104a6828254612449565b9055610465565b60405162461bcd60e51b815290810186905260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b60405162461bcd60e51b8152908101869052600e60248201526d105b1c9958591e481cda59db995960921b6044820152606490fd5b60405162461bcd60e51b8152908101859052600d60248201526c14da59db9a5b99c8195b991959609a1b6044820152606490fd5b346102ef5761055c3661234c565b906105656125f5565b80600052602092601684526040600020906105828383541461255d565b60058201544210156106a25761059e60ff8284015416156125a9565b60088201903360005281865260ff6040600020541661066e5733600052600086526040600020541561063657509361048e917f78975aaf742630489badd22949b88ac50eaaea576339ee05440b671a33bfb6a995336000526000835260406000205492526040600020600160ff198254161790558460001461062857600201610462828254612449565b6003016104a6828254612449565b60405162461bcd60e51b815290810186905260116024820152704e6f20746f6b656e7320746f20766f746560781b6044820152606490fd5b60405162461bcd60e51b8152908101869052600d60248201526c105b1c9958591e481d9bdd1959609a1b6044820152606490fd5b60405162461bcd60e51b8152908101859052600c60248201526b159bdd1a5b99c8195b99195960a21b6044820152606490fd5b346102ef5760203660031901126102ef578060c091356000526017602052604060002090815491600181015491600282015460ff6003840154169183015492600560018060a01b0391015416936040519586526020860152604085015215156060840152608083015260a0820152f35b346102ef5760203660031901126102ef57356000526015602052602060ff604060002054166040519015158152f35b346102ef5760803660031901126102ef57803567ffffffffffffffff918282116102ef57366023830112156102ef576107b7602492369084818501359101612263565b908235936044358181116102ef576107d2903690840161229a565b9460643595336000526020966000885260406000205415610aed576107f883151561246c565b806000526018885261081160ff604060002054166124b8565b6000526018875260ff6040600020541615610ab45760115495610833876124fa565b601155866000526016885260406000208781556001938482018851878111610aa057610869816108638454611ea1565b84612509565b8b8c601f8311600114610a2b5750918160079594926108bc94600091610a20575b50600019600383901b1c191690891b1790555b600060028401556000600384015588830160ff19815416905542612449565b600582015560068101336001600160601b0360a01b82541617905501948251948511610a0d5750506108f8836108f28654611ea1565b86612509565b8690601f841160011461098057928061096a959381937f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd639896600094610975575b50501b916000199060031b1c19161790555b6040519182918583523387840152606060408401526060830190612222565b0390a1604051908152f35b015192508a80610939565b90601f9392931983169185600052886000209260005b8a8282106109f9575050917f7585f467599d0f008985f231af99293be388626ac16ca59505c2f8f88969cd63979593918561096a989694106109e0575b505050811b01905561094b565b015160001960f88460031b161c191690558880806109d3565b838501518655948701949384019301610996565b604190634e487b7160e01b600052526000fd5b90508c01518f61088a565b8892918c601f1984168660005283600020936000905b828210610a855750509160079897959391856108bc98969410610a6c575b505050811b01905561089d565b015160001960f88460031b161c191690558f808e610a5f565b9284015185558c9690940193928201928f9290810190610a41565b8460418a634e487b7160e01b600052526000fd5b60405162461bcd60e51b815280850188905260138188015272436861696e206e6f7420617661696c61626c6560681b6044820152606490fd5b60405162461bcd60e51b81528086018990526023818901527f4d75737420686f6c6420746f6b656e7320746f206372656174652070726f706f6044820152621cd85b60ea1b6064820152608490fd5b346102ef5760203660031901126102ef57356000526014602052602060018060a01b0360406000205416604051908152f35b346102ef5760403660031901126102ef5780359060243533600052600060205260406000205415610c42576060602093600583610bcd7f8d5c76b09b9c1f4d0453d21436dcb0b568a50e9c0ae059e4d0ae8c95c71d07f095151561246c565b60125495610bda876124fa565b6012558660005260178852610c1160406000209285845560006001850155600060028501556003840160ff19815416905542612449565b9082015501336001600160601b0360a01b8254161790556040519084825233868301526040820152a1604051908152f35b60405162461bcd60e51b81526020818401526024808201527f4d75737420686f6c6420746f6b656e7320746f20637265617465206f706572616044820152633a34b7b760e11b6064820152608490fd5b346102ef5760203660031901126102ef5735600052601a602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef57610ce7610cdd6122b8565b602435903361236b565b602060405160018152f35b346102ef5760203660031901126102ef57610d0f602091356127ed565b604051908152f35b346102ef5760003660031901126102ef57604051906000908054610d3a81611ea1565b80855291600191808316908115610dd85750600114610d7c575b610d7885610d64818703826121dd565b604051918291602083526020830190612222565b0390f35b600090815292507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610dc0575050508101602001610d6482610d78610d54565b80546020858701810191909152909301928101610da5565b869550610d7896935060209250610d6494915060ff191682840152151560051b8201019293610d54565b346102ef5760003660031901126102ef576020601254604051908152f35b346102ef5760203660031901126102ef57803590816000526017602052604060002090815491610e518315156126c5565b600381019180835492610e6760ff851615612711565b01544210610f0457610e788561275d565b81610efc575b5015610ec1577f64cee5a70d662a7eef5b2a171daa51dc624f3d64a35d0855b385262b893dc5a5604086868660018760ff191617905582519182526020820152a1005b60649060206040519162461bcd60e51b8352820152601460248201527313dc195c985d1a5bdb881b9bdd081c185cdcd95960621b6044820152fd5b905086610e7e565b60649060206040519162461bcd60e51b8352820152601160248201527014da59db9a5b99c81b9bdd08195b991959607a1b6044820152fd5b346102ef5760203660031901126102ef57610f579035612668565b604080519215158352901515602083015290f35b346102ef5760203660031901126102ef57803590610f888261278c565b156110245760135460005b828110610fc7577f57df5a6a467271f04b10f7fe9e66d21dcd8ae7eaf079099d48959f24a53b6910602085604051908152a1005b807f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e83313611017610ff861101f946127ed565b604051918291878a846040919493926060820195825260208201520152565b0390a16124fa565b610f93565b60649060206040519162461bcd60e51b835282015260146024820152734e6f7420616c6c20636861696e7320726561647960601b6044820152fd5b346102ef5760203660031901126102ef576001600160a01b036110806122b8565b1660005260006020526020604060002054604051908152f35b346102ef5760003660031901126102ef576020601354604051908152f35b346102ef5760203660031901126102ef57356000526018602052602060ff604060002054166040519015158152f35b61231f565b346102ef5760003660031901126102ef576020601054604051908152f35b346102ef577fca1838d50ca3156f1ace7cde39a081cc9c9a333af6fca55db71817f8717e1dcb611138366122e4565b508360009493945260166020526111ae6003604060002061115b8682541461255d565b86600052601860205261117560ff604060002054166124b8565b6009810194876000528560205261119460ff6040600020541615612618565b6111a360028301918254612449565b905501918254612449565b9055826000526020526040600020600160ff198254161790556111ea601354604051938493846040919493926060820195825260208201520152565b0390a1005b346102ef576020806003193601126102ef578135913360005260008252604060002054156112bd57826000526015825260ff60406000205416156112835750600082815260148252604080822080546001600160a01b03191690556015835290819020805460ff19169055519182527f4c7c76abe482a2c36ea52f1b999474c69f8b4afeeac5635f8aea2526864ba85391a1005b6064916040519162461bcd60e51b83528201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b6044820152fd5b6084916040519162461bcd60e51b8352820152602160248201527f4d75737420686f6c6420746f6b656e7320746f2072656d6f7665206d6f64756c6044820152606560f81b6064820152fd5b346102ef5760203660031901126102ef57356000526019602052602060ff604060002054166040519015158152f35b346102ef5760403660031901126102ef578035906113546122ce565b33600052602090600082526040600020541561145c576001600160a01b031691821561142b57836000526015825260ff604060002054166113f1577ff14475b19484bf096265507cc0c41cd3bf1994992088806830686e2d727227196040858585826000526014815283600020826001600160601b0360a01b8254161790556015815283600020600160ff198254161790558351928352820152a1005b6064916040519162461bcd60e51b835282015260156024820152744d6f64756c6520616c72656164792065786973747360581b6044820152fd5b6064916040519162461bcd60e51b8352820152600c60248201526b5a65726f206164647265737360a01b6044820152fd5b60405162461bcd60e51b8152808401839052601e60248201527f4d75737420686f6c6420746f6b656e7320746f20616464206d6f64756c6500006044820152606490fd5b346102ef5760003660031901126102ef57602060405160128152f35b346102ef577fe379b3deb66ddfa7962a2bdf35e9a08b5bed672c9da3ecf7cc6174d253c6dfe56114eb366122e4565b508360009493945260176020526111ae6002604060002061150e815415156126c5565b86600052601860205261152860ff604060002054166124b8565b6007810194876000528560205261154760ff6040600020541615612618565b6111a360018301918254612449565b346102ef5760603660031901126102ef5761156f6122b8565b6115776122ce565b6044359160018060a01b0381168060005260016020526040600020336000526020526040600020549460001986106115b6575b5050610ce7935061236b565b84861061162257811561160a5733156115f25750610ce794849160005260016020526040600020336000526020520360406000205584806115aa565b602490600060405191634a1406b160e11b8352820152fd5b60249060006040519163e602df0560e01b8352820152fd5b60408051637dc7a0d960e11b815233928101928352602083018890529082018690529081906060010390fd5b346102ef5760003660031901126102ef576000610120604051611670816121aa565b6060815260606020820152606060408201526060808201528260808201528260a0820152606060c08201528260e0820152826101008201520152604051906116b7826121aa565b6040516116c78161022981611edb565b82526040516116d98161022981611f7f565b60208301526040516116ee8161022981612006565b6040830152604051611703816102298161208d565b6060830152600a546080830152600b5460a0830152600c549067ffffffffffffffff82116118cc57506040519061174060208260051b01836121dd565b80825260208201600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76000915b8383106118a757858560c0820152600d5460e0820152600e5461010082015260ff600f54161515610120820152604051602081526118086117f26117dc6117c685516101406020870152610160860190612222565b6020860151858203601f19016040870152612222565b6040850151848203601f19016060860152612222565b6060840151838203601f19016080850152612222565b608083015160a083015260a083015160c083015260c083015190601f198382030160e0840152815180825260208201916020808360051b8301019401926000915b83831061187a578680876101208b60e081015161010085015261010081015182850152015115156101408301520390f35b9091929394602080611898600193601f198682030187528951612222565b97019301930191939290611849565b6001602081926040516118be816102298189612114565b815201920192019190611771565b604190634e487b7160e01b6000525260246000fd5b346102ef5760003660031901126102ef576020600254604051908152f35b346102ef576020806003193601126102ef57813591826000526016825260406000209161192e8484541461255d565b8183019283549261194260ff8516156125a9565b60058201544210611ace5761195686612668565b81611ac6575b5015611a8c57506007906001948560ff19809616179055019261198e604051611989816102298189612114565b612884565b60405194855260408286015260009380546119a881611ea1565b948560408901528382169182600014611a465750506001146119ed575b7fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d286860387a1005b60009081528281209094505b838510611a3257505050508101606001817fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d284806119c5565b8054868601606001529382019381016119f9565b91509150869550606093507fbadbd87941bb6424ed4aa4719bf01a3319b64480e49f89018c718603239553d2969492501682840152151560051b820101919284806119c5565b60405162461bcd60e51b81529081018390526013602482015272141c9bdc1bdcd85b081b9bdd081c185cdcd959606a1b6044820152606490fd5b90508761195c565b60405162461bcd60e51b8152908101839052601060248201526f159bdd1a5b99c81b9bdd08195b99195960821b6044820152606490fd5b346102ef5760003660031901126102ef576020601154604051908152f35b346102ef5760403660031901126102ef57611b3c6122b8565b602435903315611baa576001600160a01b03169182156115f25750336000526001602052604060002082600052602052806040600020556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b60405163e602df0560e01b8152600081850152602490fd5b346102ef5760003660031901126102ef576040516000600354611be481611ea1565b80845290600190818116908115611c695750600114611c0e575b610d7884610d64818603826121dd565b6003600090815292507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611c51575050508101602001610d6482611bfe565b80546020858701810191909152909301928101611c39565b60ff191660208087019190915292151560051b85019092019250610d649150839050611bfe565b346102ef5760203660031901126102ef57610f57903561275d565b346102ef5760603660031901126102ef57602435813560443567ffffffffffffffff81116102ef57611ce0903690850161229a565b50816000526018602052611cfb60ff604060002054166124b8565b80600052601960205260ff60406000205416611da3577f42e60114b8bc5803b43a4bcd35572ece9a5e2cabb79a838a02d56a4c53e8331392508060005260196020526040600020600160ff198254161790556016602052604060002081815414611d84575b506111ea601354604051938493846040919493926060820195825260208201520152565b6007611989611d9d926102296040518094819301612114565b83611d60565b60405162461bcd60e51b8152602081850152601060248201526f105b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b90346102ef5760203660031901126102ef5780356000526016602052610d786040600020916007835493611e1c86611e158160018501612114565b03876121dd565b60028101549260ff60038301549183015416600583015491611e5c60018060a01b0360068601541694611e556040518098819301612114565b03866121dd565b611e78604051998a998a526101008060208c01528a0190612222565b95604089015260608801521515608087015260a086015260c085015283820360e0850152612222565b90600182811c92168015611ed1575b6020831014611ebb57565b634e487b7160e01b600052602260045260246000fd5b91607f1691611eb0565b60065460009291611eeb82611ea1565b80825291600190818116908115611f625750600114611f0957505050565b9192935060066000527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f916000925b848410611f4a57505060209250010190565b80546020858501810191909152909301928101611f38565b915050602093945060ff929192191683830152151560051b010190565b60075460009291611f8f82611ea1565b80825291600190818116908115611f625750600114611fad57505050565b9192935060076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688916000925b848410611fee57505060209250010190565b80546020858501810191909152909301928101611fdc565b6008546000929161201682611ea1565b80825291600190818116908115611f62575060011461203457505050565b9192935060086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3916000925b84841061207557505060209250010190565b80546020858501810191909152909301928101612063565b6009546000929161209d82611ea1565b80825291600190818116908115611f6257506001146120bb57505050565b9192935060096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af916000925b8484106120fc57505060209250010190565b805460208585018101919091529093019281016120ea565b906000929180549161212583611ea1565b9182825260019384811690816000146121875750600114612147575b50505050565b90919394506000526020928360002092846000945b838610612173575050505001019038808080612141565b80548587018301529401938590820161215c565b9294505050602093945060ff191683830152151560051b01019038808080612141565b610140810190811067ffffffffffffffff8211176121c757604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176121c757604052565b60005b8381106122125750506000910152565b8181015183820152602001612202565b9060209161223b815180928185528580860191016121ff565b601f01601f1916010190565b67ffffffffffffffff81116121c757601f01601f191660200190565b92919261226f82612247565b9161227d60405193846121dd565b8294818452818301116102ef578281602093846000960137010152565b9080601f830112156102ef578160206122b593359101612263565b90565b600435906001600160a01b03821682036102ef57565b602435906001600160a01b03821682036102ef57565b60a06003198201126102ef57600435916024359160443591606435916084359067ffffffffffffffff82116102ef576122b59160040161229a565b346102ef5760203660031901126102ef57602061032d600435600052601860205260ff6040600020541690565b60409060031901126102ef576004359060243580151581036102ef5790565b916001600160a01b03808416928315612430571692831561241757600090838252816020526040822054908382106123e5575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b9190820180921161245657565b634e487b7160e01b600052601160045260246000fd5b1561247357565b60405162461bcd60e51b815260206004820152601960248201527f4475726174696f6e206d75737420626520706f736974697665000000000000006044820152606490fd5b156124bf57565b60405162461bcd60e51b815260206004820152601360248201527210da185a5b881b9bdd081cdd5c1c1bdc9d1959606a1b6044820152606490fd5b60001981146124565760010190565b90601f811161251757505050565b600091825260208220906020601f850160051c83019410612553575b601f0160051c01915b82811061254857505050565b81815560010161253c565b9092508290612533565b1561256457565b60405162461bcd60e51b815260206004820152601760248201527f50726f706f73616c20646f6573206e6f742065786973740000000000000000006044820152606490fd5b156125b057565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b600260055414612606576002600555565b604051633ee5aeb560e01b8152600490fd5b1561261f57565b60405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481cde5b98d95960921b6044820152606490fd5b8181029291811591840414171561245657565b9081600052601660205261268360406000209283541461255d565b60036002830154920154916126988382612449565b60646126a960025460105490612655565b041115928391826126bb575b50509190565b11905038806126b5565b156126cc57565b60405162461bcd60e51b815260206004820152601860248201527f4f7065726174696f6e20646f6573206e6f7420657869737400000000000000006044820152606490fd5b1561271857565b60405162461bcd60e51b815260206004820152601a60248201527f4f7065726174696f6e20616c72656164792065786563757465640000000000006044820152606490fd5b6000526017602052604060002090612777825415156126c5565b60026001830154920154916126988382612449565b6127a5600091808352601660205260408320541461255d565b805b600481106127b6575050600190565b6127d66127c2826127ed565b600052601860205260ff6040600020541690565b156127e9576127e4906124fa565b6127a7565b5090565b80156128575760018114612851576002811461284b576003146128455760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840c6d0c2d2dc40d2dcc8caf606b1b6044820152606490fd5b61a4b190565b50603890565b50608990565b50600190565b91908260409103126102ef5781516001600160a01b03811681036102ef5760209092015190565b80518101906020908082840193604091829103126102ef57818301516001600160e01b0319811692908390036102ef57818101519067ffffffffffffffff82116102ef57019184603f840112156102ef5783830151926128e384612247565b936128f0845195866121dd565b808552858501968482840101116102ef57868461290d93016121ff565b63a9059cbb60e01b8103612942575050916129309183612940945101019061285d565b906001600160a01b03163361236b565b565b909391906340c10f1960e01b81036129d95750908282612965935101019061285d565b6001600160a01b039091169283156129c25791816000936129a97fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94600254612449565b60025585855284835280852082815401905551908152a3565b5163ec442f0560e01b815260006004820152602490fd5b939493632770a7eb60e21b03612aa7579082826129f9935101019061285d565b916001600160a01b03909116908115612a8f576000928284528382528584205495818710612a615781859697857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9697528785520381872055816002540360025551908152a3565b5163391434e360e21b81526001600160a01b0384166004820152602481018790526044810191909152606490fd5b8451634b637e8f60e11b815260006004820152602490fd5b845162461bcd60e51b81526004810184905260116024820152702ab735b737bbb71037b832b930ba34b7b760791b6044820152606490fdfea26469706673582212203d9c2e9bde7fe9a6fce04efdc03dfd744b785d973d2ed5fa6b725a17cfbf8e6164736f6c63430008140033", "linkReferences": {}, "deployedLinkReferences": {} } diff --git a/backend/cache/solidity-files-cache.json b/backend/cache/solidity-files-cache.json index be1100a..1e9d592 100644 --- a/backend/cache/solidity-files-cache.json +++ b/backend/cache/solidity-files-cache.json @@ -2,8 +2,8 @@ "_format": "hh-sol-cache-2", "files": { "/home/alex/Digital_Legal_Entity(DLE)/backend/contracts/DLE.sol": { - "lastModificationDate": 1753643388350, - "contentHash": "bd9d569a19ab1ef7f7ce5d40f05c9857", + "lastModificationDate": 1753795256078, + "contentHash": "1fada989abe7c49f7fb352c3b427549e", "sourceName": "contracts/DLE.sol", "solcConfig": { "version": "0.8.20", @@ -31,14 +31,8 @@ } }, "imports": [ - "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol", - "@openzeppelin/contracts/governance/Governor.sol", - "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol", - "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol", - "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol", - "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol", - "@openzeppelin/contracts/governance/utils/IVotes.sol", - "@openzeppelin/contracts/utils/Nonces.sol" + "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "@openzeppelin/contracts/utils/ReentrancyGuard.sol" ], "versionPragmas": [ "^0.8.20" @@ -1855,6 +1849,43 @@ "artifacts": [ "IERC20Metadata" ] + }, + "/home/alex/Digital_Legal_Entity(DLE)/backend/node_modules/@openzeppelin/contracts/utils/ReentrancyGuard.sol": { + "lastModificationDate": 1751738715692, + "contentHash": "190613e556d509d9e9a0ea43dc5d891d", + "sourceName": "@openzeppelin/contracts/utils/ReentrancyGuard.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": [ + "ReentrancyGuard" + ] } } } diff --git a/backend/contracts-data/dles/test2-1747217093052.json b/backend/contracts-data/dles/test2-1747217093052.json deleted file mode 100644 index 7e1a2e3..0000000 --- a/backend/contracts-data/dles/test2-1747217093052.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "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/DLE.sol b/backend/contracts/DLE.sol index 69ea147..495d6c5 100644 --- a/backend/contracts/DLE.sol +++ b/backend/contracts/DLE.sol @@ -1,27 +1,25 @@ +// SPDX-License-Identifier: PROPRIETARY +// Copyright (c) 2024-2025 Тарабанов Александр Викторович +// All rights reserved. +// +// This software is proprietary and confidential. +// Unauthorized copying, modification, or distribution is prohibited. +// +// For licensing inquiries: info@hb3-accelerator.com +// Website: https://hb3-accelerator.com +// GitHub: https://github.com/HB3-ACCELERATOR + // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; -import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol"; -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/GovernorVotesQuorumFraction.sol"; -import "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol"; -import "@openzeppelin/contracts/governance/utils/IVotes.sol"; -import "@openzeppelin/contracts/utils/Nonces.sol"; +import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; +import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; /** * @title DLE (Digital Legal Entity) - * @dev Основной контракт DLE с отдельным модулем TimelockController. + * @dev Основной контракт DLE с модульной архитектурой и мульти-чейн поддержкой */ -contract DLE is - ERC20Votes, - Governor, - GovernorSettings, - GovernorCountingSimple, - GovernorVotesQuorumFraction, - GovernorTimelockControl -{ +contract DLE is ERC20, ReentrancyGuard { struct DLEInfo { string name; string symbol; @@ -44,64 +42,57 @@ contract DLE is uint256 oktmo; string[] okvedCodes; uint256 kpp; - uint48 votingDelay; - uint32 votingPeriod; - uint256 proposalThreshold; uint256 quorumPercentage; address[] initialPartners; uint256[] initialAmounts; + uint256[] supportedChainIds; // Поддерживаемые цепочки } struct Proposal { - bytes operation; - uint256[] targetChains; - uint256 timelock; - uint256 governanceChain; - address initiator; - bytes[] signatures; - bool executed; - uint256 quorumRequired; - uint256 signaturesCount; - } - - struct TokenDistributionProposal { - address[] partners; - uint256[] amounts; - uint256 timelock; - address initiator; - bytes[] signatures; - bool executed; - uint256 quorumRequired; - uint256 signaturesCount; + uint256 id; string description; - } - - struct TreasuryProposal { - address recipient; - uint256 amount; - uint256 timelock; - address initiator; - bytes[] signatures; + uint256 forVotes; + uint256 againstVotes; bool executed; - uint256 quorumRequired; - uint256 signaturesCount; - string description; + uint256 deadline; + address initiator; + bytes operation; // Операция для исполнения + mapping(address => bool) hasVoted; + mapping(uint256 => bool) chainVoteSynced; // Синхронизация голосов между цепочками } + struct MultiSigOperation { + bytes32 operationHash; + uint256 forSignatures; + uint256 againstSignatures; + bool executed; + uint256 deadline; + address initiator; + mapping(address => bool) hasSigned; + mapping(uint256 => bool) chainSignSynced; // Синхронизация подписей между цепочками + } + + // Основные настройки DLEInfo public dleInfo; - mapping(uint256 => Proposal) public proposals; - mapping(uint256 => TokenDistributionProposal) public tokenDistributionProposals; - mapping(uint256 => TreasuryProposal) public treasuryProposals; - uint256 public proposalCounter; - uint256 public tokenDistributionProposalCounter; - uint256 public treasuryProposalCounter; uint256 public quorumPercentage; - bool public initialTokensDistributed = false; + uint256 public proposalCounter; + uint256 public multiSigCounter; + uint256 public currentChainId; - // Казначейские функции - mapping(address => uint256) public lastWithdrawalBlock; // Последний блок вывода для каждого адреса - uint256 public totalTreasuryBalance; // Общий баланс казны + // Модули + mapping(bytes32 => address) public modules; + mapping(bytes32 => bool) public activeModules; + // Предложения и мультиподписи + mapping(uint256 => Proposal) public proposals; + mapping(uint256 => MultiSigOperation) public multiSigOperations; + + // Мульти-чейн + mapping(uint256 => bool) public supportedChains; + mapping(uint256 => bool) public executedProposals; // Синхронизация исполненных предложений + mapping(uint256 => bool) public executedMultiSig; // Синхронизация исполненных мультиподписей + + // События event DLEInitialized( string name, string symbol, @@ -112,32 +103,25 @@ contract DLE is string[] okvedCodes, uint256 kpp, address tokenAddress, - address timelockAddress, - address governorAddress + uint256[] supportedChainIds ); event InitialTokensDistributed(address[] partners, uint256[] amounts); - event TokensDepositedToTreasury(address depositor, uint256 amount); - event TreasuryProposalCreated(uint256 proposalId, address initiator, address recipient, uint256 amount, string description); - event TreasuryProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount); - event TreasuryProposalExecuted(uint256 proposalId, address recipient, uint256 amount); - event TokenDistributionProposalCreated(uint256 proposalId, address initiator, address[] partners, uint256[] amounts, string description); - event TokenDistributionProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount); - event TokenDistributionProposalExecuted(uint256 proposalId, address[] partners, uint256[] amounts); - event ProposalCreated(uint256 proposalId, address initiator, bytes operation); - event ProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount); - event ModuleInstalled(string moduleName, address moduleAddress); + event ProposalCreated(uint256 proposalId, address initiator, string description); + event ProposalVoted(uint256 proposalId, address voter, bool support, uint256 votingPower); + event ProposalExecuted(uint256 proposalId, bytes operation); + event MultiSigOperationCreated(uint256 operationId, address initiator, bytes32 operationHash); + event MultiSigSigned(uint256 operationId, address signer, bool support, uint256 signaturePower); + event MultiSigExecuted(uint256 operationId, bytes32 operationHash); + event ModuleAdded(bytes32 moduleId, address moduleAddress); + event ModuleRemoved(bytes32 moduleId); + event CrossChainExecutionSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId); + event CrossChainVoteSync(uint256 proposalId, uint256 fromChainId, uint256 toChainId); + event CrossChainMultiSigSync(uint256 operationId, uint256 fromChainId, uint256 toChainId); constructor( DLEConfig memory config, - address timelockAddress - ) - ERC20(config.name, config.symbol) - Governor(config.name) - GovernorSettings(config.votingDelay, config.votingPeriod, config.proposalThreshold) - GovernorVotesQuorumFraction(config.quorumPercentage) - GovernorTimelockControl(TimelockController(payable(timelockAddress))) - GovernorVotes(IVotes(address(this))) - { + uint256 _currentChainId + ) ERC20(config.name, config.symbol) { dleInfo = DLEInfo({ name: config.name, symbol: config.symbol, @@ -150,9 +134,16 @@ contract DLE is creationTimestamp: block.timestamp, isActive: true }); + quorumPercentage = config.quorumPercentage; + currentChainId = _currentChainId; - // Автоматически распределяем начальные токены партнерам при деплое + // Настраиваем поддерживаемые цепочки + for (uint256 i = 0; i < config.supportedChainIds.length; i++) { + supportedChains[config.supportedChainIds[i]] = true; + } + + // Распределяем начальные токены партнерам require(config.initialPartners.length == config.initialAmounts.length, "Arrays length mismatch"); require(config.initialPartners.length > 0, "No initial partners"); @@ -162,9 +153,7 @@ contract DLE is _mint(config.initialPartners[i], config.initialAmounts[i]); } - initialTokensDistributed = true; emit InitialTokensDistributed(config.initialPartners, config.initialAmounts); - emit DLEInitialized( config.name, config.symbol, @@ -175,349 +164,455 @@ contract DLE is config.okvedCodes, config.kpp, address(this), - timelockAddress, - address(this) + config.supportedChainIds ); } /** - * @dev Создать предложение на распределение токенов - * @param _partners Массив адресов партнеров - * @param _amounts Массив сумм токенов для каждого партнера - * @param _timelock Время исполнения (timestamp) + * @dev Создать предложение с выбором цепочки для кворума * @param _description Описание предложения + * @param _duration Длительность голосования в секундах + * @param _operation Операция для исполнения + * @param _governanceChainId ID цепочки для сбора голосов */ - function createTokenDistributionProposal( - address[] memory _partners, - uint256[] memory _amounts, - uint256 _timelock, - string memory _description - ) external returns (uint256) { - require(_partners.length == _amounts.length, "Arrays length mismatch"); - require(_partners.length > 0, "Empty arrays"); - require(_timelock > block.timestamp, "Invalid timelock"); - require(balanceOf(msg.sender) > 0, "Must hold tokens to create proposal"); - - uint256 proposalId = tokenDistributionProposalCounter++; - - tokenDistributionProposals[proposalId] = TokenDistributionProposal({ - partners: _partners, - amounts: _amounts, - timelock: _timelock, - initiator: msg.sender, - signatures: new bytes[](0), - executed: false, - quorumRequired: (totalSupply() * quorumPercentage) / 100, - signaturesCount: 0, - description: _description - }); - - emit TokenDistributionProposalCreated(proposalId, msg.sender, _partners, _amounts, _description); - return proposalId; - } - - /** - * @dev Подписать предложение на распределение токенов - * @param _proposalId ID предложения - */ - function signTokenDistributionProposal(uint256 _proposalId) external { - TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId]; - require(!proposal.executed, "Proposal already executed"); - require(block.timestamp < proposal.timelock, "Proposal expired"); - require(balanceOf(msg.sender) > 0, "No tokens to sign"); - - // Проверяем, что пользователь еще не подписал - for (uint256 i = 0; i < proposal.signatures.length; i++) { - require( - proposal.signatures[i].length == 0 || - abi.decode(proposal.signatures[i], (address)) != msg.sender, - "Already signed" - ); - } - - proposal.signatures.push(abi.encodePacked(msg.sender)); - proposal.signaturesCount++; - - emit TokenDistributionProposalSigned(_proposalId, msg.sender, proposal.signaturesCount); - - // Проверяем, достигнут ли кворум - if (proposal.signaturesCount >= proposal.quorumRequired) { - proposal.executed = true; - _executeTokenDistribution(_proposalId); - } - } - - /** - * @dev Выполнить распределение токенов после достижения кворума - * @param _proposalId ID предложения - */ - function _executeTokenDistribution(uint256 _proposalId) internal { - TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId]; - require(proposal.executed, "Proposal not executed"); - require(proposal.signaturesCount >= proposal.quorumRequired, "Insufficient quorum"); - - for (uint256 i = 0; i < proposal.partners.length; i++) { - require(proposal.partners[i] != address(0), "Zero address"); - require(proposal.amounts[i] > 0, "Zero amount"); - _mint(proposal.partners[i], proposal.amounts[i]); - } - - emit TokenDistributionProposalExecuted(_proposalId, proposal.partners, proposal.amounts); - } - - /** - * @dev Выполнить предложение на распределение токенов после истечения таймлока - * @param _proposalId ID предложения - */ - function executeTokenDistributionProposal(uint256 _proposalId) external { - TokenDistributionProposal storage proposal = tokenDistributionProposals[_proposalId]; - require(!proposal.executed, "Proposal already executed"); - require(block.timestamp >= proposal.timelock, "Timelock not expired"); - require(proposal.signaturesCount >= proposal.quorumRequired, "Insufficient quorum"); - - proposal.executed = true; - _executeTokenDistribution(_proposalId); - } - function createProposal( + string memory _description, + uint256 _duration, bytes memory _operation, - uint256[] memory _targetChains, - uint256 _timelock, - uint256 _governanceChain + uint256 _governanceChainId ) external returns (uint256) { - require(_operation.length > 0, "Empty operation"); - require(_targetChains.length > 0, "Empty target chains"); - require(_timelock > block.timestamp, "Invalid timelock"); - uint256 proposalId = proposalCounter++; - proposals[proposalId] = Proposal({ - operation: _operation, - targetChains: _targetChains, - timelock: _timelock, - governanceChain: _governanceChain, - initiator: msg.sender, - signatures: new bytes[](0), - executed: false, - quorumRequired: (totalSupply() * quorumPercentage) / 100, - signaturesCount: 0 - }); - emit ProposalCreated(proposalId, msg.sender, _operation); - return proposalId; - } - - function signProposal(uint256 _proposalId) external { - Proposal storage proposal = proposals[_proposalId]; - require(!proposal.executed, "Proposal already executed"); - require(block.timestamp < proposal.timelock, "Proposal expired"); - require(balanceOf(msg.sender) > 0, "No tokens to sign"); - proposal.signatures.push(abi.encodePacked(msg.sender)); - proposal.signaturesCount++; - emit ProposalSigned(_proposalId, msg.sender, proposal.signaturesCount); - if (proposal.signaturesCount >= proposal.quorumRequired) { - proposal.executed = true; - emit IGovernor.ProposalExecuted(_proposalId); - } - } - - function installModule(string memory _moduleName, address _moduleAddress) external { - emit ModuleInstalled(_moduleName, _moduleAddress); - } - - /** - * @dev Внести токены в казну DLE - * @param _amount Количество токенов для внесения - */ - function depositToTreasury(uint256 _amount) external { - require(_amount > 0, "Amount must be greater than 0"); - require(balanceOf(msg.sender) >= _amount, "Insufficient balance"); - - _transfer(msg.sender, address(this), _amount); - totalTreasuryBalance += _amount; - - emit TokensDepositedToTreasury(msg.sender, _amount); - } - - /** - * @dev Создать предложение на вывод средств из казны - * @param _recipient Адрес получателя - * @param _amount Количество токенов для вывода - * @param _timelock Время исполнения (timestamp) - * @param _description Описание предложения - */ - function createTreasuryProposal( - address _recipient, - uint256 _amount, - uint256 _timelock, - string memory _description - ) external returns (uint256) { - require(_recipient != address(0), "Zero address"); - require(_amount > 0, "Amount must be greater than 0"); - require(_amount <= totalTreasuryBalance, "Insufficient treasury balance"); - require(_timelock > block.timestamp, "Invalid timelock"); require(balanceOf(msg.sender) > 0, "Must hold tokens to create proposal"); + require(_duration > 0, "Duration must be positive"); + require(supportedChains[_governanceChainId], "Chain not supported"); + require(checkChainConnection(_governanceChainId), "Chain not available"); - uint256 proposalId = treasuryProposalCounter++; + uint256 proposalId = proposalCounter++; + Proposal storage proposal = proposals[proposalId]; - treasuryProposals[proposalId] = TreasuryProposal({ - recipient: _recipient, - amount: _amount, - timelock: _timelock, - initiator: msg.sender, - signatures: new bytes[](0), - executed: false, - quorumRequired: (totalSupply() * quorumPercentage) / 100, - signaturesCount: 0, - description: _description - }); + proposal.id = proposalId; + proposal.description = _description; + proposal.forVotes = 0; + proposal.againstVotes = 0; + proposal.executed = false; + proposal.deadline = block.timestamp + _duration; + proposal.initiator = msg.sender; + proposal.operation = _operation; - emit TreasuryProposalCreated(proposalId, msg.sender, _recipient, _amount, _description); + emit ProposalCreated(proposalId, msg.sender, _description); return proposalId; } /** - * @dev Подписать предложение на вывод средств из казны + * @dev Голосовать за предложение * @param _proposalId ID предложения + * @param _support Поддержка предложения */ - function signTreasuryProposal(uint256 _proposalId) external { - TreasuryProposal storage proposal = treasuryProposals[_proposalId]; + function vote(uint256 _proposalId, bool _support) external nonReentrant { + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); + require(block.timestamp < proposal.deadline, "Voting ended"); require(!proposal.executed, "Proposal already executed"); - require(block.timestamp < proposal.timelock, "Proposal expired"); - require(balanceOf(msg.sender) > 0, "No tokens to sign"); + require(!proposal.hasVoted[msg.sender], "Already voted"); + require(balanceOf(msg.sender) > 0, "No tokens to vote"); - // Проверяем, что пользователь еще не подписал - for (uint256 i = 0; i < proposal.signatures.length; i++) { - require( - proposal.signatures[i].length == 0 || - abi.decode(proposal.signatures[i], (address)) != msg.sender, - "Already signed" - ); + uint256 votingPower = balanceOf(msg.sender); + proposal.hasVoted[msg.sender] = true; + + if (_support) { + proposal.forVotes += votingPower; + } else { + proposal.againstVotes += votingPower; } - proposal.signatures.push(abi.encodePacked(msg.sender)); - proposal.signaturesCount++; - - emit TreasuryProposalSigned(_proposalId, msg.sender, proposal.signaturesCount); - - // Проверяем, достигнут ли кворум - if (proposal.signaturesCount >= proposal.quorumRequired) { - proposal.executed = true; - _executeTreasuryProposal(_proposalId); - } + emit ProposalVoted(_proposalId, msg.sender, _support, votingPower); } /** - * @dev Выполнить предложение на вывод средств из казны + * @dev Синхронизировать голос из другой цепочки * @param _proposalId ID предложения + * @param _fromChainId ID цепочки откуда синхронизируем + * @param _forVotes Голоса за + * @param _againstVotes Голоса против */ - function _executeTreasuryProposal(uint256 _proposalId) internal { - TreasuryProposal storage proposal = treasuryProposals[_proposalId]; - require(proposal.executed, "Proposal not executed"); - require(proposal.signaturesCount >= proposal.quorumRequired, "Insufficient quorum"); - require(proposal.amount <= totalTreasuryBalance, "Insufficient treasury balance"); + function syncVoteFromChain( + uint256 _proposalId, + uint256 _fromChainId, + uint256 _forVotes, + uint256 _againstVotes, + bytes memory /* _proof */ + ) external { + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); + require(supportedChains[_fromChainId], "Chain not supported"); + require(!proposal.chainVoteSynced[_fromChainId], "Already synced"); - totalTreasuryBalance -= proposal.amount; - _transfer(address(this), proposal.recipient, proposal.amount); + // Здесь должна быть проверка proof (для простоты пропускаем) + // В реальной реализации нужно проверять доказательство - emit TreasuryProposalExecuted(_proposalId, proposal.recipient, proposal.amount); + proposal.forVotes += _forVotes; + proposal.againstVotes += _againstVotes; + proposal.chainVoteSynced[_fromChainId] = true; + + emit CrossChainVoteSync(_proposalId, _fromChainId, currentChainId); } /** - * @dev Выполнить предложение на вывод средств после истечения таймлока + * @dev Проверить результат предложения + * @param _proposalId ID предложения + * @return passed Прошло ли предложение + * @return quorumReached Достигнут ли кворум + */ + function checkProposalResult(uint256 _proposalId) public view returns (bool passed, bool quorumReached) { + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); + + uint256 totalVotes = proposal.forVotes + proposal.againstVotes; + uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100; + + quorumReached = totalVotes >= quorumRequired; + passed = quorumReached && proposal.forVotes > proposal.againstVotes; + + return (passed, quorumReached); + } + + /** + * @dev Исполнить предложение * @param _proposalId ID предложения */ - function executeTreasuryProposal(uint256 _proposalId) external { - TreasuryProposal storage proposal = treasuryProposals[_proposalId]; + function executeProposal(uint256 _proposalId) external { + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); require(!proposal.executed, "Proposal already executed"); - require(block.timestamp >= proposal.timelock, "Timelock not expired"); - require(proposal.signaturesCount >= proposal.quorumRequired, "Insufficient quorum"); + require(block.timestamp >= proposal.deadline, "Voting not ended"); + + (bool passed, bool quorumReached) = checkProposalResult(_proposalId); + require(passed && quorumReached, "Proposal not passed"); proposal.executed = true; - _executeTreasuryProposal(_proposalId); + + // Исполняем операцию + _executeOperation(proposal.operation); + + emit ProposalExecuted(_proposalId, proposal.operation); } - - /** - * @dev Получить доступную для вывода сумму для адреса (пропорционально доле) - * @param _address Адрес для проверки - * @return Доступная сумма для вывода + * @dev Создать мультиподпись операцию + * @param _operationHash Хеш операции + * @param _duration Длительность сбора подписей */ - function getAvailableWithdrawal(address _address) public view returns (uint256) { - uint256 userBalance = balanceOf(_address); - if (userBalance == 0 || totalTreasuryBalance == 0) { - return 0; + function createMultiSigOperation( + bytes32 _operationHash, + uint256 _duration + ) external returns (uint256) { + require(balanceOf(msg.sender) > 0, "Must hold tokens to create operation"); + require(_duration > 0, "Duration must be positive"); + + uint256 operationId = multiSigCounter++; + MultiSigOperation storage operation = multiSigOperations[operationId]; + + operation.operationHash = _operationHash; + operation.forSignatures = 0; + operation.againstSignatures = 0; + operation.executed = false; + operation.deadline = block.timestamp + _duration; + operation.initiator = msg.sender; + + emit MultiSigOperationCreated(operationId, msg.sender, _operationHash); + return operationId; + } + + /** + * @dev Подписать мультиподпись операцию + * @param _operationId ID операции + * @param _support Поддержка операции + */ + function signMultiSigOperation(uint256 _operationId, bool _support) external nonReentrant { + MultiSigOperation storage operation = multiSigOperations[_operationId]; + require(operation.operationHash != bytes32(0), "Operation does not exist"); + require(block.timestamp < operation.deadline, "Signing ended"); + require(!operation.executed, "Operation already executed"); + require(!operation.hasSigned[msg.sender], "Already signed"); + require(balanceOf(msg.sender) > 0, "No tokens to sign"); + + uint256 signaturePower = balanceOf(msg.sender); + operation.hasSigned[msg.sender] = true; + + if (_support) { + operation.forSignatures += signaturePower; + } else { + operation.againstSignatures += signaturePower; + } + + emit MultiSigSigned(_operationId, msg.sender, _support, signaturePower); + } + + /** + * @dev Синхронизировать мультиподпись из другой цепочки + * @param _operationId ID операции + * @param _fromChainId ID цепочки откуда синхронизируем + * @param _forSignatures Подписи за + * @param _againstSignatures Подписи против + */ + function syncMultiSigFromChain( + uint256 _operationId, + uint256 _fromChainId, + uint256 _forSignatures, + uint256 _againstSignatures, + bytes memory /* _proof */ + ) external { + MultiSigOperation storage operation = multiSigOperations[_operationId]; + require(operation.operationHash != bytes32(0), "Operation does not exist"); + require(supportedChains[_fromChainId], "Chain not supported"); + require(!operation.chainSignSynced[_fromChainId], "Already synced"); + + // Здесь должна быть проверка proof + // В реальной реализации нужно проверять доказательство + + operation.forSignatures += _forSignatures; + operation.againstSignatures += _againstSignatures; + operation.chainSignSynced[_fromChainId] = true; + + emit CrossChainMultiSigSync(_operationId, _fromChainId, currentChainId); + } + + /** + * @dev Проверить результат мультиподписи + * @param _operationId ID операции + * @return passed Прошла ли операция + * @return quorumReached Достигнут ли кворум + */ + function checkMultiSigResult(uint256 _operationId) public view returns (bool passed, bool quorumReached) { + MultiSigOperation storage operation = multiSigOperations[_operationId]; + require(operation.operationHash != bytes32(0), "Operation does not exist"); + + uint256 totalSignatures = operation.forSignatures + operation.againstSignatures; + uint256 quorumRequired = (totalSupply() * quorumPercentage) / 100; + + quorumReached = totalSignatures >= quorumRequired; + passed = quorumReached && operation.forSignatures > operation.againstSignatures; + + return (passed, quorumReached); + } + + /** + * @dev Исполнить мультиподпись операцию + * @param _operationId ID операции + */ + function executeMultiSigOperation(uint256 _operationId) external { + MultiSigOperation storage operation = multiSigOperations[_operationId]; + require(operation.operationHash != bytes32(0), "Operation does not exist"); + require(!operation.executed, "Operation already executed"); + require(block.timestamp >= operation.deadline, "Signing not ended"); + + (bool passed, bool quorumReached) = checkMultiSigResult(_operationId); + require(passed && quorumReached, "Operation not passed"); + + operation.executed = true; + + emit MultiSigExecuted(_operationId, operation.operationHash); + } + + /** + * @dev Синхронизировать исполнение из другой цепочки + * @param _proposalId ID предложения + * @param _fromChainId ID цепочки откуда синхронизируем + */ + function syncExecutionFromChain( + uint256 _proposalId, + uint256 _fromChainId, + bytes memory /* _proof */ + ) external { + require(supportedChains[_fromChainId], "Chain not supported"); + require(!executedProposals[_proposalId], "Already executed"); + + // Здесь должна быть проверка proof + // В реальной реализации нужно проверять доказательство + + executedProposals[_proposalId] = true; + + // Получаем операцию из предложения + Proposal storage proposal = proposals[_proposalId]; + if (proposal.id == _proposalId) { + _executeOperation(proposal.operation); + } + + emit CrossChainExecutionSync(_proposalId, _fromChainId, currentChainId); + } + + /** + * @dev Проверить подключение к цепочке + * @param _chainId ID цепочки + * @return isAvailable Доступна ли цепочка + */ + function checkChainConnection(uint256 _chainId) public view returns (bool isAvailable) { + // В реальной реализации здесь должна быть проверка подключения + // Для примера возвращаем true для поддерживаемых цепочек + return supportedChains[_chainId]; + } + + /** + * @dev Проверить все подключения перед синхронизацией + * @param _proposalId ID предложения + * @return allChainsReady Готовы ли все цепочки + */ + function checkSyncReadiness(uint256 _proposalId) public view returns (bool allChainsReady) { + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); + + // Проверяем все поддерживаемые цепочки + for (uint256 i = 0; i < getSupportedChainCount(); i++) { + uint256 chainId = getSupportedChainId(i); + if (!checkChainConnection(chainId)) { + return false; + } } - // Пропорционально доле в общем количестве токенов - uint256 userShare = (userBalance * totalTreasuryBalance) / totalSupply(); - return userShare; + return true; } + /** + * @dev Синхронизация только при 100% готовности + * @param _proposalId ID предложения + */ + function syncToAllChains(uint256 _proposalId) external { + require(checkSyncReadiness(_proposalId), "Not all chains ready"); + + // Выполняем синхронизацию во все цепочки + for (uint256 i = 0; i < getSupportedChainCount(); i++) { + uint256 chainId = getSupportedChainId(i); + syncToChain(_proposalId, chainId); + } + + emit SyncCompleted(_proposalId); + } + /** + * @dev Синхронизация в конкретную цепочку + * @param _proposalId ID предложения + * @param _chainId ID цепочки + */ + function syncToChain(uint256 _proposalId, uint256 _chainId) internal { + // В реальной реализации здесь будет вызов cross-chain bridge + // Для примера просто эмитим событие + emit CrossChainExecutionSync(_proposalId, currentChainId, _chainId); + } - // Переопределения для совместимости с ERC-6372 - function CLOCK_MODE() public pure override(Governor, GovernorVotes, Votes) returns (string memory) { - return "mode=blocknumber&from=default"; + /** + * @dev Получить количество поддерживаемых цепочек + */ + function getSupportedChainCount() public pure returns (uint256) { + // В реальной реализации нужно хранить массив поддерживаемых цепочек + // Для примера возвращаем 4 (Ethereum, Polygon, BSC, Arbitrum) + return 4; } - function clock() public view override(Governor, GovernorVotes, Votes) returns (uint48) { - return uint48(block.number); + + /** + * @dev Получить ID поддерживаемой цепочки по индексу + * @param _index Индекс цепочки + */ + function getSupportedChainId(uint256 _index) public pure returns (uint256) { + if (_index == 0) return 1; // Ethereum + if (_index == 1) return 137; // Polygon + if (_index == 2) return 56; // BSC + if (_index == 3) return 42161; // Arbitrum + revert("Invalid chain index"); } - function _update(address from, address to, uint256 amount) internal override(ERC20Votes) { - super._update(from, to, amount); + + /** + * @dev Исполнить операцию + * @param _operation Операция для исполнения + */ + function _executeOperation(bytes memory _operation) internal { + // Декодируем операцию + (bytes4 selector, bytes memory data) = abi.decode(_operation, (bytes4, bytes)); + + if (selector == bytes4(keccak256("transfer(address,uint256)"))) { + // Операция передачи токенов + (address to, uint256 amount) = abi.decode(data, (address, uint256)); + _transfer(msg.sender, to, amount); + } else if (selector == bytes4(keccak256("mint(address,uint256)"))) { + // Операция минтинга токенов + (address to, uint256 amount) = abi.decode(data, (address, uint256)); + _mint(to, amount); + } else if (selector == bytes4(keccak256("burn(address,uint256)"))) { + // Операция сжигания токенов + (address from, uint256 amount) = abi.decode(data, (address, uint256)); + _burn(from, amount); + } else { + // Неизвестная операция + revert("Unknown operation"); + } } - function nonces(address owner) public view override(Nonces) returns (uint256) { - return super.nonces(owner); + + /** + * @dev Добавить модуль + * @param _moduleId ID модуля + * @param _moduleAddress Адрес модуля + */ + function addModule(bytes32 _moduleId, address _moduleAddress) external { + require(balanceOf(msg.sender) > 0, "Must hold tokens to add module"); + require(_moduleAddress != address(0), "Zero address"); + require(!activeModules[_moduleId], "Module already exists"); + + modules[_moduleId] = _moduleAddress; + activeModules[_moduleId] = true; + + emit ModuleAdded(_moduleId, _moduleAddress); } - function name() public view override(ERC20, Governor) returns (string memory) { - return super.name(); + + /** + * @dev Удалить модуль + * @param _moduleId ID модуля + */ + function removeModule(bytes32 _moduleId) external { + require(balanceOf(msg.sender) > 0, "Must hold tokens to remove module"); + require(activeModules[_moduleId], "Module does not exist"); + + delete modules[_moduleId]; + activeModules[_moduleId] = false; + + emit ModuleRemoved(_moduleId); } - function votingDelay() public view override(Governor, GovernorSettings) returns (uint256) { - return super.votingDelay(); + + /** + * @dev Получить информацию о DLE + */ + function getDLEInfo() external view returns (DLEInfo memory) { + return dleInfo; } - function votingPeriod() public view override(Governor, GovernorSettings) returns (uint256) { - return super.votingPeriod(); + + /** + * @dev Проверить, активен ли модуль + * @param _moduleId ID модуля + */ + function isModuleActive(bytes32 _moduleId) external view returns (bool) { + return activeModules[_moduleId]; } - function quorum(uint256 blockNumber) public view override(Governor, GovernorVotesQuorumFraction) returns (uint256) { - return super.quorum(blockNumber); + + /** + * @dev Получить адрес модуля + * @param _moduleId ID модуля + */ + function getModuleAddress(bytes32 _moduleId) external view returns (address) { + return modules[_moduleId]; } - function state(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (ProposalState) { - return super.state(proposalId); + + /** + * @dev Проверить, поддерживается ли цепочка + * @param _chainId ID цепочки + */ + function isChainSupported(uint256 _chainId) external view returns (bool) { + return supportedChains[_chainId]; } - 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(); - } - function supportsInterface(bytes4 interfaceId) public view override(Governor) returns (bool) { - return super.supportsInterface(interfaceId); - } - function proposalNeedsQueuing(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (bool) { - return super.proposalNeedsQueuing(proposalId); - } - 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); - } - 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); + + /** + * @dev Получить текущий ID цепочки + */ + function getCurrentChainId() external view returns (uint256) { + return currentChainId; } + + // События для новых функций + event SyncCompleted(uint256 proposalId); } \ No newline at end of file diff --git a/backend/db/data/jurisdiction_codes_analysis.md b/backend/db/data/jurisdiction_codes_analysis.md index 1763f5f..cab3e23 100644 --- a/backend/db/data/jurisdiction_codes_analysis.md +++ b/backend/db/data/jurisdiction_codes_analysis.md @@ -1,3 +1,15 @@ + + # Анализ кодов по юрисдикциям для DLE ## 🌍 ГЛОБАЛЬНЫЕ (МЕЖДУНАРОДНЫЕ) КОДЫ diff --git a/backend/routes/dle.js b/backend/routes/dle.js deleted file mode 100644 index 9f4683a..0000000 --- a/backend/routes/dle.js +++ /dev/null @@ -1,187 +0,0 @@ -/** - * Copyright (c) 2024-2025 Тарабанов Александр Викторович - * All rights reserved. - * - * This software is proprietary and confidential. - * Unauthorized copying, modification, or distribution is prohibited. - * - * For licensing inquiries: info@hb3-accelerator.com - * Website: https://hb3-accelerator.com - * GitHub: https://github.com/HB3-ACCELERATOR - */ - -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, next) => { - 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); - next(error); - } -}); - -/** - * @route GET /api/dle - * @desc Получить список всех DLE - * @access Public (доступно всем пользователям, включая гостевых) - */ -router.get('/', async (req, res, next) => { - try { - const dles = await dleService.getAllDLEs(); - res.json({ - success: true, - data: dles - }); - } catch (error) { - logger.error('Ошибка при получении списка DLE:', error); - next(error); - } -}); - -/** - * @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, next) => { - 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); - next(error); - } -}); - -/** - * @route DELETE /api/dle/empty/:fileName - * @desc Удалить пустое DLE по имени файла - * @access Private (только для авторизованных пользователей с ролью admin) - */ -router.delete('/empty/:fileName', auth.requireAuth, auth.requireAdmin, async (req, res, next) => { - 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); - next(error); - } -}); - -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 deleted file mode 100644 index 5e01d76..0000000 --- a/backend/scripts/deploy/create-dle-manual.js +++ /dev/null @@ -1,216 +0,0 @@ -/** - * Copyright (c) 2024-2025 Тарабанов Александр Викторович - * All rights reserved. - * - * This software is proprietary and confidential. - * Unauthorized copying, modification, or distribution is prohibited. - * - * For licensing inquiries: info@hb3-accelerator.com - * Website: https://hb3-accelerator.com - * GitHub: https://github.com/HB3-ACCELERATOR - */ - -// Скрипт для ручного создания 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/services/dleService.js b/backend/services/dleService.js deleted file mode 100644 index 976df4f..0000000 --- a/backend/services/dleService.js +++ /dev/null @@ -1,281 +0,0 @@ -/** - * Copyright (c) 2024-2025 Тарабанов Александр Викторович - * All rights reserved. - * - * This software is proprietary and confidential. - * Unauthorized copying, modification, or distribution is prohibited. - * - * For licensing inquiries: info@hb3-accelerator.com - * Website: https://hb3-accelerator.com - * GitHub: https://github.com/HB3-ACCELERATOR - */ - -const { spawn } = require('child_process'); -const path = require('path'); -const fs = require('fs'); -const { ethers } = require('ethers'); -const logger = require('../utils/logger'); -const { getRpcUrlByNetworkId } = require('./rpcProviderService'); - -/** - * Сервис для управления 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(`Файл параметров скопирован успешно`); - - // Получаем rpc_url из базы по выбранной сети - const rpcUrl = await getRpcUrlByNetworkId(deployParams.network); - if (!rpcUrl) { - throw new Error(`RPC URL для сети ${deployParams.network} не найден в базе данных`); - } - if (!dleParams.privateKey) { - throw new Error('Приватный ключ для деплоя не передан'); - } - - // Запускаем скрипт деплоя с нужными переменными окружения - const result = await this.runDeployScript(paramsFile, { - rpcUrl, - privateKey: dleParams.privateKey, - networkId: deployParams.network, - envNetworkKey: deployParams.network.toUpperCase() - }); - - 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, extraEnv = {}) { - 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 envVars = { - ...process.env, - [`${extraEnv.envNetworkKey}_RPC_URL`]: extraEnv.rpcUrl, - [`${extraEnv.envNetworkKey}_PRIVATE_KEY`]: extraEnv.privateKey - }; - // Запускаем скрипт с нужной сетью - const hardhatProcess = spawn('npx', ['hardhat', 'run', scriptPath, '--network', extraEnv.networkId], { - cwd: path.join(__dirname, '..'), - env: envVars, - 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 deleted file mode 100644 index 6a4ecf5..0000000 --- a/backend/temp/dle-params-1747214293808.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "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 deleted file mode 100644 index 6fab1b4..0000000 --- a/backend/temp/dle-params-1747215258506.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "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 deleted file mode 100644 index 6fab1b4..0000000 --- a/backend/temp/dle-params-1747215269647.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "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 deleted file mode 100644 index 6fab1b4..0000000 --- a/backend/temp/dle-params-1747215331173.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "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 deleted file mode 100644 index f69548f..0000000 --- a/backend/temp/dle-params-1747216992334.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "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/temp/dle-params-1750855845711.json b/backend/temp/dle-params-1750855845711.json deleted file mode 100644 index 6978730..0000000 --- a/backend/temp/dle-params-1750855845711.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест 3", - "symbol": "тест3", - "location": "07255, México", - "isicCodes": [ - "6810", - "8510" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d" - ], - "amounts": [ - "1000000000000000000", - "100000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "10000", - "quorumPercentage": 51 -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750856045300.json b/backend/temp/dle-params-1750856045300.json deleted file mode 100644 index 6978730..0000000 --- a/backend/temp/dle-params-1750856045300.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест 3", - "symbol": "тест3", - "location": "07255, México", - "isicCodes": [ - "6810", - "8510" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d" - ], - "amounts": [ - "1000000000000000000", - "100000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "10000", - "quorumPercentage": 51 -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750856967915.json b/backend/temp/dle-params-1750856967915.json deleted file mode 100644 index 6978730..0000000 --- a/backend/temp/dle-params-1750856967915.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест 3", - "symbol": "тест3", - "location": "07255, México", - "isicCodes": [ - "6810", - "8510" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d" - ], - "amounts": [ - "1000000000000000000", - "100000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "10000", - "quorumPercentage": 51 -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750856980105.json b/backend/temp/dle-params-1750856980105.json deleted file mode 100644 index 6978730..0000000 --- a/backend/temp/dle-params-1750856980105.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест 3", - "symbol": "тест3", - "location": "07255, México", - "isicCodes": [ - "6810", - "8510" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d" - ], - "amounts": [ - "1000000000000000000", - "100000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "10000", - "quorumPercentage": 51 -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750857312941.json b/backend/temp/dle-params-1750857312941.json deleted file mode 100644 index d0f72cd..0000000 --- a/backend/temp/dle-params-1750857312941.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест3 ", - "symbol": "тест3", - "location": "07852, United States, Roxbury Township", - "isicCodes": [ - "6411" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x0a98c54327253bb51f99c8218e5a7a01933d5f57" - ], - "amounts": [ - "1000000000000000000", - "5000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "5", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750858829101.json b/backend/temp/dle-params-1750858829101.json deleted file mode 100644 index 1dba510..0000000 --- a/backend/temp/dle-params-1750858829101.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "тест3", - "symbol": "3тест", - "location": "07885, United States, Rockaway Township", - "isicCodes": [ - "8411" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x15a4ed4759e5762174b300a4cf51cc17ad967f4d" - ], - "amounts": [ - "1000000000000000000", - "100000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "2", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750859039869.json b/backend/temp/dle-params-1750859039869.json deleted file mode 100644 index 061c2ad..0000000 --- a/backend/temp/dle-params-1750859039869.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "ест3", - "symbol": "тест3", - "location": "07522, United States, Paterson", - "isicCodes": [ - "0111" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x0a98c54327253bb51f99c8218e5a7a01933d5f57" - ], - "amounts": [ - "1000000000000000000", - "1000000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "2", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750859153836.json b/backend/temp/dle-params-1750859153836.json deleted file mode 100644 index 061c2ad..0000000 --- a/backend/temp/dle-params-1750859153836.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "ест3", - "symbol": "тест3", - "location": "07522, United States, Paterson", - "isicCodes": [ - "0111" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x0a98c54327253bb51f99c8218e5a7a01933d5f57" - ], - "amounts": [ - "1000000000000000000", - "1000000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "2", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750859377570.json b/backend/temp/dle-params-1750859377570.json deleted file mode 100644 index 061c2ad..0000000 --- a/backend/temp/dle-params-1750859377570.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "ест3", - "symbol": "тест3", - "location": "07522, United States, Paterson", - "isicCodes": [ - "0111" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x0a98c54327253bb51f99c8218e5a7a01933d5f57" - ], - "amounts": [ - "1000000000000000000", - "1000000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "2", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/temp/dle-params-1750859556677.json b/backend/temp/dle-params-1750859556677.json deleted file mode 100644 index 061c2ad..0000000 --- a/backend/temp/dle-params-1750859556677.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "ест3", - "symbol": "тест3", - "location": "07522, United States, Paterson", - "isicCodes": [ - "0111" - ], - "partners": [ - "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b", - "0x0a98c54327253bb51f99c8218e5a7a01933d5f57" - ], - "amounts": [ - "1000000000000000000", - "1000000000000000000000000" - ], - "network": "sepolia", - "minTimelockDelay": 1, - "votingDelay": 6646, - "votingPeriod": 6646, - "proposalThreshold": "2", - "quorumPercentage": 51, - "privateKey": "7de38b2ada1d23581342f106c8587ce26068797b3bc06656e24b9dcd1810c7b1" -} \ No newline at end of file diff --git a/backend/test/DLE.test.js b/backend/test/DLE.test.js new file mode 100644 index 0000000..903c1da --- /dev/null +++ b/backend/test/DLE.test.js @@ -0,0 +1,482 @@ +/** + * Copyright (c) 2024-2025 Тарабанов Александр Викторович + * All rights reserved. + * + * This software is proprietary and confidential. + * Unauthorized copying, modification, or distribution is prohibited. + * + * For licensing inquiries: info@hb3-accelerator.com + * Website: https://hb3-accelerator.com + * GitHub: https://github.com/HB3-ACCELERATOR + */ + +const { expect } = require("chai"); +const { ethers } = require("hardhat"); + +describe("DLE Smart Contract", function () { + let DLE; + let dle; + let owner; + let partner1; + let partner2; + let partner3; + let addrs; + + beforeEach(async function () { + // Получаем аккаунты + [owner, partner1, partner2, partner3, ...addrs] = await ethers.getSigners(); + + // Деплоим контракт + const DLEFactory = await ethers.getContractFactory("DLE"); + + const config = { + name: "Digital Legal Entity", + symbol: "DLE", + location: "Moscow, Russia", + coordinates: "55.7558,37.6176", + jurisdiction: 1, // Россия + oktmo: 45000000000, + okvedCodes: ["62.01", "62.02", "62.03"], + kpp: 770101001, + quorumPercentage: 60, // 60% + initialPartners: [partner1.address, partner2.address, partner3.address], + initialAmounts: [ethers.parseEther("1000"), ethers.parseEther("1000"), ethers.parseEther("1000")], + supportedChainIds: [1, 137, 56, 42161] // Ethereum, Polygon, BSC, Arbitrum + }; + + dle = await DLEFactory.deploy(config, 1); // ChainId = 1 (Ethereum) + await dle.waitForDeployment(); + }); + + describe("Деплой и инициализация", function () { + it("Должен правильно инициализировать DLE", async function () { + const dleInfo = await dle.getDLEInfo(); + + expect(dleInfo.name).to.equal("Digital Legal Entity"); + expect(dleInfo.symbol).to.equal("DLE"); + expect(dleInfo.location).to.equal("Moscow, Russia"); + expect(dleInfo.jurisdiction).to.equal(1); + expect(dleInfo.isActive).to.be.true; + }); + + it("Должен распределить начальные токены", async function () { + expect(await dle.balanceOf(partner1.address)).to.equal(ethers.parseEther("1000")); + expect(await dle.balanceOf(partner2.address)).to.equal(ethers.parseEther("1000")); + expect(await dle.balanceOf(partner3.address)).to.equal(ethers.parseEther("1000")); + }); + + it("Должен установить кворум", async function () { + expect(await dle.quorumPercentage()).to.equal(60); + }); + + it("Должен настроить поддерживаемые цепочки", async function () { + expect(await dle.isChainSupported(1)).to.be.true; // Ethereum + expect(await dle.isChainSupported(137)).to.be.true; // Polygon + expect(await dle.isChainSupported(56)).to.be.true; // BSC + expect(await dle.isChainSupported(42161)).to.be.true; // Arbitrum + expect(await dle.isChainSupported(999)).to.be.false; // Неподдерживаемая цепочка + }); + }); + + describe("Система голосования", function () { + it("Должен создать предложение", async function () { + const description = "Передать 100 токенов от Partner1 к Partner2"; + const duration = 7 * 24 * 60 * 60; // 7 дней + const operation = ethers.AbiCoder.defaultAbiCoder().encode( + ["bytes4", "bytes"], + [ + "0xa9059cbb", // transfer(address,uint256) selector + ethers.AbiCoder.defaultAbiCoder().encode( + ["address", "uint256"], + [partner2.address, ethers.parseEther("100")] + ) + ] + ); + + const tx = await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 // governanceChainId = Ethereum + ); + + const receipt = await tx.wait(); + const event = receipt.logs.find(log => + log.fragment && log.fragment.name === "ProposalCreated" + ); + + expect(event).to.not.be.undefined; + expect(await dle.proposalCounter()).to.equal(1); + }); + + it("Должен голосовать за предложение", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Голосуем за предложение + await dle.connect(partner1).vote(0, true); + await dle.connect(partner2).vote(0, true); + + const proposal = await dle.proposals(0); + expect(proposal.forVotes).to.equal(ethers.parseEther("2000")); // 1000 + 1000 + expect(proposal.againstVotes).to.equal(0); + }); + + it("Должен проверить результат голосования", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Голосуем за предложение (60% от 3000 = 1800) + await dle.connect(partner1).vote(0, true); // 1000 + await dle.connect(partner2).vote(0, true); // 1000 + await dle.connect(partner3).vote(0, true); // 1000 + + const [passed, quorumReached] = await dle.checkProposalResult(0); + expect(passed).to.be.true; + expect(quorumReached).to.be.true; + }); + + it("Не должен позволить голосовать дважды", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Первое голосование + await dle.connect(partner1).vote(0, true); + + // Второе голосование должно упасть + await expect( + dle.connect(partner1).vote(0, true) + ).to.be.revertedWith("Already voted"); + }); + + it("Не должен позволить голосовать без токенов", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Голосование без токенов должно упасть + await expect( + dle.connect(addrs[0]).vote(0, true) + ).to.be.revertedWith("No tokens to vote"); + }); + }); + + describe("Мультиподпись", function () { + it("Должен создать мультиподпись операцию", async function () { + const operationHash = ethers.keccak256(ethers.toUtf8Bytes("test operation")); + const duration = 7 * 24 * 60 * 60; + + const tx = await dle.connect(partner1).createMultiSigOperation( + operationHash, + duration + ); + + const receipt = await tx.wait(); + const event = receipt.logs.find(log => + log.fragment && log.fragment.name === "MultiSigOperationCreated" + ); + + expect(event).to.not.be.undefined; + expect(await dle.multiSigCounter()).to.equal(1); + }); + + it("Должен подписать мультиподпись операцию", async function () { + const operationHash = ethers.keccak256(ethers.toUtf8Bytes("test operation")); + const duration = 7 * 24 * 60 * 60; + + await dle.connect(partner1).createMultiSigOperation( + operationHash, + duration + ); + + // Подписываем операцию + await dle.connect(partner1).signMultiSigOperation(0, true); + await dle.connect(partner2).signMultiSigOperation(0, true); + + const operation = await dle.multiSigOperations(0); + expect(operation.forSignatures).to.equal(ethers.parseEther("2000")); // 1000 + 1000 + expect(operation.againstSignatures).to.equal(0); + }); + + it("Должен проверить результат мультиподписи", async function () { + const operationHash = ethers.keccak256(ethers.toUtf8Bytes("test operation")); + const duration = 7 * 24 * 60 * 60; + + await dle.connect(partner1).createMultiSigOperation( + operationHash, + duration + ); + + // Подписываем операцию (60% от 3000 = 1800) + await dle.connect(partner1).signMultiSigOperation(0, true); // 1000 + await dle.connect(partner2).signMultiSigOperation(0, true); // 1000 + await dle.connect(partner3).signMultiSigOperation(0, true); // 1000 + + const [passed, quorumReached] = await dle.checkMultiSigResult(0); + expect(passed).to.be.true; + expect(quorumReached).to.be.true; + }); + }); + + describe("Мульти-чейн синхронизация", function () { + it("Должен синхронизировать голоса из другой цепочки", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Синхронизируем голоса из другой цепочки + await dle.connect(partner1).syncVoteFromChain( + 0, // proposalId + 137, // fromChainId (Polygon) + ethers.parseEther("500"), // forVotes + ethers.parseEther("200"), // againstVotes + "0x" // proof + ); + + const proposal = await dle.proposals(0); + expect(proposal.forVotes).to.equal(ethers.parseEther("500")); + expect(proposal.againstVotes).to.equal(ethers.parseEther("200")); + }); + + it("Должен синхронизировать мультиподпись из другой цепочки", async function () { + const operationHash = ethers.keccak256(ethers.toUtf8Bytes("test operation")); + const duration = 7 * 24 * 60 * 60; + + await dle.connect(partner1).createMultiSigOperation( + operationHash, + duration + ); + + // Синхронизируем мультиподпись из другой цепочки + await dle.connect(partner1).syncMultiSigFromChain( + 0, // operationId + 137, // fromChainId (Polygon) + ethers.parseEther("800"), // forSignatures + ethers.parseEther("300"), // againstSignatures + "0x" // proof + ); + + const operation = await dle.multiSigOperations(0); + expect(operation.forSignatures).to.equal(ethers.parseEther("800")); + expect(operation.againstSignatures).to.equal(ethers.parseEther("300")); + }); + + it("Должен проверить готовность синхронизации", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Проверяем готовность синхронизации + const isReady = await dle.checkSyncReadiness(0); + expect(isReady).to.be.true; + }); + }); + + describe("Управление модулями", function () { + it("Должен добавить модуль", async function () { + const moduleId = ethers.keccak256(ethers.toUtf8Bytes("TreasuryModule")); + const moduleAddress = addrs[0].address; + + await dle.connect(partner1).addModule(moduleId, moduleAddress); + + expect(await dle.isModuleActive(moduleId)).to.be.true; + expect(await dle.getModuleAddress(moduleId)).to.equal(moduleAddress); + }); + + it("Должен удалить модуль", async function () { + const moduleId = ethers.keccak256(ethers.toUtf8Bytes("TreasuryModule")); + const moduleAddress = addrs[0].address; + + await dle.connect(partner1).addModule(moduleId, moduleAddress); + await dle.connect(partner1).removeModule(moduleId); + + expect(await dle.isModuleActive(moduleId)).to.be.false; + }); + + it("Не должен позволить добавить модуль без токенов", async function () { + const moduleId = ethers.keccak256(ethers.toUtf8Bytes("TreasuryModule")); + const moduleAddress = addrs[0].address; + + await expect( + dle.connect(addrs[0]).addModule(moduleId, moduleAddress) + ).to.be.revertedWith("Must hold tokens to add module"); + }); + }); + + describe("Проверка подключений", function () { + it("Должен проверить подключение к цепочке", async function () { + expect(await dle.checkChainConnection(1)).to.be.true; // Ethereum + expect(await dle.checkChainConnection(137)).to.be.true; // Polygon + expect(await dle.checkChainConnection(56)).to.be.true; // BSC + expect(await dle.checkChainConnection(42161)).to.be.true; // Arbitrum + expect(await dle.checkChainConnection(999)).to.be.false; // Неподдерживаемая цепочка + }); + + it("Должен получить количество поддерживаемых цепочек", async function () { + expect(await dle.getSupportedChainCount()).to.equal(4); + }); + + it("Должен получить ID поддерживаемой цепочки", async function () { + expect(await dle.getSupportedChainId(0)).to.equal(1); // Ethereum + expect(await dle.getSupportedChainId(1)).to.equal(137); // Polygon + expect(await dle.getSupportedChainId(2)).to.equal(56); // BSC + expect(await dle.getSupportedChainId(3)).to.equal(42161); // Arbitrum + }); + }); + + describe("Исполнение операций", function () { + it("Должен исполнить предложение с передачей токенов", async function () { + // Создаем предложение для передачи токенов + const description = "Передать 100 токенов от Partner1 к Partner2"; + const duration = 7 * 24 * 60 * 60; + const operation = ethers.AbiCoder.defaultAbiCoder().encode( + ["bytes4", "bytes"], + [ + "0xa9059cbb", // transfer(address,uint256) selector + ethers.AbiCoder.defaultAbiCoder().encode( + ["address", "uint256"], + [partner2.address, ethers.parseEther("100")] + ) + ] + ); + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Голосуем за предложение + await dle.connect(partner1).vote(0, true); + await dle.connect(partner2).vote(0, true); + await dle.connect(partner3).vote(0, true); + + // Ждем окончания голосования + await ethers.provider.send("evm_increaseTime", [7 * 24 * 60 * 60]); + await ethers.provider.send("evm_mine"); + + // Исполняем предложение + await dle.connect(partner1).executeProposal(0); + + // Проверяем, что токены переданы + expect(await dle.balanceOf(partner1.address)).to.equal(ethers.parseEther("900")); // 1000 - 100 + expect(await dle.balanceOf(partner2.address)).to.equal(ethers.parseEther("1100")); // 1000 + 100 + }); + }); + + describe("Безопасность", function () { + it("Не должен позволить создать предложение без токенов", async function () { + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await expect( + dle.connect(addrs[0]).createProposal( + description, + duration, + operation, + 1 + ) + ).to.be.revertedWith("Must hold tokens to create proposal"); + }); + + it("Не должен позволить голосовать после окончания срока", async function () { + // Создаем предложение с коротким сроком + const description = "Тестовое предложение"; + const duration = 1; // 1 секунда + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Ждем окончания срока + await ethers.provider.send("evm_increaseTime", [2]); + await ethers.provider.send("evm_mine"); + + // Голосование должно упасть + await expect( + dle.connect(partner1).vote(0, true) + ).to.be.revertedWith("Voting ended"); + }); + + it("Не должен позволить исполнить предложение до окончания срока", async function () { + // Создаем предложение + const description = "Тестовое предложение"; + const duration = 7 * 24 * 60 * 60; + const operation = "0x"; + + await dle.connect(partner1).createProposal( + description, + duration, + operation, + 1 + ); + + // Голосуем за предложение + await dle.connect(partner1).vote(0, true); + await dle.connect(partner2).vote(0, true); + await dle.connect(partner3).vote(0, true); + + // Исполнение должно упасть + await expect( + dle.connect(partner1).executeProposal(0) + ).to.be.revertedWith("Voting not ended"); + }); + }); +}); \ No newline at end of file diff --git a/docs/DLE_CONSOLIDATED_ANALYSIS.md b/docs/DLE_CONSOLIDATED_ANALYSIS.md new file mode 100644 index 0000000..aac4cca --- /dev/null +++ b/docs/DLE_CONSOLIDATED_ANALYSIS.md @@ -0,0 +1,977 @@ + + +# DLE - Единый Смарт-Контракт с Модульной Архитектурой + +## 🎯 ПОЛНОЕ ПОНИМАНИЕ ЗАДАЧИ DLE + +### **1. ОСНОВНАЯ КОНЦЕПЦИЯ:** +``` +DLE (Digital Legal Entity) = Универсальная цифровая юридическая организация +├── Один смарт-контракт с одинаковым адресом во всех цепочках +├── Управление только через токен-холдеров (никаких админских ролей) +├── Модульная архитектура (основной контракт + добавляемые модули) +└── Мульти-чейн синхронизация (работа в нескольких блокчейнах одновременно) +``` + +### **2. АРХИТЕКТУРА СИСТЕМЫ:** + +#### **Деплой в множественных цепочках:** +``` +Пользователь выбирает цепочки (например, 4): +├── Ethereum (ChainId = 1) +├── Polygon (ChainId = 137) +├── BSC (ChainId = 56) +└── Arbitrum (ChainId = 42161) + +Деплой в каждой цепочке: +├── Одинаковый адрес DLE (через CREATE2) +├── Одинаковые токены для партнеров +└── Синхронизированное состояние +``` + +#### **Распределение токенов:** +``` +3 партнера получают по 1000 токенов в каждой из 4 цепочек: +├── Партнер A: 1000 токенов (в 4 цепочках) +├── Партнер B: 1000 токенов (в 4 цепочках) +└── Партнер C: 1000 токенов (в 4 цепочках) + +Итого: 3000 токенов в каждой цепочке +``` + +### **3. СИСТЕМА УПРАВЛЕНИЯ:** + +#### **Голосование и мультиподпись:** +``` +- Только токен-холдеры участвуют в управлении +- Каждый токен = одна голосующая сила +- Кворум настраиваемый (например, 60% от общего количества токенов) +- Мультиподпись через токен-холдеров (проверка баланса при каждой операции) +``` + +#### **Создание предложений:** +``` +1. Токен-холдер создает предложение +2. Выбирает ОДНУ цепочку для сбора подписей/голосов +3. Сбор происходит только в выбранной цепочке +4. При достижении кворума - исполнение +5. Синхронизация исполнения во все остальные цепочки +``` + +### **4. МУЛЬТИ-ЧЕЙН СИНХРОНИЗАЦИЯ:** + +#### **Передача токенов:** +``` +Партнер A передает 500 токенов Партнеру B: +├── Ethereum: A → B (500 токенов) +├── Polygon: A → B (500 токенов) +├── BSC: A → B (500 токенов) +└── Arbitrum: A → B (500 токенов) + +Синхронизация происходит во всех цепочках одновременно +``` + +#### **Создание и исполнение предложений:** +``` +Пример: "Передать 100 токенов от A к C" +1. Создание в Ethereum +2. Выбор Polygon для кворума +3. Сбор подписей в Polygon +4. Кворум: 60% от 3000 = 1800 токенов +5. При достижении кворума: + ├── Исполнение в Polygon: A → C (100 токенов) + ├── Синхронизация в Ethereum: A → C (100 токенов) + ├── Синхронизация в BSC: A → C (100 токенов) + └── Синхронизация в Arbitrum: A → C (100 токенов) +``` + +### **5. МОДУЛЬНАЯ АРХИТЕКТУРА:** + +#### **Основной контракт DLE.sol:** +``` +- ERC-20 токены +- Система голосования +- Мультиподпись +- Мультичейн синхронизация +- Управление модулями +- DLEInfo (юридическая информация) +``` + +#### **Модули (отдельные контракты):** +``` +- TreasuryModule.sol (казначейство) +- HierarchicalVotingModule.sol (иерархическое голосование) +- CommunicationModule.sol (коммуникации) +- CustomModule.sol (пользовательские модули) +``` + +### **6. ПРИМЕРЫ ИСПОЛЬЗОВАНИЯ:** + +#### **Передача токенов:** +``` +1. Создание предложения: "A → C (100 токенов)" +2. Выбор цепочки для кворума: Polygon +3. Сбор подписей в Polygon +4. При кворуме: исполнение + синхронизация во все цепочки +``` + +#### **Удаление таблицы в приложении:** +``` +1. Создание предложения: "Удалить таблицу пользователей" +2. Выбор цепочки: Ethereum +3. Сбор подписей в Ethereum +4. При кворуме: информация добавляется в блокчейн +5. Синхронизация во все цепочки +6. Результат: таблица удаляется из приложения +``` + +### **7. КЛЮЧЕВЫЕ ПРИНЦИПЫ:** + +#### **Безопасность:** +``` +- Только токен-холдеры управляют +- Проверка баланса при каждой операции +- Кворум мультиподписей +- Синхронизация между цепочками +``` + +#### **Масштабируемость:** +``` +- Модульная архитектура +- Добавление новых функций через модули +- Поддержка новых цепочек +- Иерархическое голосование +``` + +#### **Универсальность:** +``` +- Один адрес во всех цепочках +- Любая цепочка для создания предложений +- Единый интерфейс управления +- Совместимость с существующими стандартами +``` + +--- + +## 🎯 ОСНОВНАЯ КОНЦЕПЦИЯ + +### Один смарт-контракт с модулями +``` +DLE.sol (Основной контракт) + Модули (добавляемые через голосование) +``` + +### Ключевые принципы: +1. **Один основной контракт** - управление токенами, голосованием, мультиподписью +2. **Модули** - специализированные функции (казначейство, иерархическое голосование, коммуникации) +3. **Только токен-холдеры** - никаких админских ролей +4. **Кворум мультиподписей** - все решения через коллективное голосование +5. **Проверка баланса** - при каждой операции + +--- + +## 🏗️ АРХИТЕКТУРА СИСТЕМЫ + +### Основной контракт DLE.sol +``` +DLE.sol +├── ERC-20 токены (голосующая сила) +├── Настраиваемый кворум (% от общего количества токенов) +├── Система голосования (проверка баланса токенов) +├── Выбор цепочки для кворума (governanceChainId) +├── Синхронизация голосов между цепочками +├── Поддержка множественных цепочек +├── Мультиподпись (через токен-холдеров) +├── Мультичейн синхронизация +└── Система модулей (добавление/управление) +``` + +### Модули (отдельные контракты) +``` +Модули +├── TreasuryModule.sol (Казначейство) +├── HierarchicalVotingModule.sol (Иерархическое голосование) +├── CommunicationModule.sol (Сообщения/звонки) +├── ExternalDLEModule.sol (Меж-DLE взаимодействие) +└── CustomModule.sol (Пользовательские модули) +``` + +--- + +## 📋 ФУНКЦИОНАЛЬНЫЕ ТРЕБОВАНИЯ + +### 1. Основной контракт DLE.sol ✅ +- **ERC-20 токены** - голосующая сила = количество токенов +- **Настраиваемый кворум** - процент от общего количества токенов +- **Система голосования** - только токен-холдеры участвуют +- **Выбор цепочки для кворума** - токен-холдер может выбрать любую поддерживаемую цепочку +- **Синхронизация голосов** - после голосования результаты синхронизируются между цепочками +- **Поддержка множественных цепочек** - Ethereum, Polygon, BSC и др. +- **Мультиподпись** - через токен-холдеров с проверкой баланса +- **Мультичейн синхронизация** - одинаковый адрес во всех цепочках +- **Управление модулями** - добавление/удаление через голосование + +### 2. TreasuryModule.sol ✅ +- **Внесение токенов** - в казну через голосование +- **Вывод токенов** - из казны через голосование +- **Распределение дивидендов** - через голосование +- **Бюджетирование** - через предложения + +### 3. HierarchicalVotingModule.sol ✅ +- **Владение токенами других DLE** - покупка/продажа токенов +- **Создание предложений** - для голосования в других DLE +- **Внутреннее голосование** - кворум внутри DLE для внешнего голосования +- **Внешнее голосование** - участие в голосованиях других DLE + +### 4. CommunicationModule.sol ✅ +- **Прием сообщений** - от токен-холдеров +- **Прием звонков** - аудио/видео коммуникации +- **История коммуникаций** - хранение и синхронизация +- **Кворум для действий** - голосование за коммуникационные операции + +### 5. ExternalDLEModule.sol ✅ +- **Меж-DLE взаимодействие** - управление DLE B через приложение DLE A +- **Встраивание интерфейсов** - безопасное управление +- **Проверка прав** - через мультиподпись +- **Аудит действий** - отслеживание операций + +### 6. Мульти-чейн архитектура ✅ +- **CREATE2 деплой** - одинаковый адрес во всех цепочках +- **Синхронизация состояния** - токены, предложения, голосования +- **Создание предложений** - в любой цепочке +- **Голосование** - в любой цепочке с синхронизацией + +--- + +## 🔒 БЕЗОПАСНОСТЬ + +### Основные принципы безопасности: +1. **Только токен-холдеры** - никаких админских ролей +2. **Проверка баланса** - при каждой операции +3. **Кворум мультиподписей** - все решения коллективные +4. **Простая логика** - минимум уязвимостей + +### Защита от атак: + +#### **1. Защита от Double-Spending** +```solidity +function signOperation(bytes32 _operationHash) external { + require(!hasSigned[_operationHash][msg.sender], "Already signed"); + require(balanceOf(msg.sender) > 0, "No tokens to sign"); + + hasSigned[_operationHash][msg.sender] = true; + signatures[_operationHash] += balanceOf(msg.sender); +} +``` + +#### **2. Защита от Reentrancy** +```solidity +mapping(address => bool) private _locked; + +modifier nonReentrant() { + require(!_locked[msg.sender], "Reentrant call"); + _locked[msg.sender] = true; + _; + _locked[msg.sender] = false; +} +``` + +#### **3. Защита от Манипуляций** +```solidity +mapping(uint256 => uint256) public proposalSnapshots; + +function createProposal(string memory _description) external returns (uint256) { + require(balanceOf(msg.sender) > 0, "Must hold tokens"); + + uint256 proposalId = proposalCount++; + proposalSnapshots[proposalId] = block.number; + + return proposalId; +} + +function vote(uint256 _proposalId, bool _support) external { + uint256 votingPower = balanceOfAt(msg.sender, proposalSnapshots[_proposalId]); + require(votingPower > 0, "No voting power"); + + // Голосование +} +``` + +--- + +## 🔧 ТЕХНИЧЕСКАЯ РЕАЛИЗАЦИЯ + +### Основной контракт DLE.sol +```solidity +contract DLE is ERC20, ReentrancyGuard { + // Настройки + uint256 public quorumPercentage; + mapping(address => bool) public activeModules; + + // Мульти-чейн + mapping(uint256 => bool) public supportedChains; + mapping(uint256 => uint256) public chainBalances; + + // Предложения и голосования + mapping(uint256 => Proposal) public proposals; + mapping(uint256 => mapping(address => bool)) public hasVoted; + + // Модули + mapping(bytes32 => address) public modules; + + constructor( + string memory _name, + string memory _symbol, + uint256 _initialSupply, + uint256 _quorumPercentage + ) ERC20(_name, _symbol) { + quorumPercentage = _quorumPercentage; + _mint(msg.sender, _initialSupply); + } + + // Создание предложения + function createProposal(string memory _description, uint256 _duration) external returns (uint256) { + require(balanceOf(msg.sender) > 0, "Must hold tokens"); + + uint256 proposalId = proposalCount++; + proposals[proposalId] = Proposal({ + id: proposalId, + description: _description, + forVotes: 0, + againstVotes: 0, + executed: false, + deadline: block.timestamp + _duration + }); + + return proposalId; + } + + // Голосование + function vote(uint256 _proposalId, bool _support) external { + Proposal storage proposal = proposals[_proposalId]; + require(block.timestamp < proposal.deadline, "Voting ended"); + require(!proposal.executed, "Already executed"); + require(!hasVoted[_proposalId][msg.sender], "Already voted"); + + uint256 votingPower = balanceOf(msg.sender); + require(votingPower > 0, "No tokens to vote"); + + hasVoted[_proposalId][msg.sender] = true; + + if (_support) { + proposal.forVotes += votingPower; + } else { + proposal.againstVotes += votingPower; + } + } + + // Добавление модуля + function addModule(bytes32 _moduleId, address _moduleAddress) external { + require(checkProposalResult(getLastProposalId()).passed, "Proposal not passed"); + + modules[_moduleId] = _moduleAddress; + activeModules[_moduleAddress] = true; + + emit ModuleAdded(_moduleId, _moduleAddress); + } +} +``` + +### Модуль казначейства TreasuryModule.sol +```solidity +contract TreasuryModule { + DLE public dle; + uint256 public treasuryBalance; + + constructor(address _dle) { + dle = DLE(_dle); + } + + function depositToTreasury(uint256 _amount) external { + require(dle.balanceOf(msg.sender) >= _amount, "Insufficient balance"); + require(dle.transferFrom(msg.sender, address(this), _amount), "Transfer failed"); + + treasuryBalance += _amount; + emit TreasuryDeposit(msg.sender, _amount); + } + + function withdrawFromTreasury(address _recipient, uint256 _amount) external { + require(dle.checkProposalResult(getTreasuryProposalId()).passed, "Proposal not passed"); + require(_amount <= treasuryBalance, "Insufficient treasury"); + + treasuryBalance -= _amount; + require(dle.transfer(_recipient, _amount), "Transfer failed"); + + emit TreasuryWithdrawal(_recipient, _amount); + } +} +``` + +### Модуль иерархического голосования HierarchicalVotingModule.sol +```solidity +contract HierarchicalVotingModule { + DLE public dle; + mapping(address => uint256) public externalDLEBalances; + mapping(uint256 => ExternalVotingProposal) public externalVotingProposals; + + struct ExternalVotingProposal { + address targetDLE; + uint256 targetProposalId; + bool support; + string reason; + bool executed; + uint256 internalProposalId; + } + + constructor(address _dle) { + dle = DLE(_dle); + } + + function buyTokensFromOtherDLE(address _otherDLE, uint256 _amount) external { + require(dle.balanceOf(msg.sender) > 0, "Must hold DLE tokens"); + require(_amount > 0, "Amount must be positive"); + + require(dle.transferFrom(msg.sender, address(this), _amount), "Transfer failed"); + externalDLEBalances[_otherDLE] += _amount; + + emit ExternalDLEInvestment(_otherDLE, _amount); + } + + function createExternalVotingProposal( + address _targetDLE, + uint256 _targetProposalId, + bool _support, + string memory _reason + ) external returns (uint256) { + require(dle.balanceOf(msg.sender) > 0, "Must hold DLE tokens"); + require(externalDLEBalances[_targetDLE] > 0, "No tokens in target DLE"); + + string memory description = string(abi.encodePacked( + "Vote in DLE ", _targetDLE, " on proposal ", _targetProposalId.toString() + )); + + uint256 internalProposalId = dle.createProposal(description, 7 days); + + uint256 proposalId = externalProposalCount++; + externalVotingProposals[proposalId] = ExternalVotingProposal({ + targetDLE: _targetDLE, + targetProposalId: _targetProposalId, + support: _support, + reason: _reason, + executed: false, + internalProposalId: internalProposalId + }); + + return proposalId; + } + + function executeExternalVote(uint256 _proposalId) external { + ExternalVotingProposal storage proposal = externalVotingProposals[_proposalId]; + require(!proposal.executed, "Already executed"); + + (bool passed, bool quorumReached) = dle.checkProposalResult(proposal.internalProposalId); + require(passed && quorumReached, "Internal proposal not passed"); + + uint256 votingPower = externalDLEBalances[proposal.targetDLE]; + + emit ExternalDLEVote(proposal.targetDLE, proposal.targetProposalId, proposal.support, votingPower); + + proposal.executed = true; + } +} +``` + +--- + +## 🌐 МУЛЬТИ-ЧЕЙН АРХИТЕКТУРА + +### Мульти-чейн функциональность +```solidity +// Создание предложения с выбором цепочки для кворума +function createProposal( + string memory _description, + uint256 _duration, + uint256 _governanceChainId +) external returns (uint256); + +// Синхронизация голосов между цепочками +function syncVoteFromChain( + uint256 _proposalId, + uint256 _fromChainId, + uint256 _forVotes, + uint256 _againstVotes, + bytes memory _proof +) external; + +// Проверка поддерживаемых цепочек +function isChainSupported(uint256 _chainId) external view returns (bool); +``` + +### Синхронизация между цепочками +```solidity +// Синхронизация токенов +function syncTokenBalance( + address holder, + uint256 balance, + uint256 fromChainId +) external; + +// Синхронизация предложений +function syncProposal( + uint256 proposalId, + Proposal memory proposal, + uint256 fromChainId +) external; + +// Синхронизация голосов +function syncVote( + uint256 proposalId, + address voter, + bool support, + uint256 fromChainId +) external; +``` + +--- + +## ⚠️ ПРОБЛЕМЫ ДОСТУПНОСТИ ЦЕПОЧЕК + +### **Сценарий: Из 4 цепочек доступны только 2** + +#### **1. Проблема при деплое:** +``` +Планируемый деплой: Ethereum, Polygon, BSC, Arbitrum +Доступные цепочки: Ethereum, Polygon +Недоступные: BSC, Arbitrum (ошибка подключения/интернет) +``` + +#### **2. Проблема при синхронизации:** +``` +Исполнение в Ethereum → Синхронизация в остальные цепочки +✅ Polygon: синхронизация успешна +❌ BSC: ошибка подключения +❌ Arbitrum: нет интернета +``` + +### **ПРОСТОЕ И БЕЗОПАСНОЕ РЕШЕНИЕ:** + +#### **Принцип: 100% или ничего** +``` +Перед любым действием: +1. ✅ Проверить все подключения +2. ✅ Убедиться в доступности всех цепочек +3. ✅ Выполнить операцию на 100% +4. ❌ При любом сбое - отменить всё с указанием причины +``` + +#### **1. Проверка подключений перед деплоем** +```solidity +contract DLE is ERC20, ReentrancyGuard { + // Статус проверки цепочек + mapping(uint256 => bool) public chainConnectionStatus; + + // События + event PreDeployCheckStarted(uint256[] chainIds); + event PreDeployCheckCompleted(bool allChainsAvailable, string[] unavailableChains); + event DeployCancelled(string reason); + + /** + * @dev Проверить подключения перед деплоем + */ + function checkAllConnections(uint256[] memory _chainIds) external returns (bool) { + require(balanceOf(msg.sender) > 0, "Must hold tokens"); + + emit PreDeployCheckStarted(_chainIds); + + bool allAvailable = true; + string[] memory unavailableChains = new string[](_chainIds.length); + uint256 unavailableCount = 0; + + for (uint256 i = 0; i < _chainIds.length; i++) { + bool isAvailable = checkChainConnection(_chainIds[i]); + chainConnectionStatus[_chainIds[i]] = isAvailable; + + if (!isAvailable) { + allAvailable = false; + unavailableChains[unavailableCount] = getChainName(_chainIds[i]); + unavailableCount++; + } + } + + emit PreDeployCheckCompleted(allAvailable, unavailableChains); + + if (!allAvailable) { + string memory reason = string(abi.encodePacked( + "Deploy cancelled: Chains unavailable - ", + joinStrings(unavailableChains, unavailableCount) + )); + emit DeployCancelled(reason); + } + + return allAvailable; + } + + /** + * @dev Проверить подключение к конкретной цепочке + */ + function checkChainConnection(uint256 _chainId) internal view returns (bool) { + // Здесь должна быть реальная проверка подключения + // Для примера используем простую проверку + return _chainId > 0 && _chainId <= 999999; + } + + /** + * @dev Получить название цепочки + */ + function getChainName(uint256 _chainId) internal pure returns (string memory) { + if (_chainId == 1) return "Ethereum"; + if (_chainId == 137) return "Polygon"; + if (_chainId == 56) return "BSC"; + if (_chainId == 42161) return "Arbitrum"; + return "Unknown"; + } +} +``` + +#### **2. Проверка перед синхронизацией** +```solidity +contract DLE is ERC20, ReentrancyGuard { + /** + * @dev Проверить все цепочки перед синхронизацией + */ + function checkSyncReadiness(uint256 _proposalId) external returns (bool) { + require(balanceOf(msg.sender) > 0, "Must hold tokens"); + + Proposal storage proposal = proposals[_proposalId]; + require(proposal.id == _proposalId, "Proposal does not exist"); + + // Проверяем все поддерживаемые цепочки + bool allChainsReady = true; + string[] memory unavailableChains = new string[](supportedChainIds.length); + uint256 unavailableCount = 0; + + for (uint256 i = 0; i < supportedChainIds.length; i++) { + uint256 chainId = supportedChainIds[i]; + bool isReady = checkChainConnection(chainId); + + if (!isReady) { + allChainsReady = false; + unavailableChains[unavailableCount] = getChainName(chainId); + unavailableCount++; + } + } + + if (!allChainsReady) { + string memory reason = string(abi.encodePacked( + "Sync cancelled: Chains unavailable - ", + joinStrings(unavailableChains, unavailableCount) + )); + emit SyncCancelled(_proposalId, reason); + } + + return allChainsReady; + } + + /** + * @dev Синхронизация только при 100% готовности + */ + function syncToAllChains(uint256 _proposalId) external { + require(checkSyncReadiness(_proposalId), "Not all chains ready"); + + // Выполняем синхронизацию во все цепочки + for (uint256 i = 0; i < supportedChainIds.length; i++) { + uint256 chainId = supportedChainIds[i]; + syncToChain(_proposalId, chainId); + } + + emit SyncCompleted(_proposalId, supportedChainIds); + } +} +``` + +#### **3. Проверка перед голосованием** +```solidity +contract DLE is ERC20, ReentrancyGuard { + /** + * @dev Проверить цепочку перед голосованием + */ + function checkVotingChain(uint256 _chainId) external returns (bool) { + require(balanceOf(msg.sender) > 0, "Must hold tokens"); + + bool isAvailable = checkChainConnection(_chainId); + + if (!isAvailable) { + string memory reason = string(abi.encodePacked( + "Voting cancelled: Chain ", + getChainName(_chainId), + " unavailable" + )); + emit VotingCancelled(reason); + } + + return isAvailable; + } + + /** + * @dev Создать предложение только при доступности цепочки + */ + function createProposalWithChainCheck( + string memory _description, + uint256 _duration, + uint256 _votingChainId + ) external returns (uint256) { + require(checkVotingChain(_votingChainId), "Voting chain not available"); + + return createProposal(_description, _duration, _votingChainId); + } +} +``` + +### **СТРАТЕГИИ ОБРАБОТКИ:** + +#### **1. При деплое (проверка всех цепочек):** +``` +Планируемый деплой: Ethereum, Polygon, BSC, Arbitrum + +Проверка: +✅ Ethereum: доступен +✅ Polygon: доступен +❌ BSC: недоступен +❌ Arbitrum: недоступен + +Результат: +❌ Деплой ОТМЕНЕН +📋 Причина: "BSC, Arbitrum недоступны" +🔔 Уведомление токен-холдеров +``` + +#### **2. При синхронизации (проверка всех цепочек):** +``` +Исполнение в Ethereum → Синхронизация + +Проверка: +✅ Ethereum: доступен +✅ Polygon: доступен +❌ BSC: недоступен +❌ Arbitrum: недоступен + +Результат: +❌ Синхронизация ОТМЕНЕНА +📋 Причина: "BSC, Arbitrum недоступны" +🔔 Уведомление токен-холдеров +``` + +#### **3. При голосовании (проверка выбранной цепочки):** +``` +Планируемое голосование: Polygon + +Проверка: +❌ Polygon: недоступен + +Результат: +❌ Голосование ОТМЕНЕНО +📋 Причина: "Polygon недоступен" +🔔 Уведомление токен-холдеров +``` + +### **ПРИМЕРЫ СЦЕНАРИЕВ:** + +#### **Сценарий 1: Деплой с проблемами** +``` +Планируемый деплой: 4 цепочки + +Проверка подключений: +✅ Ethereum: доступен +✅ Polygon: доступен +❌ BSC: ошибка подключения +❌ Arbitrum: нет интернета + +Действия: +1. ❌ Деплой ОТМЕНЕН +2. 📋 Причина: "BSC, Arbitrum недоступны" +3. 🔔 Уведомление токен-холдеров +4. ⏰ Ожидание восстановления подключений +5. 🔄 Повторная проверка при восстановлении +``` + +#### **Сценарий 2: Синхронизация с проблемами** +``` +Исполнение в Ethereum → Синхронизация + +Проверка всех цепочек: +✅ Ethereum: доступен +✅ Polygon: доступен +❌ BSC: ошибка подключения +❌ Arbitrum: нет интернета + +Действия: +1. ❌ Синхронизация ОТМЕНЕНА +2. 📋 Причина: "BSC, Arbitrum недоступны" +3. 🔔 Уведомление токен-холдеров +4. ⏰ Ожидание восстановления подключений +5. 🔄 Повторная проверка при восстановлении +``` + +#### **Сценарий 3: Голосование с проблемами** +``` +Планируемое голосование: Polygon + +Проверка Polygon: +❌ Polygon: недоступен + +Действия: +1. ❌ Голосование ОТМЕНЕНО +2. 📋 Причина: "Polygon недоступен" +3. 🔔 Уведомление токен-холдеров +4. ⏰ Ожидание восстановления подключения +5. 🔄 Повторная проверка при восстановлении +``` + +### **ПРЕИМУЩЕСТВА ПРОСТОГО РЕШЕНИЯ:** + +#### **✅ Безопасность:** +- Никаких частичных операций +- Никаких рассинхронизаций +- Четкие причины отмены + +#### **✅ Простота:** +- Понятная логика +- Минимум кода +- Легко отлаживать + +#### **✅ Надежность:** +- 100% или ничего +- Предсказуемое поведение +- Нет скрытых состояний + +#### **✅ Прозрачность:** +- Четкие причины отмены +- Уведомления токен-холдеров +- Понятная логика + +### **КЛЮЧЕВЫЕ ПРИНЦИПЫ:** + +#### **1. Проверка перед действием:** +``` +Любое действие = Проверка всех подключений → Выполнение или Отмена +``` + +#### **2. 100% или ничего:** +``` +Все цепочки доступны → Выполнить +Любая цепочка недоступна → Отменить с причиной +``` + +#### **3. Четкие причины:** +``` +Отмена = Конкретная причина + Уведомление токен-холдеров +``` + +#### **4. Простота восстановления:** +``` +Проблема решена → Повторная проверка → Выполнение +``` + +**Теперь система DLE работает по принципу "100% или ничего" - просто, безопасно и надежно!** + +--- + +## 📊 ПРИМЕРЫ ИСПОЛЬЗОВАНИЯ + +### Пример 1: Деплой в 4 цепочках +``` +1. Пользователь выбирает 4 цепочки: Ethereum, Polygon, BSC, Arbitrum +2. Деплой DLE в каждой цепочке с одинаковым адресом +3. Партнеры получают по 1000 токенов в каждой цепочке: + - Партнер A: 1000 токенов (в 4 цепочках) + - Партнер B: 1000 токенов (в 4 цепочках) + - Партнер C: 1000 токенов (в 4 цепочках) +4. Передача токенов синхронизируется между всеми цепочками +``` + +### Пример 2: Создание предложения и сбор подписей +``` +1. Партнер A создает предложение "Передать 100 токенов от A к C" +2. Выбирает одну цепочку (например, Polygon) для сбора подписей +3. Сбор подписей происходит только в выбранной цепочке +4. Кворум: 60% от 3000 = 1800 токенов +5. При достижении кворума - исполнение в Polygon +6. Синхронизация исполнения во все остальные цепочки +``` + +### Пример 3: Исполнение и синхронизация +``` +1. Кворум достигнут в Polygon (1800+ токенов) +2. Исполнение в Polygon: A → C (100 токенов) +3. Синхронизация в Ethereum: A → C (100 токенов) +4. Синхронизация в BSC: A → C (100 токенов) +5. Синхронизация в Arbitrum: A → C (100 токенов) +6. Результат: токены переданы во всех 4 цепочках +``` + +### Пример 4: Удаление таблицы в приложении +``` +1. Партнер A создает предложение "Удалить таблицу пользователей" +2. Выбирает Ethereum для сбора подписей +3. Кворум достигнут в Ethereum +4. Исполнение в Ethereum: информация добавляется в блокчейн +5. Синхронизация во все цепочки: информация добавляется везде +6. Результат: таблица удаляется из приложения +``` + +--- + +## 🎯 ПРЕИМУЩЕСТВА АРХИТЕКТУРЫ + +### ✅ Простота +- Один основной контракт с модулями +- Только токен-холдеры участвуют в управлении +- Проверка баланса при каждой операции +- Настраиваемый кворум для всех решений + +### ✅ Безопасность +- Никаких админских ролей +- Простая логика мультиподписи +- Защита от основных атак +- Прозрачность всех операций + +### ✅ Масштабируемость +- Модульная архитектура +- Добавление новых функций через модули +- Мульти-чейн синхронизация +- Иерархическое голосование + +### ✅ Универсальность +- Один адрес во всех цепочках +- Любая цепочка для создания предложений +- Единый интерфейс управления +- Совместимость с существующими стандартами + +--- + +## 📈 ЗАКЛЮЧЕНИЕ + +**DLE - это единый смарт-контракт с модульной архитектурой, который:** + +1. **Управляется только токен-холдерами** через кворум мультиподписей +2. **Проверяет баланс токенов** при каждой операции +3. **Использует модули** для специализированных функций +4. **Синхронизируется между цепочками** с одинаковым адресом +5. **Поддерживает иерархическое голосование** через отдельный модуль + +**Ключевые принципы:** +- Простота и безопасность +- Коллективное управление +- Модульная архитектура +- Мульти-чейн синхронизация + +**Результат:** Безопасная, масштабируемая и универсальная система DLE! 🚀 \ No newline at end of file diff --git a/docs/DLE_MANAGEMENT_TASKS.md b/docs/DLE_MANAGEMENT_TASKS.md index 9b602a2..67d373e 100644 --- a/docs/DLE_MANAGEMENT_TASKS.md +++ b/docs/DLE_MANAGEMENT_TASKS.md @@ -1,3 +1,15 @@ + + # Детальный план задач: Управление Digital Legal Entity (DLE) ## Общие принципы разработки diff --git a/docs/ENCRYPTION_GUIDE.md b/docs/ENCRYPTION_GUIDE.md index faea825..c5a7ca4 100644 --- a/docs/ENCRYPTION_GUIDE.md +++ b/docs/ENCRYPTION_GUIDE.md @@ -1,3 +1,15 @@ + + # 🔐 Полное шифрование всех таблиц в DLE ## 📋 Обзор diff --git a/docs/MIGRATION_GUIDE.md b/docs/MIGRATION_GUIDE.md index fa5fcf7..a85d70f 100644 --- a/docs/MIGRATION_GUIDE.md +++ b/docs/MIGRATION_GUIDE.md @@ -1,3 +1,15 @@ + + # 🔄 Перенос зашифрованных данных между серверами ## 📋 Обзор diff --git a/docs/SMART_CONTRACTS.md b/docs/SMART_CONTRACTS.md index 54fb5e5..60abbd0 100644 --- a/docs/SMART_CONTRACTS.md +++ b/docs/SMART_CONTRACTS.md @@ -1,61 +1,91 @@ + + # Смарт Контракты Digital Legal Entity (DLE) ## Основной смарт контракт DLE ### Концепция -Адрес смарт контракта одновременно выполняет функции банковского счета и контактных данных (как email/телефонный номер). +**Один смарт-контракт** с ERC-20 токенами, настраиваемым кворумом, мультиподписью и модулями. Адрес контракта одновременно выполняет функции банковского счета и контактных данных. + +### Архитектура +``` +DLE.sol (Один контракт) +├── ERC-20 токены (голосующая сила) +├── Настраиваемый кворум (% от общего количества токенов) +├── Система голосования (проверка баланса токенов) +├── Мультиподпись (через токен-холдеров) +├── Модули (добавляемые через голосование) +└── Мультичейн синхронизация +``` ### Требования -#### 1. Токен управления -- Пользователь заполняет форму в приложении для ручного деплоя -- Токен дает права голоса держателям -токен передается только через кворум мультиподписей +#### 1. Токен управления (ERC-20) +- **Описание**: Стандартный ERC-20 токен для управления DLE +- **Функции**: + - Минтинг токенов при создании DLE + - Распределение токенов между участниками + - **Голосующая сила = количество токенов** + - Проверка баланса токенов при каждой операции -#### 2. Казначейские функции -- Управление финансами через голосование токен-холдеров -- Мультиподпись токен-холдеров для выполнения транзакций (проверка баланса) -- Функции банковского счета -- НЕТ админских ролей - все через коллективное голосование +#### 2. Настраиваемый кворум +- **Описание**: Процент от общего количества токенов для принятия решений +- **Функции**: + - Настройка кворума при создании DLE + - Изменение кворума через голосование + - Расчет кворума: `(totalSupply * quorumPercentage) / 100` + - Проверка достижения кворума для каждого решения -#### 3. Система голосования с мультиподписью -- Голосование за деплой дополнительных смарт контрактов через мультиподпись -- Кворум подписей токен-холдеров для принятия решений (проверка баланса) -- Токен-холдеры управляют всеми операциями через систему подписей -- Настраиваемые таймлоки для каждого предложения -- НЕТ админских ролей - только коллективное управление +#### 3. Система голосования через токен-холдеров +- **Описание**: Только владельцы токенов участвуют в управлении +- **Функции**: + - Создание предложений (любым токен-холдером) + - Голосование пропорционально балансу токенов + - Проверка баланса токенов при каждой подписи + - Выполнение предложений после достижения кворума + - **НЕТ админских ролей - только коллективное управление** -#### 4. Система настраиваемых таймлоков (отдельный модуль) -- **Архитектура**: Отдельный контракт TimelockController, создаваемый при деплое DLE -- **Настройки при деплое**: - - Минимальная задержка таймлока (настраиваемая) - - Максимальная задержка таймлока (настраиваемая) - - Задержка по умолчанию (настраиваемая) - - Возможность настройки индивидуальной задержки для каждого предложения -- **Функции модуля**: - - Инициатор предложения устанавливает индивидуальную задержку - - Динамическое изменение параметров таймлока через голосование - - Отмена предложений до истечения таймлока - - Выполнение предложений после истечения таймлока -- **Пример параметров**: 1 день задержки, 7 дней голосования, 2 дня timelock +#### 4. Мультиподпись через токен-холдеров +- **Описание**: Система подписей для критических операций +- **Функции**: + - Подписание операций токен-холдерами + - Проверка баланса токенов при подписи + - Сбор подписей до достижения кворума + - Выполнение операций после сбора подписей -#### 5. Модульная система -- Настройка отдельных модулей с формами в приложении -- Деплой дополнительных смарт контрактов через голосование -- Расширяемость функционала +#### 5. Казначейские функции +- **Описание**: Управление финансами DLE через голосование +- **Функции**: + - Внесение токенов в казну + - Вывод токенов из казны через голосование + - Распределение дивидендов + - Бюджетирование через предложения -#### 6. Коммуникационные функции -- Прием сообщений от криптокошельков и смарт контрактов -- Прием звонков (аудио/видео) от владельцев кошельков -- Адрес контракта = универсальный контакт (как email/телефон) -- Кворум мультиподписей токен-холдеров для приема звонков и отправки сообщений -- НЕТ админских ролей - все через коллективное голосование +#### 6. Модульная система +- **Описание**: Добавление новых функций через модули +- **Функции**: + - Добавление модулей через голосование + - Управление модулями через голосование + - Изоляция модулей от основного контракта + - Обновление модулей через голосование -#### 7. Функции акционерного общества -- Права голоса пропорционально токенам -- Управление через коллективные решения токен-холдеров -- Прозрачность всех операций -- НЕТ единичных администраторов - только коллективное управление через кворум подписей +#### 7. Коммуникационные функции +- **Описание**: Прием сообщений и звонков +- **Функции**: + - Прием текстовых сообщений + - Прием аудио/видео звонков + - Кворум для коммуникационных действий + - Хранение истории коммуникаций ### Иерархическая система голосования DLE @@ -123,7 +153,7 @@ function DLEBManagementInterface({ dleBAddress }) { ### Технические требования - Один адрес = универсальная точка входа -- Безопасность мультиподписи +- Безопасность мультиподписи через токен-холдеров - Масштабируемость через модули - Поддержка аудио/видео коммуникации - Совместимость с существующими стандартами (ERC-20, ERC-721) @@ -149,22 +179,11 @@ DLE должен функционировать в нескольких блок - Все операции с токенами только через мультиподпись и кворум - Защита от double-spending и рассинхронизации -#### 3. Cross-chain система голосования -- Возможность выбора сети для инициации голосования -- Кворум рассчитывается по токенам в выбранной сети -- Результаты голосования синхронизируются во все сети -- Выполнение решений может происходить в любой из развернутых сетей - -#### 4. Cross-chain синхронизация операций -- Функция связывания операций между сетями -- Атомарное выполнение операций во всех целевых сетях -- Система откатов при сбоях в одной из сетей -- Таймауты и fallback механизмы - #### 3. Single-Chain Governance система - Инициатор предложения выбирает ОДНУ сеть для голосования - Все токен-холдеры участвуют в мультиподписи только в выбранной сети - Инициатор устанавливает таймлок для предложения +- Проверка балансов токен-холдеров при подписании - Исполнение решения происходит во всех целевых сетях #### 4. Упрощенная cross-chain архитектура @@ -180,38 +199,13 @@ DLE должен функционировать в нескольких блок - Возможность добавления новых сетей после первоначального деплоя ### Поддерживаемые сети -- деинамическое и только те которые добавлены в таблицу rpc провайдеров +- Динамическое добавление сетей через таблицу RPC провайдеров ### Архитектура синхронизации -#### Cross-Chain операции +#### Single-Chain Governance операции ```solidity -contract DLE_CrossChainSync { - struct CrossChainOperation { - uint256[] targetChains; // Целевые сети для выполнения - bytes[] callData; // Данные для выполнения - uint256 executedChains; // Количество выполненных сетей - bool isCompleted; // Статус завершения - uint256 timeout; // Время истечения операции - } - - function executeMultiChainOperation(bytes32 operationId, uint256 chainId) external; - function syncTokenOperation(address[] holders, uint256[] amounts, uint256[] chains) external; -} -``` - -#### Типы синхронизируемых операций -- **Передача токенов** между партнерами -- **Минтинг новых токенов** для новых участников -- **Сжигание токенов** при выходе участников -- **Изменение прав доступа** и ролей -- **Выполнение решений голосования** - -### Упрощенная архитектура governance - -#### Single-Chain Governance контракт -```solidity -contract DLE_Governance { +contract DLE_SingleChainGovernance { struct Proposal { bytes operation; // Операция для выполнения uint256[] targetChains; // Целевые сети для исполнения @@ -240,20 +234,6 @@ contract DLE_Governance { - **Emergency действия** - пауза, разморозка, восстановление - **Модульные операции** - добавление/удаление функциональности -### Безопасность мульти-чейн операций - -#### Требования к безопасности -- Кворум для cross-chain операций не менее 67% -- Подтверждение операций в нескольких блоках (минимум 12) -- Система откатов при сбоях синхронизации -- Мониторинг состояния во всех сетях - -#### Механизмы защиты -- **Timelock для критических операций** - задержка выполнения -- **Emergency pause** - остановка операций при обнаружении проблем -- **Fallback сеть** - резервная сеть при сбоях основной -- **Валидация состояния** - проверка консистентности данных - ### Безопасность Single-Chain Governance #### Требования к безопасности @@ -289,13 +269,6 @@ contract DLE_Governance { - Отображение прогресса сбора подписей - Статус исполнения в целевых сетях -### Технические требования мульти-чейн -- Детерминистический деплой через CREATE2 -- Синхронизация состояния между сетями -- Защита от MEV-атак при cross-chain операциях -- Оптимизация газа для массовых операций -- Поддержка различных bridge протоколов - ### Технические требования упрощенной архитектуры - Детерминистический деплой через CREATE2 - Single-chain governance для безопасности @@ -326,8 +299,6 @@ ERC-4337 предоставляет стандартную инфраструк ### Варианты технической реализации - - #### Вариант 1: Собственный контракт + ERC-4337 **Создание собственного DLE контракта с использованием компонентов ERC-4337** @@ -346,7 +317,6 @@ ERC-4337 предоставляет стандартную инфраструк └── Multi-Chain Execution ``` - ### Лицензия ERC-4337 ERC-4337 распространяется под лицензией **CC0** (Public Domain), что означает полную свободу использования. diff --git a/docs/TECHNICAL_SPECIFICATION.md b/docs/TECHNICAL_SPECIFICATION.md deleted file mode 100644 index 5743f9c..0000000 --- a/docs/TECHNICAL_SPECIFICATION.md +++ /dev/null @@ -1,429 +0,0 @@ -# Техническое задание: Digital Legal Entity (DLE) - -## 1. Общие сведения - -### 1.1 Назначение системы -Создание смарт-контракта DLE (Digital Legal Entity) - универсальной цифровой юридической сущности, которая объединяет функции акционерного общества, банковского счета и контактных данных в одном адресе блокчейна. - -### 1.2 Цель разработки -Разработка безопасного, масштабируемого и функционального смарт-контракта для токенизации акционерных обществ с поддержкой иерархического управления и коммуникационных функций. - -### 1.3 Технический подход -Использование готовых проаудированных компонентов (OpenZeppelin, ERC-4337) с добавлением уникальной бизнес-логики DLE. - -## 2. Функциональные требования - -### 2.1 Основные функции DLE - -#### 2.1.1 Токен управления -- **Описание**: ERC-20 токен для управления DLE -- **Функции**: - - Минтинг токенов при создании DLE - - Распределение токенов между участниками - - Делегирование голосов - - Проверка баланса токенов - -#### 2.1.2 Система голосования с мультиподписью -- **Описание**: Система принятия решений через кворум подписей токен-холдеров -- **Функции**: - - Создание предложений (любым токен-холдером) - - Сбор подписей от токен-холдеров (проверка баланса токенов) - - Проверка кворума подписей (% от общего количества токенов) - - Выполнение предложений после достижения кворума - - Динамический выбор governance сети при создании предложения - - Динамическая настройка таймлока для каждого предложения -- **Принцип**: НЕТ админских ролей - ВСЕ управление через токен-холдеров - -#### 2.1.3 Настраиваемые таймлоки -- **Описание**: Система задержек для каждого предложения через отдельный модуль TimelockController -- **Архитектура**: Отдельный контракт TimelockController, создаваемый при деплое DLE -- **Параметры**: - - Минимальная задержка таймлока (настраиваемая при деплое) - - Максимальная задержка таймлока (настраиваемая при деплое) - - Задержка по умолчанию (настраиваемая при деплое) - - Возможность настройки индивидуальной задержки для каждого предложения -- **Функции**: - - Инициатор предложения устанавливает индивидуальную задержку - - Динамическое изменение параметров таймлока через голосование - - Отмена предложений до истечения таймлока - - Выполнение предложений после истечения таймлока - -#### 2.1.4 Казначейские функции -- **Описание**: Управление финансами DLE -- **Функции**: - - Прием и отправка криптовалют - - Управление токенами - - Распределение дивидендов - - Бюджетирование - -#### 2.1.5 Коммуникационные функции -- **Описание**: Прием сообщений и звонков -- **Функции**: - - Прием текстовых сообщений - - Прием аудио/видео звонков - - Кворум для коммуникационных действий - - Хранение истории коммуникаций - -#### 2.1.6 Модульная система -- **Описание**: Расширяемая архитектура -- **Функции**: - - Добавление новых модулей - - Управление модулями через голосование - - Изоляция модулей - - Обновление модулей - -### 2.2 Иерархическая система голосования - -#### 2.2.1 Меж-DLE взаимодействие -- **Описание**: DLE может владеть токенами других DLE -- **Функции**: - - Проверка владения токенами других DLE - - Сбор кворума подписей для внешнего голосования - - Участие в голосовании других DLE - - Пропорциональный подсчет голосов - -#### 2.2.2 Кворум подписей -- **Описание**: Система сбора подписей для внешнего голосования -- **Функции**: - - Создание запросов на внешнее голосование - - Сбор подписей от токен холдеров - - Проверка достижения кворума - - Активация голоса в целевой DLE - -### 2.3 Межприложное взаимодействие - -#### 2.3.1 Встраивание интерфейсов -- **Описание**: Управление DLE B через приложение DLE A -- **Функции**: - - Встраивание интерфейса управления - - Безопасное подписание транзакций - - Проверка прав доступа - - Аудит действий - -### 2.4 Мульти-чейн архитектура - -#### 2.4.1 CREATE2 детерминистический деплой -- **Описание**: Создание DLE с одинаковым адресом во всех EVM-сетях -- **Функции**: - - Использование CREATE2 opcode для предсказуемых адресов - - Factory контракт с фиксированным адресом во всех сетях - - Генерация детерминистического salt на основе пользовательских данных - - Предварительное вычисление адреса DLE до деплоя - -#### 2.4.2 Синхронизация токенов управления -- **Описание**: Синхронное управление токенами во всех развернутых сетях -- **Функции**: - - Одинаковое распределение токенов для партнеров во всех сетях - - Cross-chain синхронизация операций с токенами - - Атомарное выполнение операций во всех целевых сетях - - Защита от рассинхронизации и double-spending - -#### 2.4.3 Cross-chain система голосования -- **Описание**: Голосование с выбором сети и синхронизацией результатов -- **Функции**: - - Выбор сети для инициации голосования - - Расчет кворума по токенам в выбранной сети - - Синхронизация результатов во все развернутые сети - - Выполнение решений в любой из целевых сетей - -#### 2.4.3 Single-Chain Governance система -- **Описание**: Упрощенная система голосования в одной выбранной сети -- **Функции**: - - Инициатор выбирает governance сеть для голосования - - Все токен-холдеры участвуют только в выбранной сети - - Инициатор устанавливает таймлок для предложения - - Проверка балансов токенов при каждой подписи - - Исполнение решения во всех целевых сетях - -#### 2.4.4 Мульти-сетевой деплой -- **Описание**: Одновременный деплой в несколько блокчейн-сетей -- **Функции**: - - Выбор множественных сетей из интерфейса - - Автоматический расчет общей стоимости деплоя - - Параллельное развертывание во всех выбранных сетях - - Возможность добавления новых сетей после первоначального деплоя - -#### 2.4.5 Упрощенные cross-chain операции -- **Описание**: Исполнение решений во всех целевых сетях после single-chain голосования -- **Функции**: - - Атомарное исполнение во всех выбранных сетях - - Fallback исполнение в доступных сетях при сбоях - - Мониторинг статуса исполнения операций - - Откат операций при критических сбоях - -## 3. Технические требования - -### 3.1 Архитектура смарт-контракта - -#### 3.1.1 Основная структура -```solidity -contract DLE is ERC20, Governor, TimelockController { - // Ваша уникальная логика DLE - // + готовые компоненты с аудитом - // + проверенные паттерны -} -``` - -#### 3.1.2 Компоненты для интеграции -- **ERC-20** - токен управления DLE -- **Governor** - система голосования с мультиподписью -- **TimelockController** - настраиваемые таймлоки -- **Account Abstraction** - универсальность адреса - -#### 3.1.3 Мульти-чейн архитектура -```solidity -// Factory для детерминистического деплоя -contract DLEFactory { - function createDLE( - bytes32 salt, - DLEConfig memory config, - uint256[] memory targetChains - ) external returns (address predictedAddress); - - function predictAddress(bytes32 salt, DLEConfig memory config) - external view returns (address); -} - -// Single-Chain Governance -contract DLE_Governance { - struct Proposal { - bytes operation; - uint256[] targetChains; - uint256 timelock; - uint256 governanceChain; - address initiator; - bytes[] signatures; - bool executed; - } - - function createProposal(bytes calldata operation, uint256[] calldata targetChains, uint256 timelockDelay) external; - function signProposal(uint256 proposalId) external onlyTokenHolder; - function executeProposal(uint256 proposalId) external; -} - -// Основной контракт DLE с упрощенной архитектурой -contract DLE is ERC20, Governor, TimelockController { - // Single-chain governance - mapping(uint256 => bool) public supportedChains; - mapping(uint256 => Proposal) public proposals; - - // Проверка токен-холдеров - modifier onlyTokenHolder() { - require(balanceOf(msg.sender) > 0, "Must hold tokens"); - _; - } - - // Исполнение в целевых сетях - function executeInTargetChains(bytes calldata operation, uint256[] calldata chains) external; -} -``` - -#### 3.1.4 Компоненты для интеграции -- **ERC-20** - токен управления DLE -- **Governor** - система голосования с мультиподписью -- **TimelockController** - отдельный модуль настраиваемых таймлоков -- **Account Abstraction** - универсальность адреса -- **CREATE2 Factory** - детерминистический деплой -- **Single-Chain Governance** - упрощенное управление через одну сеть - -### 3.2 Готовые компоненты с аудитом - -#### 3.2.1 OpenZeppelin (аудит: ConsenSys Diligence) -- ERC-20 - токены управления -- Governance - система голосования -- Access Control - роли и разрешения -- Multisig - мультиподпись -- Timelock - задержки выполнения - -#### 3.2.2 ERC-4337 (аудит: Trail of Bits) -- Account Abstraction - универсальность -- Smart Contract Wallets - кошельки -- Bundlers - оптимизация газа - -#### 3.2.3 Проверенные паттерны -- Diamond Pattern (EIP-2535) - модульность -- Proxy Pattern - обновляемость -- Factory Pattern - создание контрактов - -### 3.3 Безопасность - -#### 3.3.1 Требования к безопасности -- Полный аудит смарт-контракта -- Тестирование всех функций -- Проверка уязвимостей -- Соответствие стандартам безопасности - -#### 3.3.2 Меры безопасности -- Использование проаудированных компонентов -- Проверенные паттерны разработки -- Изоляция рисков -- Поэтапная разработка с тестированием - -### 3.4 Производительность - -#### 3.4.1 Оптимизация газа -- Минимизация стоимости транзакций -- Эффективные алгоритмы -- Использование bundlers (ERC-4337) -- Оптимизация хранения данных - -#### 3.4.2 Масштабируемость -- Поддержка большого количества участников -- Эффективная обработка голосований -- Оптимизация меж-DLE взаимодействий -- Модульная архитектура - -## 4. Интерфейсы и интеграции - -### 4.1 Веб3 приложение - -#### 4.1.1 Функции приложения -- Создание DLE через форму -- Управление DLE -- Участие в голосованиях -- Просмотр истории транзакций - -#### 4.1.2 Межприложное взаимодействие -- Встраивание интерфейсов других DLE -- Безопасное подписание транзакций -- Проверка прав доступа -- Аудит действий - -#### 4.1.3 Мульти-чейн интерфейс с single-chain governance -- Выбор целевых сетей для деплоя DLE -- Отображение предсказанного адреса DLE -- Расчет стоимости деплоя по всем сетям -- Мониторинг статуса деплоя во всех сетях -- Выбор governance сети для создания предложений -- Установка таймлока инициатором предложения -- Подписание предложений токен-холдерами в governance сети -- Мониторинг исполнения в целевых сетях -- История операций и голосований - -### 4.2 API и интеграции - -#### 4.2.1 Внешние интеграции -- Оракулы для внешних данных -- Интеграция с DeFi протоколами -- Поддержка различных блокчейнов -- API для внешних приложений - -## 5. Этапы разработки - -### 5.1 Этап 1: Базовая функциональность -- Создание основного контракта DLE -- Интеграция ERC-20 токенов -- Базовая система голосования с настраиваемым кворумом -- Простые казначейские функции -- CREATE2 Factory для детерминистического деплоя -- Настройки времени голосования (период, задержка) - -### 5.2 Этап 2: Расширенная функциональность -- Система мультиподписи -- Отдельный модуль TimelockController с настраиваемыми параметрами -- Коммуникационные функции -- Модульная система -- Мульти-сетевой деплой в тестовых сетях -- Базовая cross-chain синхронизация - -### 5.3 Этап 3: Мульти-чейн архитектура -- Полная cross-chain синхронизация токенов -- Система голосования с выбором сети -- Cross-chain операции с откатами -- Мониторинг состояния во всех сетях -- Emergency pause и fallback механизмы -- Иерархическая система голосования между DLE - -### 5.4 Этап 4: Межприложное взаимодействие -- Встраивание интерфейсов других DLE -- Безопасное cross-chain подписание -- Оптимизация газа для мульти-сетевых операций -- Интеграция с bridge протоколами -- Расширенное тестирование мульти-чейн функций - -### 5.5 Этап 5: Аудит и запуск -- Профессиональный аудит всех компонентов -- Аудит мульти-чейн безопасности -- Тестирование в различных сетевых условиях -- Исправление уязвимостей -- Финальное тестирование cross-chain операций -- Развертывание в продакшн во всех целевых сетях - -## 6. Требования к тестированию - -### 6.1 Unit тесты -- Тестирование всех функций контракта -- Проверка граничных случаев -- Тестирование безопасности -- Проверка производительности - -### 6.2 Integration тесты -- Тестирование взаимодействия модулей -- Проверка меж-DLE взаимодействий -- Тестирование веб3 приложения -- Проверка API интеграций - -### 6.3 E2E тесты -- Полный цикл создания DLE -- Тестирование голосований -- Проверка коммуникационных функций -- Тестирование межприложного взаимодействия - -## 7. Документация - -### 7.1 Техническая документация -- Описание архитектуры -- API документация -- Руководство по развертыванию -- Руководство по безопасности - -### 7.2 Пользовательская документация -- Руководство пользователя -- FAQ -- Видеоуроки -- Поддержка - -## 8. Критерии приемки - -### 8.1 Функциональные критерии -- Все функции работают согласно требованиям -- Система голосования функционирует корректно -- Меж-DLE взаимодействие работает -- Коммуникационные функции активны -- CREATE2 деплой создает одинаковые адреса во всех сетях -- Cross-chain синхронизация токенов работает корректно -- Голосование с выбором сети функционирует -- Мульти-сетевой деплой завершается успешно во всех целевых сетях - -### 8.2 Критерии безопасности -- Прохождение профессионального аудита -- Отсутствие критических уязвимостей -- Соответствие стандартам безопасности -- Проверка всех сценариев атак -- Безопасность cross-chain операций -- Защита от MEV-атак при мульти-чейн операциях -- Корректная работа откатов при сбоях синхронизации -- Валидация кворума во всех поддерживаемых сетях - -### 8.3 Критерии производительности -- Оптимизация газа -- Быстрая обработка транзакций -- Масштабируемость системы -- Стабильная работа под нагрузкой -- Эффективная синхронизация между сетями -- Минимальные задержки cross-chain операций -- Оптимальное использование ресурсов во всех сетях -- Быстрое восстановление после сбоев синхронизации - -## 9. Лицензии и правовые аспекты - -### 9.1 Используемые лицензии -- OpenZeppelin - MIT лицензия -- ERC-4337 - CC0 лицензия -- Собственный код - Proprietary - -### 9.2 Патентные аспекты -- Низкий патентный риск для концепции DLE -- Использование открытых стандартов -- Защита уникальных функций -- Консультации с юристами при необходимости \ No newline at end of file diff --git a/docs/ai-queue-system.md b/docs/ai-queue-system.md index 6a8494a..a7b7904 100644 --- a/docs/ai-queue-system.md +++ b/docs/ai-queue-system.md @@ -1,3 +1,15 @@ + + # Система очереди AI запросов ## Обзор diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 1db5ca5..da398ff 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -6,9 +6,10 @@ http { include /etc/nginx/mime.types; default_type application/octet-stream; + # Основной сервер для легитимных доменов server { listen 80; - server_name localhost; + server_name hb3-accelerator.com www.hb3-accelerator.com localhost; # API прокси (точное совпадение для /api/) location /api/ { @@ -32,4 +33,16 @@ http { proxy_set_header X-Forwarded-Port $server_port; } } + + # Сервер по умолчанию для блокировки подозрительных доменов + server { + listen 80 default_server; + server_name _; + + # Возвращаем 444 (Connection Closed Without Response) + return 444; + + # Логируем попытки доступа к подозрительным доменам + access_log /var/log/nginx/suspicious_domains.log; + } } \ No newline at end of file diff --git a/frontend/src/components/AIQueueMonitor.vue b/frontend/src/components/AIQueueMonitor.vue index 58c7c25..31f7cfc 100644 --- a/frontend/src/components/AIQueueMonitor.vue +++ b/frontend/src/components/AIQueueMonitor.vue @@ -1,3 +1,15 @@ + +